Metadata-Version: 2.1
Name: dishook
Version: 1.0.4
Summary: Control your discord webhooks on a nice way.
Home-page: https://github.com/ZSendokame/Dishook
Author: Sendokame
License: UNKNOWN
Platform: UNKNOWN
Description-Content-Type: text/markdown

# Dishook
**Dishook** it's a library who lets you control Discord Webhooks via HTTP.<br>
Supports plain text and embeds, Parameters and JSON gives you more control than other libraries.<br>
Dishook it's one of the lasts Discord webhook control library that is mantained today.

# How to install
``` Bash
# PIP + GIT:
pip install git+https://github.com/ZSendokame/Dishook

# PIP:
pip install dishook
```

# How to use
After download, here is a brief tutorial.<br>
```py
import dishook

webhook = dishook.Webhook(Webhook URL) # Create a Webhook() object, this class do all the work.

webhook.embed(
    description='This is a description',
    color=10000,
    image={
        'url': 'Image URL'
    }
)

webhook.add_field(
    name='Webhook field',
    value='Webhook field description'
)

webhook.send() # Here, you can add the parameters you wan't!. First check that they are valid.

# You also have some values!
webhook.json     # In case you have any error, you can check the generated JSON that the library sent.
webhook.response # More descriptive, if there's any error. Do a try-except and check discord's response.
webhook.status   # Here is status code, if you search for it. Probably you will get information
```

