Installation
Larkspur targets Python 3.9 and newer and has no required third-party packages.
From the package index
python -m pip install larkspur
Vendored (zero dependencies)
Larkspur is a single module. If you would rather not add a dependency, copy it straight into your project:
curl -o mypkg/larkspur.py \
https://larkspur-docs.duckdns.org/dist/larkspur.py
The vendored file and the published package are byte-for-byte identical for a given version tag. The checksum is printed on the Changelog.
Requirements
| Component | Version | Notes |
|---|---|---|
| Python | 3.9 – 3.13 | CPython and recent PyPy both pass the suite |
| OS | any | pure Python, no compiled extensions |
Verifying the install
python -c "import larkspur; print(larkspur.__version__)"
# 0.9.4