Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 810 Bytes

README.rst

File metadata and controls

30 lines (21 loc) · 810 Bytes

Nyx

Code Climate

An experimental extension of Rapptz's Discord bot platform that supports command name collisions - largely an unnecessary exercise.

Installation:

First get Python 3.6+ with Pip and install discord.py:

python3 -m pip install -U discord.py[voice]

Then you can install Nyx with:

python3 -m pip install -U git+https://github.com/Cappycot/nyx-bot

Usage:

(WIP) Nyx runs the same as a Discord commands extension bot.

from nyxbot import NyxBot
prefix = "$"
token = "A token from a config file or environment variable."
bot = NyxBot(command_prefix=prefix)
bot.run(token)