A simple Python project template.
- Create a virtual environment:
python -m venv .venv- Activate the virtual environment:
- On macOS/Linux:
source .venv/bin/activate- On Windows:
.venv\Scripts\activate- Install dependencies:
pip install -r requirements.txtTo run the project:
python main.py