| ID | Solution | Note |
|---|---|---|
| 1 | MyPractice | Simple libraries |
| 2 | SimpleAPI | Simple API |
The project use pre-commit and python environment to install some useful package that check your code before pushing code in github. If you want to try this solution, you must create python virtual environment firstly
python -m venv venvAnd active your environment
source venv/bin/activateAfter that, install pre-commit package
pip3 install -r requirements.txtInstall pre-commit to github hook
pre-commit installTry to run
pre-commit run --all-file