Skip to main content

Yet another ASGI toolkit

Project description

Yaat

yet another ASGI toolkit

travis status codecov report pypi package version

Yaat

Yaat is an asynchronous web framework/toolkit.

Features

  • Provide decorator routes & class based views.
  • Template support with Jinja2.
  • Cookie support.
  • WebSocket support.
  • Background tasks runner.
  • Test client using httpx.
  • Static file serving.

Requirements

Python 3.6+

Setup

pip3 install yaat

or just clone this and use directly to get the latest development version.

You'll also want to install an ASGI server, such as uvicorn.

pip3 install uvicorn

Example

Writing with Yaat is as simple as...

app.py

from yaat import Yaat
from yaat.responses import TextResponse

app = Yaat()

@app.route("/")
async def index(request):
    return TextResponse("Hello World")

Then run using uvicorn:

uvicorn app:app

Inspiration

I know there are a lot of awesome frameworks out there. So some might ask why did I write my own. Actually I created this to learn how the web framework actually works.

I started this after following Jahongir Rahmonov's blog post about writing a web framework. Feel free to check out his WSGI framework Alcazar.

More features will be added in the future. You can checkout the project board.

Icon Credit

Icons made by Dave Gandy from www.flaticon.com

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

yaat-0.1.2.tar.gz (18.5 kB view hashes)

Uploaded Source

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