Skip to main content

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

  1. Download the Windows Installer for Python from python.org

  2. 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.

  3. Complete the install as normal.

For macOS or Linux

  1. Install Homebrew from brew.sh

  2. Then, run:

brew install python

For All Systems

  1. 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

  1. From a terminal window, change to the folder where you would like to store your new project.

  2. To create the new project, run the following command:

cookiecutter https://github.com/t4d-starter-projects/cookiecutter-create-python-project
  1. 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.

  2. 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

  1. First, ensure you have Visual Studio Code installed. It can be downloaded from here code.visualstudio.com.

  2. Install the Python extension for Visual Studio Code.

  3. Start Visual Studio Code, and open the project folder created by Cookie Cutter.

  4. Open a terminal window. Within the terminal session verify you are in the folder with the "requirements.txt" file.

  5. 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.

  1. 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".

  2. Activate the environment in the terminal window.

Windows with PowerShell

.\venv\Scripts\Activate.ps1

macOS, Linux, Bash/Zsh Shell

source ./venv/bin/activate
  1. Upgrade PIP for the virtual environment.
python -m pip install --upgrade pip setuptools wheel
  1. Install the packages listed in the requirements.txt file.
python -m pip install -r requirements.txt
  1. 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.

Release files for demo-project-123 0.1.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Built distribution (wheel)

Table of built distributions (wheels) for demo-project-123 0.1.0
File Interpreter ABI Platform
demo_project_123-0.1.0-py3-none-any.whl Python 3 none any Details

Release files / demo_project_123-0.1.0-py3-none-any.whl

Download URL demo_project_123-0.1.0-py3-none-any.whl
Size 4.7 kB
Tags Python 3
SHA-256 checksum
How to use checksums
d2b893e4fc57ca11f04906efa0cbf5a9255aa21060f2b3ac9f0675cce54148bc
BLAKE2b-256 checksum
How to use checksums
d6492ae36b9f9b1d28692d72bad8f94d309bc14d8f17bfb9ee988325cce8678f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.11.2

Release history Release notifications | RSS feed

This release

0.1.0 This release

1 release file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page