Metadata-Version: 1.1
Name: discordwebhook.py
Version: 0.0.5
Summary: Easily using discord webhooks in python - asynchronous and synchronous - documented at https://discordwebhook.readthedocs.io/en/latest/
Home-page: https://github.com/Coolo22/discordwebhook.py
Author: Coolo2
Author-email: itsxcoolo2@gmail.com
License: MIT
Download-URL: https://github.com/Coolo22/discordwebhook.py/raw/master/Archive/discordwebhook.py-0.0.5.tar.gz
Description: 
        | A simple python package for posting to discord webhooks in python
        | Has asynchronous and synchronous options
        
        Example::
        
          from discordwebhook import create # Import discordwebhook create
        
          webhook = create.Webhook() # Create Webhook object
          embed = create.Embed() # Create embed object
        
          webhook.username("Example Webhook") # Override webhook username as 'Example Webhook'
          webhook.message("Hello! This is a message from an example webhook with the `discordwebhook.py` library!") # Message to go with the embed
        
          embed.title("Github Logo") # Embed title as 'Github Logo'
          embed.image(url="https://image.flaticon.com/icons/png/512/25/25231.png") # Embed image as github logo
          embed.color(0x808080) # Gray embed color
        
          webhook.send("WEBHOOK_URL", embed=embed) #Send webhook to given link with the embed
        
        **0.0.5 Changelog:**
        
        * Changed how embed data is fetched, Embed().embed is no longer needed, only Embed() needs to be used
        
        
Keywords: discord,webhook,python,easy,post,asynchronous,synchronous
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
