Metadata-Version: 2.1
Name: XPHN-ezDiscord
Version: 1.5
Summary: Easily create and use Discord Webhooks and simple bots.
Home-page: UNKNOWN
Author: Xephonine // Hylaxe
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: Android
Classifier: Operating System :: Microsoft
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: OS Independent
Requires-Python: >=3.2
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: discord
Requires-Dist: requests

# XPHN_ezDiscord
Easily  use and create Discord webhooks and simple Discord bots.

Webhook text Example:
```
import ezDiscord
ezDiscord.ezWebhook.Send("your_webhook_url","send_from_username","message_content") 
#Of course replace them with your own values (url,username,message)
```
Webhook file/image example:
```
import ezDiscord
ezDiscord.ezWebhook.File("webhook_url","from_username","file_name_along_with_file_extension")
#Again, replace them with your own values (url,username,filename)
```
Bot Example:
```
import ezDiscord
ezDiscord.ezBot.Respond("your_bot_token","message_to_which_the_bot_will_reply","message_which_bot_will_send_back_as_reply")  
#Telling Again,replace them with your own values (token,trigger,reply)
```

