Installation
First fork this repository and clone it to your local machine.
Navigate to the directory.
cd bla-bot
Using pip
Create a virtual environment.
python3 -m venv virtualenvActivate virtual environment.
Linux:
source virtualenv/bin/activateWindows:
virtualenv\Scripts\activateInstall dependencies.
pip install -r requirements.txtNow go ahead and configure your bot according to your needs. (See Usage)
QUICK TIP
Whenever you need to properly exit from the virtual environment, just run the following command:
deactivate
Using Poetry
Resolve and install all the dependencies.
poetry installTo start a new shell and activate the virtual environment:
poetry shellNow go ahead and configure your bot according to your needs. (See Usage)
QUICK TIP
Whenever you need to properly exit from the shell and the virtual environment run the following command :
exit