inford is a python library for sending discord webhooks.
Use the package manager pip to install foobar.
pip install inford
from inford import DiscordWebhook
web = DiscordWebhook(
webhook_url="https://discord.com/api/webhooks/123***/abc***",
username="inford",
avatar_url="https://avatars.githubusercontent.com/u/55992548?v=4",
content="Lorem ipsum dolor sit",
title="Hey!",
color="#0099ff",
description="Lorem ipsum dolor sit amet, consectetur adipiscing elit.",
author_name="INFORD",
author_url="https://github.com/Prathamesh-B/inford",
footer_text="thank you",
footer_icon="https://user-images.githubusercontent.com/5679180/79618120-0daffb80-80be-11ea-819e-d2b0fa904d07.gif",
image="https://avatars.githubusercontent.com/u/55992548?v=4",
thumbnail="https://avatars.githubusercontent.com/u/55992548?v=4",
)
web.send() #or use send=True as a Argument
from inford import Presets
web = Presets(
webhook_url="https://discord.com/api/webhooks/123***/AbC***",
)
web.info("Python", "Update available")
web.error("Database", "No data found")
web.warn("System", "Ram overload")
web.success("Program", "Executed successfully")
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.