discordwebhlok is a python library for discord webhook with discord rest api on Python 3.6 and above.
Project description
discordwebhook
discordwebhook is a python library for discord webhook with discord rest api on Python 3.6 and above.
Installation
$ pip install discordwebhook
Usage
basic
from discordwebhook import Discord
discord = Discord(url="<your webhook url>")
discord.post(content="Hello, world.")
basic, username and avatar_url
from discordwebhook import Discord
discord = Discord(url="<your webhook url>")
discord.post(
content="Hello, world.",
username="10mohi6",
avatar_url="https://avatars2.githubusercontent.com/u/38859131?s=460&v=4"
)
basic embed
from discordwebhook import Discord
discord = Discord(url="<your webhook url>")
discord.post(
embeds=[{"title": "Embed Title", "description": "Embed description"}],
)
advanced embed
from discordwebhook import Discord
discord = Discord(url="<your webhook url>")
discord.post(
embeds=[
{
"author": {
"name": "Embed Name",
"url": "https://github.com/10mohi6/discord-webhook-python",
"icon_url": "https://picsum.photos/24/24",
},
"title": "Embed Title",
"description": "Embed description",
"fields": [
{"name": "Field Name 1", "value": "Value 1", "inline": True},
{"name": "Field Name 2", "value": "Value 2", "inline": True},
{"name": "Field Name 3", "value": "Field Value 3"},
],
"thumbnail": {"url": "https://picsum.photos/80/60"},
"image": {"url": "https://picsum.photos/400/300"},
"footer": {
"text": "Embed Footer",
"icon_url": "https://picsum.photos/20/20",
},
}
],
)
send file
from discordwebhook import Discord
discord = Discord(url="<your webhook url>")
discord.post(
file={
"file1": open("tests/file1.jpg", "rb"),
"file2": open("tests/file2.jpg", "rb"),
},
)
Getting started
For help getting started with discord webhook, view our online documentation.
Contributing
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request
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
discordwebhook-1.0.3.tar.gz
(3.7 kB
view details)
Built Distribution
File details
Details for the file discordwebhook-1.0.3.tar.gz
.
File metadata
- Download URL: discordwebhook-1.0.3.tar.gz
- Upload date:
- Size: 3.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.1 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b2a89cc322e036c36f694f23a02023e79d6916f5b6be127de2733b7b1f93445c |
|
MD5 | 3b0d70210a267c89bee83784d6468e3b |
|
BLAKE2b-256 | 15e19a4b4ed4aded1c4dc6e708d8d10dd2a72097f8711f027e4cc76364783d83 |
File details
Details for the file discordwebhook-1.0.3-py3-none-any.whl
.
File metadata
- Download URL: discordwebhook-1.0.3-py3-none-any.whl
- Upload date:
- Size: 4.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.1 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0dddc400d631c57795cae03939aa37163299d2d7e3361036fa508836326c7ea6 |
|
MD5 | 342cf63938dfa0947b753dfa53bc2298 |
|
BLAKE2b-256 | 0055fdf733fc29268d278e6d28daed6e9772d3ba9d01a53f365a568222f6958c |