The official discord bot of Artism(Surreal) (https://artism.place). This repository is open source. Feel free to contribute or fork it.
Need support? Check out our support server at https://discord.gg/uGS9wSjMys!
pip install -U git+https://github.com/Rapptz/discord.py
pip install pymongo
pip install flask
pip install requests
Note: If you intend to use these dependencies, or wish to add your own, I recommend that you a create a Python Virtual Environment. I'll leave a quick tutorial for linux users here.
- Separate functionality into cogs.
- Save user data in MongoDB database.
- Bot should be able to fetch how active users are in each server.
A Python Virtual Environment is the best way to keep track of your pip libraries. I'll go over how to create one for specificly this project, but the steps will be the same for most other projects.
Before you've cloned this repo, create a new directory somewhere. This is where you'll make your virtual environment.
pip install python3-venv
python3 -m venv ./
source bin/activate
You should see the name of the project directory on the left in parentheses. That means you've successfully created the virtual environment. You can freely use pip install
and libraries you install won't be added to your PATH. If you want to leave the virtual environment you can use deactivate
in any directory.
Feel free to clone the repository inside this directory or somewhere else.
git clone https://github.com/wooshdude/neodrew