Fuyukai / Kyoukai

[OLD] A fully async web framework for Python3.5+ using asyncio

Home Page:https://mirai.veriny.tf

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Kyōkai (境界)

This project will not be getting any more updates.

Coverage CircleCI

Kyōkai is a fast asynchronous Python server-side web framework. It is built upon asyncio and the Asphalt framework for an extremely fast web server.

Setting up a Kyōkai app is incredibly simple. Here's a simple server that echoes your client's headers:

import json
from kyoukai import Kyoukai, HTTPRequestContext

kyk = Kyoukai("example_app")

@kyk.route("/")
async def index(ctx: HTTPRequestContext):
    return json.dumps(dict(ctx.request.headers)), 200, {"Content-Type": "application/json"}
    
kyk.run()

For more information, see the docs at https://mirai.veriny.tf.

About

[OLD] A fully async web framework for Python3.5+ using asyncio

https://mirai.veriny.tf

License:MIT License


Languages

Language:Python 100.0%