A Python wrapper for the Discord API
Project description
Self-bot only fork.
A modern, easy to use, feature-rich, and async ready API wrapper for Discord written in Python.
Fork Changes
Fixed self-bot issues with message.content & message.embed.
Added lazy-loading for users.
Obfuscated user-agent & IDENTIFY packet.
Removed bot user support (no more bot=False).
Removed bot-only methods and un-deprecated user ones.
Credits:
u/pogofetch for lazy user loading patches.
karibiusk for some food for thought.
Maxx0911 for more food for thought.
Roadmap:
Add undocumented Discord API features.
Fix guild.members & large guild handling (this will also fix discord.ext.commands).
Key Features
Modern Pythonic API using async and await.
Proper rate limit handling.
100% coverage of the supported Discord API.
Optimised in both speed and memory.
Installing
Python 3.5.3 or higher is required
To install the library without full voice support, you can just run the following command:
# Linux/macOS
python3 -m pip install -U discord.py-self
# Windows
py -3 -m pip install -U discord.py-self
Otherwise to get voice support you should run the following command:
# Linux/macOS
python3 -m pip install -U "discord.py-self[voice]"
# Windows
py -3 -m pip install -U discord.py-self[voice]
To install the development version, do the following:
$ git clone https://github.com/dolfies/discord.py-self
$ cd discord.py-self
$ python3 -m pip install -U .[voice]
Optional Packages
PyNaCl (for voice support)
Please note that on Linux installing voice you must install the following packages via your favourite package manager (e.g. apt, dnf, etc) before running the above commands:
libffi-dev (or libffi-devel on some systems)
python-dev (e.g. python3.6-dev for Python 3.6)
Quick Example
import discord
class MyClient(discord.Client):
async def on_ready(self):
print('Logged on as', self.user)
async def on_message(self, message):
# don't respond to ourselves
if message.author == self.user:
return
if message.content == 'ping':
await message.channel.send('pong')
client = MyClient()
client.run('token')
Bot Example
import discord
from discord.ext import commands
bot = commands.Bot(command_prefix='>')
@bot.command()
async def ping(ctx):
await ctx.send('pong')
bot.run('token')
You can find more examples in the examples directory.
Links
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
Built Distribution
File details
Details for the file discord.py-self-1.7.8.tar.gz
.
File metadata
- Download URL: discord.py-self-1.7.8.tar.gz
- Upload date:
- Size: 730.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8aedc62f3a95f1ae659fbdfdf5e095a63f432c9323736aab5495aa4f868989bd |
|
MD5 | 8130542aec7863eef6857796f2c05278 |
|
BLAKE2b-256 | a37a386c88d1a9f5777e70d64e1b5c5d44d66d7c1529a016de98b8484dd72e05 |
File details
Details for the file discord.py_self-1.7.8-py3-none-any.whl
.
File metadata
- Download URL: discord.py_self-1.7.8-py3-none-any.whl
- Upload date:
- Size: 785.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 428b6e453cbb83b94e40356b57edce9075a2b5055bb0522abd032ab13c495976 |
|
MD5 | cf1e089628db36910b9060972d3e87d9 |
|
BLAKE2b-256 | a81cf31805fff7895537bae71c842dc32e6d20a4bf44b37502331bfa3bf4faff |