{ "info": { "author": "Joachim Viide", "author_email": "jviide@iki.fi", "bugtrack_url": null, "classifiers": [ "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python :: 3" ], "description": "# htm.py [](https://circleci.com/gh/jviide/htm.py) [](https://pypi.org/project/htm/)\n\nA Python version of [developit/htm](https://github.com/developit/htm) - JSX-like syntax in plain ~~JavaScript~~ Python.\n\n\n\n## Installation\n\n```sh\n$ pip3 install htm\n```\n\n## Usage\n\n```py\nfrom htm import htm\n\n@htm\ndef html(tag, props, children):\n return tag, props, children\n\na = 1\nb = {\"bar\": 100}\nc = \"span\"\nd = \"world\"\n\nhtml(\"\"\"\n