Zest is a lightweight WSGI web framework of Python.
Zest implements an asynchronous server base on asyncio, it can easily solve the C10K problem and have a high-performance.
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.
Zest is considered alpha quality now, So:
Do not use in production for now!
You can find reference documentation here(TODO)