- Create a .venv from the root directory
virtualenv .venv- Activate the .venv
source .venv/bin/activate- Install packages
pip install -r requirements.txt- Run the program
python main.pyRun tests for all modules with:
python -m unittest discover -s . -p "test_*.py"