Skip to main content

genro-builders

Builder system for genro-bag — domain-specific grammars, rendering, and runtime data binding via pointers, built on top of bag data structures.

Installation

pip install genro-builders

Quick start

A page is a builder: subclass the dialect and implement main.

from genro_builders.contrib.html import HtmlBuilder


class HelloPage(HtmlBuilder):
    def main(self, root):
        body = root.body()
        body.h1("Hello World")
        body.p("My first page with genro-builders.")


page = HelloPage()
page.create()
print(page.render(pretty=True))

The lifecycle is two-phase, both on the builder:

  • create() runs setup(self.data) (seed the data), then the user-defined main(self.source) that populates the source Bag through the dialect's grammar API, then the first calculation of the data-elements.
  • render(mode=None, target=None, **opts) drives the universal walk on the source and produces the dialect's output. Default mode comes from the dialect; default target returns the string. It composes two steps you can also call on their own: materialize(mode) walks and keeps the result in materialized[mode], finalize delivers it.

Rendering does not validate. validate_source() reports the nodes whose minimum child cardinality is unmet — (fullpath, [missing tags]) per node, empty when complete — when the author asks for it.

Dialects (contrib)

The package ships with reference dialects, each as a <Dialect>Builder grammar:

  • HTML5genro_builders.contrib.html.HtmlBuilder (HTML5 grammar with CSS kwargs)
  • SVGgenro_builders.contrib.svg.SvgBuilder
  • CSSgenro_builders.contrib.css.CssBuilder
  • XSDgenro_builders.xml (codegen: an XSD schema becomes a <Dialect>Builder you commit and import)

Mixed-dialect documents are supported via sub-builders: a grammar element marked _meta['subbuilder'] switches the active dialect from that node down, and the render walk picks the right renderer per node. HTML hosts SVG with body.svg(...); SVG hosts HTML with svg.html(...), wrapped in <foreignObject> automatically.

from genro_builders.contrib.html import HtmlBuilder


class Badge(HtmlBuilder):
    def main(self, root):
        body = root.body()
        svg = body.svg(viewBox="0 0 200 80", width=200, height=80)
        svg.rect(x=0, y=0, width=200, height=80, fill="#2c3e50")


page = Badge()
page.create()
print(page.render())

Architecture (one-paragraph map)

A builder declares the grammar of a dialect (decorators @element, @abstract; the three data-elements dataSetter / dataFormula / dataController are plain @element marked as data) and is also the document: it owns name, source, create()/render(), and exposes its renderers as renderer_<mode> properties. It also owns its datastore: one FLAT Bag, builder.data, with absolute paths and no leading segment — reachable from any node as node.data. A renderer is responsible for one mode: the universal walk produces fragments via dialect-specific rendered_item, then finalize ships the result to the target.

Runtime data binding (pull-based)

Attribute values and node text can carry pointers and templates, resolved at render time:

  • ^path — pointer declared as meant to follow the datum
  • =path — passive pointer (read only)

Both resolve the same way in a static render: the difference is the author's declaration of intent, which a reactive engine would act on.

  • ${name} — template token; an attribute referenced by a template of the same node is a consumed input, never emitted
from genro_builders.contrib.html import HtmlBuilder


class Page(HtmlBuilder):
    def setup(self, data):
        data.set_item("greeting", "Hello")

    def main(self, root):
        root.body().h1("^greeting")


page = Page()
page.create()                  # setup + main + the data-elements
print(page.render())
# ...<h1>Hello</h1>...

# Mutate the data and re-render: pull-based, no auto-render.
page.data.set_item("greeting", "Ciao")
print(page.render())
# ...<h1>Ciao</h1>...

Re-render is the whole reactivity model here: change the data, render again. Fine-grained reactivity is a separate engine, still under design — see the RX area of the contract.

The companion API on each source node:

  • node.abs_datapath(path) — turn a relative path into an absolute one in the datastore
  • node.get_relative_data(path) / node.set_relative_data(path, value) — read/write the datastore relative to the node
  • node.SET / GET / PUT / FIRE — the reactive macros over the same two entry points

Render target

page = HelloPage()
page.create()

# Return a string (default)
text = page.render()

# Write to a path
page.render(target="out.html")

# Push to a file-like or invoke a callable
import io
page.render(target=io.StringIO())
page.render(target=print)

# Register a default target (per mode), then render to it
page.set_render_target("out.html")
page.render()

Examples

Runnable tutorials under src/genro_builders/contrib/<dialect>/examples/, grouped by scenario:

  • HTML — no_data/ (grammar, styling, sub-builders, validation, render modes), with_data/ (pointers, datapath, presentation), with_logic/ (data-elements), reactive/ (live sections)
  • SVG — 01_introduction, badge_sheet, bar_chart, and more
  • CSS — 01_introduction

Each example ships a runnable .py, a readme.md, and the rendered output. The test suite runs them all (tests/test_examples.py).

Documentation

Downstream

genro-builders is a generic engine: the grammars, the renderers, and the reactive data binding know nothing about who consumes them. The source carries no reference to any downstream layer — this is the one place that names them. Known consumers in the Genro ecosystem:

  • genro-ws-web — WebSocket-driven reactive SPA framework (the production widget kit and the push transport live here)
  • genro-office — Office document generation (Word and Excel builders)
  • genro-print — print and PDF generation system
  • genro-textual — Textual UI framework for Bag-driven applications
  • genro-scriba — infrastructure configuration file generator (Traefik, Docker Compose, and more)

License

Apache License 2.0 — Copyright 2025 Softwell S.r.l.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

genro_builders-0.21.0.tar.gz (403.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

genro_builders-0.21.0-py3-none-any.whl (261.0 kB view details)

Uploaded Python 3

File details

Details for the file genro_builders-0.21.0.tar.gz.

File metadata

  • Download URL: genro_builders-0.21.0.tar.gz
  • Upload date:
  • Size: 403.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for genro_builders-0.21.0.tar.gz
Algorithm Hash digest
SHA256 1e793d3231ae208c87d2265454c7d267a2e8d592d37e61d546b70f9128b31837
MD5 e7e62e46eda5b852c6bd82ccc896671b
BLAKE2b-256 c72cb6218f6e8f99ddcf2a109578a98291baca7560d7ff84517d863a0bc552d9

See more details on using hashes here.

Provenance

The following attestation bundles were made for genro_builders-0.21.0.tar.gz:

Publisher: publish.yml on genropy/genro-builders

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file genro_builders-0.21.0-py3-none-any.whl.

File metadata

  • Download URL: genro_builders-0.21.0-py3-none-any.whl
  • Upload date:
  • Size: 261.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for genro_builders-0.21.0-py3-none-any.whl
Algorithm Hash digest
SHA256 87641374804f197d07d2d5fa222a304cbab23e1c2b40bc8c38367b4ce099a16a
MD5 d20330a8b0da14f634ed47d3f551215c
BLAKE2b-256 db7057d17a7951ca5ec5a8d23e74e2738df73c326a68b0de1009ac80e5e16909

See more details on using hashes here.

Provenance

The following attestation bundles were made for genro_builders-0.21.0-py3-none-any.whl:

Publisher: publish.yml on genropy/genro-builders

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

0.23.1

2 files

0.23.0

2 files

0.22.0

2 files

0.21.1

2 files

This release

0.21.0 This release

2 files

0.20.0

2 files

0.18.0

2 files

0.16.0

2 files

0.14.1

2 files

0.14.0

2 files

0.10.2

2 files

0.10.1

2 files

0.9.0

2 files

0.7.0

2 files

0.6.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page