{ "info": { "author": "Keigo Kawamura", "author_email": "kkawamura@logos.t.u-tokyo.ac.jp", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.7", "Topic :: Software Development :: Libraries :: Python Modules", "Topic :: Text Processing :: Markup :: HTML" ], "description": "html-writer\n====\n\n\n[](https://github.com/KKawamura1/html-writer)\n[](https://github.com/KKawamura1/html-writer)\n[](https://github.com/KKawamura1/html-writer)\n\n\nA simple html writer for python.\n\n\n## Description\n\nYou can write raw html with 'with' statements like:\n```python\nhtml = Html()\nwith html.tag('div'):\n with html.tag('p') as h:\n h += 'Hello world!'\n# Here html has '
Hello world!
\n# Hello world!\n#
\n#