Skip to content

Latest commit

 

History

History
19 lines (14 loc) · 696 Bytes

eventlet-example.rst

File metadata and controls

19 lines (14 loc) · 696 Bytes

Eventlet Example Server

This example is a basic HTTP/2 server written using the eventlet concurrent networking framework. This example is notable for demonstrating how to configure PyOpenSSL, which eventlet uses for its TLS layer.

In terms of HTTP/2 functionality, this example is very simple: it returns the request headers as a JSON document to the caller. It does not obey HTTP/2 flow control, which is a flaw, but it is otherwise functional.

../../examples/eventlet/eventlet-server.py