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 — DSL macros over the same two entry points; the fired/reason flags they carry travel through the genro-bag subscribe pipeline, and nothing in this package acts on them (vocabulary for the future reactive engine)

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)
  • SVG — 01_introduction, badge_sheet, bar_chart, and more
  • CSS — 01_introduction
  • XSD — 01_person_schema; XSLT — 01_sitemap_to_html

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 pull-based 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.23.1.tar.gz (434.8 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.23.1-py3-none-any.whl (279.8 kB view details)

Uploaded Python 3

File details

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

File metadata

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

File hashes

Hashes for genro_builders-0.23.1.tar.gz
Algorithm Hash digest
SHA256 010afa116ae72fa038a42c802d5a7fb8efad2491b583b105ac3d5c579af09e6f
MD5 7d42e8727c74b75aa061a7f19cbbd59e
BLAKE2b-256 2506d5244173a77e24f3b7de70065237dbd33582731deba3ad26459b48591b57

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for genro_builders-0.23.1-py3-none-any.whl
Algorithm Hash digest
SHA256 72baaa513670a4b4ebd9bbaba79895b0090c042be573a5aaab1d483a3b8e4866
MD5 e3f7e20dabda4f73ece5e50f5090a3d5
BLAKE2b-256 6f5e15c3345d71d5a923edf00752596d89835c0e071b4f022321a65c2dad9511

See more details on using hashes here.

Provenance

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

This release

0.23.1 This release

2 files

0.23.0

2 files

0.22.0

2 files

0.21.1

2 files

0.21.0

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