Tools to increase productivity / automate the boring stuff
python -m venv venv
source venv/Scripts/activate
pip install -r requirements.txt -r requirements-dev.txt
Add new packages to requirments.txt, then install with pip install -r requirements.txt
.
Typer throws some weird errors if the argument types are not supported. Make sure that the types of the arguments specified by each command / function are supported.
If you see
TypeError: sequence item 0: expected str instance, int found
you probably are using an unsupported argument type.