# Clean-Architecture-with-Python **Repository Path**: laizibi/Clean-Architecture-with-Python ## Basic Information - **Project Name**: Clean-Architecture-with-Python - **Description**: No description available - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: chapt-7 - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-12-13 - **Last Updated**: 2024-12-13 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Clean-Architecture-with-Python Clean Architecture with Python, Published by Packt ## Getting started Create a virtual environment (with python >= 3.13) ```shell > python -m venv .venv > source .venv/bin/activate ``` Install dependencies ```shell > pip install --upgrade pip && pip install -r requirements.txt ``` Run tests ```shell ## Go to the chapter folder > cd Chapter_5/TodoApp ## Run tests > pytest ```