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. A handler (BuilderHandler) is the data source: it mounts ONE builder (add_builder) on one FLAT datastore — absolute paths with no leading segment — and tracks who reads what (pointer_map). It does not render. 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 — reactive pointer (read and subscribed)
  • =path — passive pointer (read only)
  • ${name} — template token; an attribute referenced by a template of the same node is a consumed input, never emitted
from genro_builders.builder import BuilderHandler
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()
handler = BuilderHandler()
handler.add_builder(page)      # mounts the page and creates it
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.20.0.tar.gz (404.1 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.20.0-py3-none-any.whl (265.8 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: genro_builders-0.20.0.tar.gz
  • Upload date:
  • Size: 404.1 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.20.0.tar.gz
Algorithm Hash digest
SHA256 cfb21b7cc25c2bf05806c47b7787d19dab28a8a402ba3b77d668dfba40f1e789
MD5 abefb5cd1235d88962cbbfef655f7f9e
BLAKE2b-256 a859c260c3c0d23f05b0cddb64115a85e68bd62d5f5197be580b94587de2795c

See more details on using hashes here.

Provenance

The following attestation bundles were made for genro_builders-0.20.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.20.0-py3-none-any.whl.

File metadata

  • Download URL: genro_builders-0.20.0-py3-none-any.whl
  • Upload date:
  • Size: 265.8 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.20.0-py3-none-any.whl
Algorithm Hash digest
SHA256 c7970e2a5e7b311e7edf5c6a3f72419ca7ec5d72afa7dff72a3ebdfaa72359a3
MD5 b003ff7c8b1049e6d85b79abae309923
BLAKE2b-256 1fc2e211e925d4fb59f670690b4a6477c8c18c3e6f32c1b60a00bf9669b8837b

See more details on using hashes here.

Provenance

The following attestation bundles were made for genro_builders-0.20.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

0.21.0

2 files

This release

0.20.0 This release

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