Python 3.8
This project uses Pipenv to manage python packages, but at this time the only package used is yaml. Since it might be a bit overboard to use Pipenv (or any virtual env to begin with) for a single package (a common one at that) it's completely optional to use Pipenv.
All commands should be issued from the project's root folder
pip install --upgrade-pip # always update pip
pip install pyyaml # get packages
python -m app # run the program
All commands should be issued from the project's root folder
pip install --upgrade-pip # always update pip
pip install pipenv # install pipenv
pipenv sync # get packages / create env
pipenv run start # run the program in the env created by Pipenv