Skip to main content

Willpyre. Fasten your seatbelts!

Project description

Willpyre



Documentation Status Test and PEP8 Code style: black

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


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.11.tar.gz (60.1 kB view hashes)

Uploaded Source

Built Distribution

willpyre-0.0.11-py2.py3-none-any.whl (21.4 kB view hashes)

Uploaded Python 2 Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page