Heaven is a very very small, extremely tiny, and insanely fast ASGI web application framework. It was designed to facilitate productivity by allowing for complete mastery in 7 minutes or less.
Heaven is a very light layer around ASGI with support for application mounting and is perhaps the simplest and one of the fastest python web frameworks (biased opinion of course).
Install with pip
$ pip install heaven
from heaven import Router
async def index(req, res, ctx):
res.body = 'Hello, World!'
router = Router()
router.GET('/', index)
You can run with uvicorn, gunicorn or any other asgi HTTP, HTTP2, and web socket protocol server of your choice.
$ uvicorn main:router --reload
* Running on http://127.0.0.1:8000
For guidance on how to make contributions to Routerling, see the Contribution Guidelines
- Documentation Go To Docs
- PyPi https://pypi.org/project/heaven
- Source Code Github