Skip to content

Latest commit

 

History

History
22 lines (15 loc) · 324 Bytes

README.md

File metadata and controls

22 lines (15 loc) · 324 Bytes

Design patterns in Python

SOLID principles and design patterns examples in Python.

Development

Install

python.exe -m venv .venv
.\.venv\Scripts\Activate.ps1
pip3 install black mypy flake8 pylint pre-commit

Commit

Run before any commit:

pre-commit install
pre-commit run --all-files