Skip to content

Latest commit

 

History

History
33 lines (19 loc) · 693 Bytes

README.md

File metadata and controls

33 lines (19 loc) · 693 Bytes

Zest Web Framework

Zest is a lightweight WSGI web framework of Python.

Asynchronous server

Zest implements an asynchronous server base on asyncio, it can easily solve the C10K problem and have a high-performance.

Hello, World

from zest.web import App

app = App()

@app.get('/')
def index(request):
    return 'Hello, World!'

if __name__ == "__main__":
    app.run()

Run this script and go to http://localhost:7676. You will see the world.

NOTE

Zest is considered alpha quality now, So:

Do not use in production for now!

Document

You can find reference documentation here(TODO)