High performance web framework.
pip install xweb
from xweb import App, RESTController
class IndexController(RESTController):
async def get(self):
self.ctx.body = {"Hello": "World"}
app = App()
app.routes = {
'/': IndexController
}
app.listen()