{ "info": { "author": "Vorap", "author_email": "vorap@thevoxel.net", "bugtrack_url": null, "classifiers": [ "Operating System :: OS Independent", "Programming Language :: Python :: 3.7" ], "description": "# Meager\n\nMeager is a tiny web framework built on the socketserver module in Python.\n\n[](https://app.codacy.com/app/ParanoidVoxel/meager)\n[](https://travis-ci.org/ParanoidVoxel/meager)\n[](https://pypi.python.org/pypi/meager)\n\n## Installation\n\nMeager is available on [PyPI](https://pypi.org/project/meager).\n\nYou can install meager using pip: `pip install meager`\n\n## Examples\n\nThis is the simplest way of using meager, returning html upon a request to \"/\".\n\nThe module is heavily inspired by flask, and it's ease of use, and readability.\n\n### Example returning html\n```python\nimport meager\napp = meager.Server(host=\"0.0.0.0\", port=8080) # Set binding ip address and port, default is localhost:2090\n\n@app.router.route(\"/\")\ndef index(request):\n return \"