Awesome
Translator101
Translator101 is a discord bot designed to help connect the community by acting as a bridge between language barriers. It was made using discord.py and has various features like basic translation, live translation etc.
This bot was made as part of a project for LHD : Share 2021.
Basic Setup and Help
Translate feature
Live Translate feature
Self-Hosting
- Firstly, install all the necessary libraries from the
requirements.txt
file.
pip install -r requirements.txt
- You are free to self-host the bot. To self-host the bot just change the name of the bot in
line 29
fromTranslator101
to whatever you would like to.
client.name = 'Translator101' # Change This
- You can change the prefix of the bot by changing the prefix declared in the
command_prefix
variable inline 17
to whatever you would like.
command_prefix = '!' # Change this to your preferred prefix
- To run the bot you also need to make a file called
config.py
and make a variable in it calledtoken
and set it to your bot token.
token = "Your_Bot_Token" # Add the token here
Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.