Interface server connecting Django's channels and Discord
Project description
Channels-Discord
Django Channels Discord is a bridge between Discord (specifically, the discord.py Python library) and Django's channels). It contains both a new interface server for connecting to Discord and Channels consumers -- everything you need to turn your Django app into an Discord chatbot, chat monitoring/moderating service, or whatever else you might use a real-time Discord client to do.
This project is more of a stub right now, and will be more further fleshed out as new features are wired up from discord.py.
Requirements
Most of the requirements can be found in setup.py, but the most important note is that this requires library requires Django Channels 3+ -- Channels 1.x and 2.x are not supported.
Installation
Install the package from github:
pip install git+https://github.com/AdvocatesInc/django-channels-discord.git@0.1
Basic Usage
-
Add the library to
INSTALLED_APPS
:INSTALLED_APPS = ( ... 'channels_discord', )
-
Create a Consumer
Create a new consumer by inheriting from
DiscordConsumer
:from channels_discord import DiscordConsumer class MyDiscordConsumer(DiscordConsumer): def ready(self): """ Optional hook for actions on connection to Discord """ print('You are now connected to discord!') def my_custom_message(self): """ Use built-in functions to send basic discord actions """ self.send_action('dm', user_id='SOME_DISCORD_USER_ID', text='your message') self.send_action( 'send_to_channel', channel_id='SOME_DISCORD_CHANNEL_ID', text='your message' )
-
Add your consumer(s) to your router
You can use the
discord
type in channelsProtocolTypeRouter
to connect your new consumer to the interface server, and ensure yourdiscord
messages are delivered to the right place:from channels.routing import ProtocolTypeRouter from myapp.consumers import MyDiscordConsumer application = ProtocolTypeRouter({ 'discord': MyDiscordConsumer, })
-
Start the interface server
The interface server can be started by simply running this in the command line:
channels-discord
The server requires that the
token
andapplication
properties be set:-
token
: Either a bot auth token or a user access token from user OAuth access. For information on how to acquire these tokens, please see Discord's developer documentation. -
application
: An import string pointing to the location of your app's ASGI application. Hence, if your app was namedmyapp
, contained an ASGI filed calledasgi.py
, and your ASGI application is namedmy_application
, you could start the server by running:
channels-discord -t 'MY_LONG_BOT_TOKEN' -a 'myapp.asgi:my_application'
You can also set these values using the env variables
CHANNELS_DISCORD_APPLICATION
andDISCORD_BOT_TOKEN
. -
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 Distributions
Built Distribution
File details
Details for the file channels_discord-0.3.0-py3-none-any.whl
.
File metadata
- Download URL: channels_discord-0.3.0-py3-none-any.whl
- Upload date:
- Size: 7.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | becc66b853bf7f5c6bd7a433ab3f8b2dcfd169758492fcd24ed6b2c52016ae06 |
|
MD5 | cbd7d7b34266f36e62505c07ab9f30f3 |
|
BLAKE2b-256 | 71285d7e1c85e573d0f65e19649002a764953f9da5517ddbc570b92e67ad6e57 |