Airium is a Python library for building HTML with natural syntax correspondence (python -> html). It requires no templates and has no dependencies. Current version is 0.2.7, with infrequent releases.
pip install airiumVerified import paths — ran on the pinned version, not inferred.
Create an Airium instance, use context managers for tags, and convert to string.
Always use 'with' statements for tags that should enclose other elements (e.g., with a.div(): ...).
Double-check attribute names; refer to HTML spec for standard attributes.
Use 'from airium import Airium' instead of 'import airium' or 'from airium import airium'.
Use 'with a.html():' to start the document, then nest other tags inside.
No dependency data recorded yet.