Skip to main content

No project description provided

Project description

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

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

flurry-ce-1.0.1.tar.gz (193.1 kB view hashes)

Uploaded Source

Built Distribution

flurry_ce-1.0.1-cp36-cp36m-win_amd64.whl (333.2 kB view hashes)

Uploaded CPython 3.6m Windows x86-64

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page