https://github.com/adagio/pytemplate
Python project template
https://github.com/adagio/pytemplate
file-structure logging python python-logging python3
Last synced: about 2 months ago
JSON representation
Python project template
- Host: GitHub
- URL: https://github.com/adagio/pytemplate
- Owner: adagio
- Created: 2018-11-26T21:30:18.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2018-11-26T22:39:19.000Z (about 7 years ago)
- Last Synced: 2025-06-22T04:40:41.292Z (6 months ago)
- Topics: file-structure, logging, python, python-logging, python3
- Language: Python
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Python project template
## File structure
.
├── README.md
├── source
| ├── app.py
| ├── setup.py
| ├── requirements.txt
| ├── modules
| ├── config
| | └── logging.yml
| └── logs
└── .gitignore
## Functionality included
- Logging
## Use the template
- Download tar.gz or zip from https://github.com/adagio/pytemplate/releases/latest
- Uncompress with `unzip` or `tar xzf`
- Rename to `template`
- Use, simple as, `cp -r template myproject`
- `cd myproject`
## Work inside source folder
- Enter `cd source`
## Run application
- Do `python app.py`
## Use venv if python3 is not default
- Do `python3 -m venv myenv`
- Do `source myenv/bin/activate`