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

1.2 KiB

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

../examples/webcrawler.py

WSGI Server

examples/wsgi.py

../examples/wsgi.py

Echo Server

examples/echoserver.py

../examples/echoserver.py

Socket Connect

examples/connect.py

../examples/connect.py

Multi-User Chat Server

examples/chat_server.py

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

Feed Scraper

examples/feedscraper.py

This example requires Feedparser to be installed or on the PYTHONPATH.

../examples/feedscraper.py