Willpyre is a micro ASGI framework. Willpyre gives flexibility and control, but abstracts ASGI to some extent and adds reusability to your code.
It is quite simple to use Willpyre.
from willpyre import App, Router
router = Router()
@router.get('/')
async def index(req,res):
res.body = "<h1>Please fasten your seatbelts!!</h1>"
return res
app = App(router)
It should run with any ASGI server like Uvicorn
, Daphne
, Hypercorn
.
To run with Uvicorn, install Uvicorn using
pip install uvicorn
and then
uvicorn <file>:app
The framework is written in pure-python and can run in PyPy or CPython. Tested on version 3.6 and above.
- Predefined response objects for fast development.
- Optional base response object passed to handlers.
- Async.
- Light and tiny.
- And lots more..
It is open to contributors willing to commit. Please open issues if you find something wierd. Fork this if you want to propose changes.