A new package.
Project description
Welcome to the Python Class Cookie Cutter
A cookie cutter is a template for creating a new project. This cookie cutter will be used to create a new Python project with all of the development tools and initial code preconfigured and ready for use with Visual Studio Code.
Getting Started
To use this Cookie Cutter you will need Python and the Cookie Cutter package installed. Also, the files created with the Cookie Cutter project template are designed to work with
For Windows
-
Download the Windows Installer for Python from python.org
-
On the first page of the installation wizard, check the box to add Python to the path. This will make it easier to run Python from the command prompt.
-
Complete the install as normal.
For macOS or Linux
-
Install Homebrew from brew.sh
-
Then, run:
brew install python
For All Systems
- To verify the Python installation, run the following command:
python -V
Ensure it outputs the version you just installed.
- If the version displayed is different from the version installed the most likely you will need to adjust your system paths to resolve to the new Python path. Configuring path environment variables is outside the scope of this document.
Upgrade PIP and Install Cookie Cutter
With Python installed, let's ensure we have the latest PIP package manager.
python -m pip install --upgrade pip setuptools wheel
With PIP upgraded, now the Cookie Cutter package needs to be installed. From a terminal window, run the following command:
python -m pip install cookiecutter
Create a new Project with Cookie Cutter
-
From a terminal window, change to the folder where you would like to store your new project.
-
To create the new project, run the following command:
cookiecutter https://github.com/t4d-starter-projects/cookiecutter-create-python-project
-
It will prompt you for a project name, type in a name. I recommended something with no spaces, allow lower case, and no special characters except for an underscore.
-
A new folder is created with the project name. The contents of the cookie cutter project template are copied into the folder.
Get the Project Up and Running in Visual Studio Code
-
First, ensure you have Visual Studio Code installed. It can be downloaded from here code.visualstudio.com.
-
Install the Python extension for Visual Studio Code.
-
Start Visual Studio Code, and open the project folder created by Cookie Cutter.
-
Open a terminal window. Within the terminal session verify you are in the folder with the "requirements.txt" file.
-
Create a new virtual environment.
python -m venv venv
Note: On systems where you have Python 2 installed along with Python 3 you may need to use the python3
command instead of the plain python
command for this one step.
-
When the environment is created Visual Studio Code should detect it and asked you if you want to make this virtual environment the Python interpreter in Visual Studio, click "Yes".
-
Activate the environment in the terminal window.
Windows with PowerShell
.\venv\Scripts\Activate.ps1
macOS, Linux, Bash/Zsh Shell
source ./venv/bin/activate
- Upgrade PIP for the virtual environment.
python -m pip install --upgrade pip setuptools wheel
- Install the packages listed in the
requirements.txt
file.
python -m pip install -r requirements.txt
- Congrats! You are all done!
To run the project in various ways, here are the commands:
Run the Main Module
python -m demo_project_123
Run the Pylint Linter
python -m pylint --max-line-length=79 --unsafe-load-any-extension=y --ignore=.git,venv,.vscode,__pycache__ demo_project_123 tests
Run the Flake8 Linter
python -m flake8 --exclude=venv,.git,__pycache__
Run the MyPy Linter
python -m mypy --ignore-missing-imports --follow-imports=silent --show-column-numbers --strict --exclude venv .
Run the Unit Tests with Code Coverage
python -m coverage run -m unittest tests.__main__
Generate Code Coverage Report
python -m coverage report --omit="venv/*,tests/*,setup.py"
Extra
- Included is an Azure Pipeline file that will validate the source code per the linting rules and run unit tests and code coverage when committed code to Azure Repos.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
File details
Details for the file demo_project_123-0.1.0-py3-none-any.whl
.
File metadata
- Download URL: demo_project_123-0.1.0-py3-none-any.whl
- Upload date:
- Size: 4.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d2b893e4fc57ca11f04906efa0cbf5a9255aa21060f2b3ac9f0675cce54148bc |
|
MD5 | 113ae57b8494c22132a3a99d8bd20f89 |
|
BLAKE2b-256 | d6492ae36b9f9b1d28692d72bad8f94d309bc14d8f17bfb9ee988325cce8678f |