{ "info": { "author": "Jouni K. Sepp\u00e4nen", "author_email": "jks@iki.fi", "bugtrack_url": null, "classifiers": [ "Development Status :: 2 - Pre-Alpha", "Environment :: Web Environment", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: Implementation :: CPython", "Topic :: Text Processing :: Markup :: HTML" ], "description": "htexpr\n======\n\nhtexpr compiles an html-like syntax into Python expressions. It is\ninspired by [JSX]() and intended to complement the excellent [dash]()\npackage, which allows you to write single-page React apps in\nPython. Here is an example, a simple ASCII table:\n\n```python\napp.layout = htexpr.compile(\"\"\"\n
| char | name | category |
|---|---|---|
| { char } | \n\t{ unicodedata.name(char, '???') } | \n\t{ unicodedata.category(char) } | \n\t