This is a template for python projects.
Create a virtual Environment
virtualenv .venv -p pytthon 3.14
source .venv/bin/activate
Using pytest for Tests
python -m pytest
Using pre-commit for linting and formatting
pre-commit install
pre-commit run --all-files