/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 -r requirements.lock -r requirements-dev.lock

Option 2

Install rye.

Run

rye sync
rye shell

Commands

Test with

python -m pytest --doctest-modules src --cov src --cov-report=html

Or without coverage

python -m pytest --doctest-modules src

Cases