Files
deb-python-eventlet/doc/examples.rst

828 B

Examples

Here are a bunch of small example programs that use Eventlet. All of these examples can be found in the examples directory of a source copy of Eventlet.

Web Crawler

../examples/webcrawler.py

WSGI Server

../examples/wsgi.py

Echo Server

../examples/echoserver.py

Socket Connect

../examples/connect.py

Multi-User Chat Server

This is a little different from the echo server, in that it broadcasts the messages to all participants, not just the sender.

../examples/chat_server.py