You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Andrei c836b6e865 Cleanup / performance stuff 8 years ago
disco Cleanup / performance stuff 8 years ago
docs Add support for built-in HTTP/Flask server (#34) 8 years ago
examples Capture Raw API Responses (#46) 8 years ago
tests [types] rename Model.update to Model.inplace_update 8 years ago
.biblio.yaml Rework Documentation (#20) 8 years ago
.gitignore [config] allow logging level to be configurable (#47) 8 years ago
.travis.yml Actually fix travis builds 8 years ago
CHANGELOG.md [bugfix] Paginator should not start at 0 by default 8 years ago
MANIFEST.in Add manifest file 9 years ago
README.md [readme] remove early-alpha warning clause, we're p stable fam 8 years ago
requirements.txt [deps] bump holster to v1.0.16 8 years ago
setup.cfg Fix travis and pathing 8 years ago
setup.py Misc fixes (#53) 8 years ago

README.md

disco

Disco is a simple and extendable library for the Discord API. Join the Official channel and chat here.

  • Expressive, functional interface that gets out of the way
  • Built for high-performance and efficiency
  • Configurable and modular, take the bits you need
  • Full support for Python 2.x/3.x
  • Evented networking and IO using Gevent

Installation

Disco was built to run both as a generic-use library, and a standalone bot toolkit. Installing disco is as easy as running pip install disco-py, however some extra packages are recommended for power-users, namely:

Name Reason
requests[security] adds packages for a proper SSL implementation
ujson faster json parser, improves performance
erlpack ETF parser, only Python 2.x, run with the --encoder=etf flag
gipc Gevent IPC, required for autosharding

Examples

Simple bot using the builtin bot authoring tools:

from disco.bot import Bot, Plugin


class SimplePlugin(Plugin):
    # Plugins provide an easy interface for listening to Discord events
    @Plugin.listen('ChannelCreate')
    def on_channel_create(self, event):
        event.channel.send_message('Woah, a new channel huh!')

    # They also provide an easy-to-use command component
    @Plugin.command('ping')
    def on_ping_command(self, event):
        event.msg.reply('Pong!')

    # Which includes command argument parsing
    @Plugin.command('echo', '<content:str...>')
    def on_echo_command(self, event, content):
        event.msg.reply(content)

Using the default bot configuration, we can now run this script like so:

python -m disco.cli --token="MY_DISCORD_TOKEN" --run-bot --plugin simpleplugin

And commands can be triggered by mentioning the bot (configured by the BotConfig.command_require_mention flag):