SuperUserBot/README.md

23 lines
417 B
Markdown
Raw Normal View History

2024-04-28 17:20:00 +02:00
# SuperUserBot
Allows certain users to gain a role temporarily using /sudo.
2024-04-28 17:22:10 +02:00
# Running
Clone the repository:
```bash
git clone https://github.com/CAG2Mark/SuperUserBot
cd SuperUserBot
```
Install the dependencies:
```
pip install -r requirements.txt
```
2024-04-28 17:37:22 +02:00
Put your token into a .env file:
```
2024-04-28 17:37:56 +02:00
echo "TOKEN=<your token>" > .env
2024-04-28 17:37:22 +02:00
```
2024-04-28 17:22:10 +02:00
Run the bot:
```
python3 main.py
```
You may want to make a virtual Python environment.