flurry-ce 1.0.1

Creator: bradpython12

Last updated:

Add to Cart

Description:

flurryce 1.0.1

flurry
introduce
基于Cython,uvloop,httptools的一个高性能web框架,目前只支持linux系统
install
pip3 install flurry-ce

run
from flurry.app import Application
from flurry.handler import RequestHandler


class RootHandler(RequestHandler):

async def get(self):
self.write({
"hello": "world"
})

handler_classes = [
(r"/", RootHandler),
]

Application(
handler_clses=handler_classes,
debug=False,
).run()

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.