Webhook API
A webhook API for Discord.
Requirements
Usage
from webhook_api import *
# Instantiate a new webhook object using your webhook url
webhook = Webhook('https://github.com/DotDivee/webhook-api')
# Set the content of the webhook
webhook.content = 'Content'
# Set the username of the webhook
webhook.username = 'Username'
# Send the webhook
webhook.send()