Willpyre. Fasten your seatbelts!
Project description
Willpyre
Willpyre is a micro ASGI framework. Willpyre gives flexibility and control, but abstracts ASGI to some extent and adds reusability to your code.
Quickstart
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.
Features
- Predefined response objects for fast development.
- Optional base response object passed to handlers.
- Async.
- Light and tiny.
- And lots more..
Contributions
It is open to contributors willing to commit. Please open issues if you find something wierd. Fork this if you want to propose changes.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
willpyre-0.0.6.tar.gz
(24.6 kB
view hashes)
Built Distribution
Close
Hashes for willpyre-0.0.6-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1cee083d0a246b754269a200afa75b546174b7e5e8413936072df7a36241aa63 |
|
MD5 | 839085976eef32c73a9c97bc7e510cba |
|
BLAKE2b-256 | 3ca8a883c8ea518744d6717343d13a7dccc3727cae5c68849b3b8e36486cfa6c |