https://github.com/viniciusmuller/botinho
🤖 A bot made with discord.py designed for handling multiple requests simultaneously without concurrence issues.
https://github.com/viniciusmuller/botinho
Last synced: 7 days ago
JSON representation
🤖 A bot made with discord.py designed for handling multiple requests simultaneously without concurrence issues.
- Host: GitHub
- URL: https://github.com/viniciusmuller/botinho
- Owner: viniciusmuller
- License: mit
- Created: 2021-01-06T22:35:19.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-07-20T15:09:42.000Z (almost 2 years ago)
- Last Synced: 2025-01-11T18:48:48.788Z (5 months ago)
- Language: Python
- Homepage:
- Size: 15.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Botinho
## A bot made with discord.py designed for handling multiple requests simultaneously without concurrence issues.
## Setup
- Clone the repository
```bash
git clone https://github.com/arcticlimer/botinho
````- Enter the application directory
```bash
cd botinho
````- Install the dependencies
```bash
python3 -m pip install -r requirements.txt
```- Provide the necessary TOKEN and DATABASE_URL inside `secrets.example.py`
```py
# secrets.example.py# A postgres database url
# postgresql://[user[:password]@][netloc][:port][/dbname]
DATABASE_URL=""
# Your discord bot token
TOKEN=""
```- Rename it to `secrets.py`
- Start the application
```py
python3 main.py
```