sphinxpress
sphinxpress publishes multiple Sphinx documentation projects as one documentation product:
Jekyll/GitHub Pages pages generated from Sphinx JSON output
a combined EPUB book
a combined PDF book
sphinxpress does not replace Sphinx. Each source project remains a normal Sphinx project with its own conf.py, root document, extensions, and source files. sphinxpress orchestrates those projects and writes deterministic generated output for a site or book pipeline.
When to use it
Use sphinxpress when you maintain several related Python tools or libraries and want one documentation site and one combined book artifact without merging the original docs projects.
First steps
Install the package in your docs build environment.
Create
sphinxpress.tomlat the repository root.Add one
[[projects]]entry for each Sphinx docs project.Run
sphinxpress check.Run
sphinxpress build-site --all.Commit or publish the generated Jekyll pages according to your site workflow.
python -m pip install sphinxpress
sphinxpress check
sphinxpress build-site --all
For development:
python -m pip install -e ".[dev,docs]"
python -m pytest -q