/python-samples

Monorepo for my Python code samples for talks, presentations, workshops, demos.

Primary LanguagePython

CI

My Python code samples

For talks, presentations, workshops, demos.

Setup

Option 1

python3 -m venv .venv
source .venv/bin/activate
pip install pip --upgrade
pip install -e ".[dev]"

Option 2

Install uv.

Run

uv sync
uv venv

Commands

Test with

uv run pytest --doctest-modules src --cov src --cov-report=html

Or without coverage

uv run pytest --doctest-modules src

Cases