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
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",
)
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",
)
Project details
Release history Release notifications | RSS feed
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.2.tar.gz
(2.5 kB
view details)
Built Distribution
File details
Details for the file ezhook-0.0.2.tar.gz
.
File metadata
- Download URL: ezhook-0.0.2.tar.gz
- Upload date:
- Size: 2.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/51.0.0 requests-toolbelt/0.8.0 tqdm/4.48.2 CPython/3.8.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e031d202f587da9c84019bda059abc70bacc486e2d960954d5272fc474598dda |
|
MD5 | e0ebfffb78eb59b9db5a010e356ffeb2 |
|
BLAKE2b-256 | aae7340bdd37f52aad1f3fbc7c7683c88fc891e209182a6f95117ea86ef87603 |
File details
Details for the file ezhook-0.0.2-py3-none-any.whl
.
File metadata
- Download URL: ezhook-0.0.2-py3-none-any.whl
- Upload date:
- Size: 3.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/51.0.0 requests-toolbelt/0.8.0 tqdm/4.48.2 CPython/3.8.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9e0608d3b72f03e8146ae333d030cb7399b470206910a604fbe6dfaaf72e11a9 |
|
MD5 | f8e5ad1ba210698372ea9f5925ff87bb |
|
BLAKE2b-256 | 43aaa89797ecbf4c9ae798c449d53cc895ef9c4c7ecabe6f8526b841b8739778 |