{ "info": { "author": "Harshad Sharma", "author_email": "harshad@sharma.io", "bugtrack_url": null, "classifiers": [ "Development Status :: 3 - Alpha", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Operating System :: POSIX", "Operating System :: Unix", "Programming Language :: Python", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: Implementation :: CPython", "Topic :: Internet", "Topic :: Software Development", "Topic :: Utilities" ], "description": "MakeWeb\n=======\n\nMake interactive web apps using good ol\u2019 HTML, CSS and a sprinkling of\nJavaScript \u2014 in Python.\n\nExamples:\n---------\n\nHyperText Markup Lnguage\n~~~~~~~~~~~~~~~~~~~~~~~~\n\nIf we run this script:\n\n.. code:: python\n\n # 00-generate-html.py\n\n from makeweb import Doc, body, h1\n\n def generate_html():\n doc = Doc('html', lang='mr')\n with body():\n h1('\u0939\u093e!')\n return str(doc)\n\n print(generate_html())\n\nWe should see this output on the screen:\n\n.. code:: html\n\n \n \n
\n