- Fix issues with retry while fetching API data - Made readme more reader friendly - Some improvements in log messages - Update project dependencies
814 B
814 B
Contributing
First off, thank you! Please follow along.
- Fork this repository and clone your fork into a local machine.
- Install poetry with:
curl -sSL https://install.python-poetry.org | python -
- Open a terminal in the cloned folder and create a virtual environment using:
poetry shell
and install dependencies withpoetry install
- Put environment variables in a local
.env
file - Test the program
python -m unittest discover
. - Read main.py:L389 before step 7.
- Finally run it in development mode with
python -m main --dev
.