

GitHub - Rapptz/discord.py: An API wrapper for Discord written in Python.
source link: https://github.com/Rapptz/discord.py
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.

README.rst
discord.py
A modern, easy to use, feature-rich, and async ready API wrapper for Discord written in Python.
Key Features
- Modern Pythonic API using
async
andawait
. - 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/OS X python3 -m pip install -U discord.py # Windows py -3 -m pip install -U discord.py
Otherwise to get voice support you should run the following command:
# Linux/OS X python3 -m pip install -U discord.py[voice] # Windows py -3 -m pip install -U discord.py[voice]
To install the development version, do the following:
$ git clone https://github.com/Rapptz/discord.py
$ cd discord.py
$ 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
, yum
, 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
Recommend
-
199
...
-
11
A 'modern 3D API' wrapper for WebGL Oct 24, 2016 This post is a bit of followup to Thoughts about a WebGL Next. (please excuse the partl...
-
11
TL;DR: This post shows why you probably should consider using “The Last API Wrapper” next time you need to get something from HTTP API. ...
-
6
OpenWeatherMap (After you’ve ruled out the difference between open_weather_map, open_weather and open-weather gems—the most recent is the latter): OpenWeather::Current.city...
-
9
Discord Official API Documentation This repo contains the official Discord API documentation, which can be viewed online HERE. Before submitting pull-requests, please remember t...
-
36
Install npm i discord-buttons Setup const discord = require('discord.js'); //Define the discord.js module const client = new discord.Client(); //Creating discord.js client (constructor) const dis...
-
10
-
9
C# Wrapper for Power BI REST API – Version 2 Some time ago, when Microsoft released the first version of Power BI Rest API I already wrote a wrap...
-
10
Youtube.js – full-featured wrapper around YouTube's private API This is really cool, but maybe the README's disclaimer should also warn that using YouTube's private APIs is against...
-
5
Learning Objectives How to add GraphQL wrapper How to use the NSwag tool to generate code Prerequisites Require “HotChocolate.AspNetCore” from the NuGet package. Require .Net 5 Framewor...
About Joyk
Aggregate valuable and interesting links.
Joyk means Joy of geeK