AI-assisted Python development framework. Write function interfaces (signatures, type hints, docstrings); pylennon build generates the implementations using Claude.
# Install uv (once)
winget install astral-sh.uv
# Clone, then:
uv sync
# Verify
uv run pylennon --help
uv run pylennon build example/stubs.pyfrom pylennon import LennonApp
lennon_app = LennonApp()
@lennon_app.imagine
def parse_invoice(raw_text: str) -> Invoice:
"""Parse a raw invoice string into a structured Invoice object."""
...pylennon build src/invoices.pySee idea.md for the full design.