Skip to content

onefeng/flurry

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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()

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

Packages

Used by

Contributors

Languages