Discord Bot Rewrite
Bishokus is a French Discord bot designed to enhance and entertain your server. Originally developed by Lenoch, the bot is being rewritten to improve functionality and maintainability.
While only three commands are currently available in this version, more features will be added soon.
The bot is built using Nextcord and uses MySQL for data.
Works with every os.
To add the old version of Bishokus, which includes all existing commands, click the link below:
-
Install Python:
- Install Python using your package manager. For example, on Debian-based systems:
sudo apt update sudo apt install python3 python3-venv python3-pip
- Install Python using your package manager. For example, on Debian-based systems:
-
Setup Virtual Environment:
- Create a virtual environment:
python3 -m venv .venv
- Activate the virtual environment:
source .venv/bin/activate
- Create a virtual environment:
-
Install Requirements:
- Install the necessary Python packages:
pip install -r requirements.txt
- Install the necessary Python packages:
-
Install MySQL:
- Install MySQL using your package manager. For example, on Debian-based systems:
sudo apt update sudo apt install mysql-server
- Install MySQL using your package manager. For example, on Debian-based systems:
-
Secure MySQL Installation:
- Run the security script to set up MySQL:
sudo mysql_secure_installation
- Run the security script to set up MySQL:
-
Create Database:
- Log into MySQL and create the database:
sudo mysql -u root -p CREATE DATABASE your_database_name; CREATE USER 'your_username'@'localhost' IDENTIFIED BY 'your_password'; GRANT ALL PRIVILEGES ON your_database_name.* TO 'your_username'@'localhost'; FLUSH PRIVILEGES; EXIT;
- Log into MySQL and create the database:
- Edit Configuration:
- Open
config/config.json
. - Update the configuration based on the default template provided.
- Open
-
Install Python:
- Download and install Python from python.org.
-
Setup Virtual Environment:
- Create a virtual environment:
python -m venv .venv
- Activate the virtual environment:
.venv\Scripts\activate.bat
- Create a virtual environment:
-
Install Requirements:
- Install the necessary Python packages:
pip install -r requirements.txt
- Install the necessary Python packages:
-
Install MySQL:
- Download and install MySQL from MySQL Installer - Community.
-
Create Database:
- Use
MySQL Installer - Community
to create a database and set up a password.
- Use
- Edit Configuration:
- Open
config/config.json
. - Update the configuration based on the default template provided.
- Open