windows:

  1. fill in .env file with needed options (get examples from website)
  2. python -m venv venv
  3. .\venv\scripts\activate
  4. pip install -r .\requirements.txt
  5. python main.py

linux\mac os:

  1. fill in .env file with needed options (get examples from website)
  2. python3 -m venv venv
  3. source ./venv/bin/activate
  4. pip install -r ./requirements.txt
  5. python3 main.py