Skip to main content

Send discord webhooks in python with 2 lines of code!

Project description

Inspired by quick.hook, this makes sending webhooks in discord .py much, much easier! Most of the functions below are wrapped in a:

@bot.command
async def command(ctx):

IMPORTANT NOTE

for editors without pip, such as repl.it, to install the package, instead of pip install ezhook you would put the following at the top of your script:

import os
os.system('pip install ezhook')
import ezhook

Support Server

Examples:

Without Embed:

import ezhook
await ezhook.send_hook(
     bot = bot,
     channel = ctx.channel,
     message = "This is an example",
     username = "Space Boii",
     avatarURL = "https://i.imgur.com/EpTz5rOb.jpg",
)

Without Embed





With Embed:

import ezhook
embed=discord.Embed(title="example embed", color=3093151)
embed.add_field(name='hi',value="hello")
await ezhook.send_hook(
	bot = bot,
	channel = ctx.channel,
	message="This is an example",
	embed = embed,
	username = "Space Boii",
	avatarURL = "https://i.imgur.com/EpTz5rOb.jpg",
)

With Embed



Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ezhook-0.0.1.tar.gz (1.8 kB view hashes)

Uploaded Source

Built Distribution

ezhook-0.0.1-py3-none-any.whl (1.7 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page