/jmprojecttemplate

My Python Project Template

Primary LanguagePythonBSD 2-Clause "Simplified" LicenseBSD-2-Clause

My Project

My Decription

To run the main program, first start the virtual environment, then execute the app module

Create and install dependencies, if necessary

pyenv activate project-env
python project/app.py

Run in debug mode

python project/app.py -d

To get help

python project/app.py -h

Reference

https://docs.python-guide.org/writing/structure/

ToDo

  • A thing

sample mermaid chart

flowchart LR

A[Hard] -->|Text| B(Round)
B --> C{Decision}
C -->|One| D[Result 1]
C -->|Two| E[Result 2]
Loading