Skip to content
forked from Fuyukai/Kyoukai

A fully asynchronous web framework for Python3.5+

License

Notifications You must be signed in to change notification settings

agronholm/Kyoukai

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

70 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Kyōkai (境界)

Issue tracking lives at https://gitlab.com/Fuyukai/Kyoukai. The GitHub is just a mirror.

Kyōkai is a fast asynchronous Python server-side web framework. It is built upon asyncio and libuv 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 kyokai import Kyokai, Request, Response

kyk = Kyokai("example_app")

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

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

About

A fully asynchronous web framework for Python3.5+

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%