2
0
Fork
You've already forked circe
0
Experimental data-transformation backed static site tool.
  • Python 94.1%
  • Just 3.5%
  • HTML 2.4%
2026年06月14日 17:13:26 -05:00
src rename from ceres to circe 2026年06月14日 17:13:26 -05:00
.gitignore rename from ceres to circe 2026年06月14日 17:13:26 -05:00
.python-version draft interface 2026年06月01日 02:36:38 -05:00
Justfile rename from ceres to circe 2026年06月14日 17:13:26 -05:00
LICENSE files from trifold 2026年06月01日 02:58:52 -05:00
pyproject.toml rename from ceres to circe 2026年06月14日 17:13:26 -05:00
README.md rename from ceres to circe 2026年06月14日 17:13:26 -05:00

circe

circe is a tool to build static sites from various kinds of data with a simple transformation step. Unlike other static site generators, its focus is on building sites from data.

Existing transforms:

  • rss - Take a list of RSS feeds and generate a static site from all of them. Essentially what is known as an RSS "planet".
  • links - Maintain a simple link blog from a TOML file.

Documentation & Quickstart (TODO)

Repository

The tool aims to provide a simple interface:

  • a single TOML file to configure, edit with any text editor
  • refresh cache & outputs with circe update
  • configurable outputs via templates

Internally, adding custom transforms requires implementing two methods: update and generate.