Seed is a Python framework that compiles .seed files into static HTML.
It includes:
- A lexer/parser/renderer pipeline for
.seed - YAML +
.designcomponent system - Layouts and includes
- CLI commands for init, dev server, and build
python -m pip install seedseed init my-site
seed dev my-site
seed build my-sitefrom seed import Seed
engine = Seed()
html = engine.render_string("@h1\n Hello", full_page=True)python -m pip install -e ".[dev]"
python -m pytest tests -vMIT. See LICENSE.