Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/biggestcookie/python-template
A barebones Python 3 template for starting new projects.
https://github.com/biggestcookie/python-template
python python3
Last synced: 14 days ago
JSON representation
A barebones Python 3 template for starting new projects.
- Host: GitHub
- URL: https://github.com/biggestcookie/python-template
- Owner: biggestcookie
- License: mit
- Created: 2023-02-22T02:57:14.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-01-26T20:09:05.000Z (12 months ago)
- Last Synced: 2024-01-26T21:25:35.377Z (12 months ago)
- Topics: python, python3
- Language: Python
- Homepage:
- Size: 4.88 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# python-template
A barebones template for starting Python 3 projects.
## Requirements
[Python 3.8+](https://www.python.org/downloads/)
## Usage
0. (Optional) Consider using a virtual environment manager such as [pipx](https://pypa.github.io/pipx/) or [venv](https://docs.python.org/3/library/venv.html).
- pipx is the modern recommendation but requires installation
- For venv which is built-in, simply run 'Python: Create environment' if you are using Visual Studio Code, or `python -m venv .venv` from the terminal. You may need to reload your IDE after running this if you are using one.
1. Install dependencies with `pip install -r requirements.txt`.
2. Run the project by selecting 'Terminal' > 'Run task' > 'python: app.py' if using Visual Studio Code, or `python main.py` in the terminal.
3. (Optional) A VSCode debug profile is also provided, you can use this to run or debug the program. [See the VSCode docs for more info.](https://code.visualstudio.com/docs/python/debugging#_basic-debugging)