toolchain-python
Installation
SKILL.md
Python Toolchain
Common commands for Python projects.
Virtual environments
python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
# Poetry
poetry install
poetry shell
poetry add requests
poetry add --group dev pytest