This template is for new Python 3 projects. It features a basic structure, a simple logger, an arguments parser and the recommended settings + plugins for VS Code.
Describe how to use your Python script.
If you want to contribute see CONTRIBUTING.md. Recommended IDE: VS Code.
If you are using a virtual environment (python -m venv .env
), add this to the end of the activate file (.env/Scripts/activate\[.bat\]
):
pip install -r requirements.txt
pip install -r requirements-dev.txt
If you want to test the code, run pytest
in the terminal or use the testing suite of your IDE.