Metadata-Version: 2.3
Name: domible
Version: 0.2.0
Summary: python classes to create accessible HTML elements and documents 
License: MIT
Keywords: html,accessibility,a11y,web development,frontend,server side rendering,SSR,hydrate
Author: Joel Dodson
Author-email: joeldodson@gmail.com
Requires-Python: >=3.11
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Development Status :: 3 - Alpha
Classifier: Topic :: Text Processing :: Markup :: HTML
Requires-Dist: validators (>=0.34.0)
Project-URL: Documentation, https://joeldodson.github.io/domible
Project-URL: Homepage, https://joeldodson.github.io/domible
Project-URL: Repository, https://github.com/joeldodson/domible
Project-URL: issues, https://github.com/joeldodson/domible/issues
Description-Content-Type: text/markdown

# domible

Domible is a set of Python classes used to generate HTML documents and elements of arbitrary complexity.

The basic idea behind domible is fairly simple, HTML elements are represented with Python classes.
When an element object is evaluated, it renders the text of the HTML element.
Objects can contain other element objects which will also evaluate to text when the containing object is evaluated.

Through this process of composition and recursive rendering,
domible can be used to programmatically create HTML elements
of arbitrary complexity directly from your Python code.

Go to the
[Domible Documentation](https://joeldodson.github.io/domible)
for details and examples.


