High performance web framework built with uvloop and httptools.


Keywords
asyncio, httptools, microframework, middleware, uvloop, web, webframework, xweb
License
MIT
Install
pip install xweb==0.1.1

Documentation

logo

Build License Pypi Python

High performance web framework.

Installation

pip install xweb

Usage

from xweb import App, RESTController


class IndexController(RESTController):
    async def get(self):
        self.ctx.body = {"Hello": "World"}


app = App()
app.routes = {
    '/': IndexController
}

app.listen()