Spirit is a discord bot designed to assist Destiny 2 players with everything from clan management to keeping track of in game events.
To add Spirit to your server, click here!
If you require assistance, be sure to join the Spirit Support Discord server. I'd love to chat!
Below are the steps to run the bot. Ideally you would be doing this for development/testing purposes, as I would prefer it if you didn't run an instance of the bot; I'd much prefer you just add mine to your server :)
To run the bot, you'll need the following:
- Python 3.5+
- Pip
- MySQL
- Pyest (installation instructions can be found here)
Install the required Python modules with Pip, as well as the latest version of Discord.py
pip3 install -r requirements.txt
python3 -m pip install -U git+https://github.com/Rapptz/discord.py@rewrite#egg=discord.py[voice]
Then create a MySQL database with support for UTF8mb4 encoding
mysql -u root -p
> create database <database_name> character set UTF8mb4 collate utf8mb4_bin
Add the schema located at db/schema.sql
mysql -u root -p <database_name> < ./db/schema.sql
Finally, create a credentials.json
file at the root level of this project.
It will contain your bot's token as well as your database user, password, host, and name.
{
"token": "token",
"dbname": "name",
"dbhost": "host",
"dbuser": "username",
"dbpass": "password",
"d2-api-key": "your-key"
}
That's it! The bot can now be run with
python3 spirit.py
- discord.py - An API wrapper for Discord written in Python