Fun playground that is to be used to test out various scenarios in python.
Note: We assume you are running this in Linux
This project uses Poetry. To install dependencies, run:
Install pyenv first here.
# install python version
pyenv install 3.8.0
# set/activate local python version
pyenv local 3.8.0
# install poetry
pip install poetry
# install poetry settings using pyproject.toml file
poetry installmake lint - execute flake8
make black - run black and format files
make unit-testmake all