Welcome, guest | Sign In | My Account | Store | Cart

Notice! PyPM is being replaced with the ActiveState Platform, which enhances PyPM’s build and deploy capabilities. Create your free Platform account to download ActivePython or customize Python with the packages you require and get automatic updates.

Download
ActivePython
INSTALL>
pypm install eventlet

How to install eventlet

  1. Download and install ActivePython
  2. Open Command Prompt
  3. Type pypm install eventlet
 Python 2.7Python 3.2Python 3.3
Windows (32-bit)
0.13.0
0.14.0Never BuiltWhy not?
0.13.0 Available View build log
0.12.1 Available View build log
0.9.16 Available View build log
0.9.15 Available View build log
0.9.14 Available View build log
0.9.13 Available View build log
0.9.12 Available View build log
0.14.0Never BuiltWhy not?
0.9.16 Failed View build log
0.9.15 Failed View build log
0.9.14 Failed View build log
0.9.13 Failed View build log
0.9.12 Failed View build log
Windows (64-bit)
0.13.0
0.14.0Never BuiltWhy not?
0.13.0 Available View build log
0.12.1 Available View build log
0.9.16 Available View build log
0.9.15 Available View build log
0.9.14 Available View build log
0.9.13 Available View build log
0.9.12 Available View build log
0.14.0Never BuiltWhy not?
0.9.16 Failed View build log
0.9.15 Failed View build log
0.9.14 Failed View build log
0.9.13 Failed View build log
0.9.12 Failed View build log
Mac OS X (10.5+)
0.13.0
0.14.0Never BuiltWhy not?
0.13.0 Available View build log
0.12.1 Available View build log
0.9.16 Available View build log
0.9.15 Available View build log
0.9.14 Available View build log
0.9.13 Available View build log
0.9.12 Available View build log
0.14.0Never BuiltWhy not?
0.9.16 Failed View build log
0.9.15 Failed View build log
0.9.14 Failed View build log
0.9.13 Failed View build log
0.9.12 Failed View build log
Linux (32-bit)
0.13.0
0.14.0Never BuiltWhy not?
0.13.0 Available View build log
0.12.1 Available View build log
0.9.16 Available View build log
0.9.15 Available View build log
0.9.14 Available View build log
0.9.13 Available View build log
0.9.12 Available View build log
0.14.0Never BuiltWhy not?
0.9.16 Failed View build log
0.9.15 Failed View build log
0.9.14 Failed View build log
0.9.13 Failed View build log
0.9.12 Failed View build log
Linux (64-bit)
0.14.0 Available View build log
0.13.0 Available View build log
0.12.1 Available View build log
0.10.0 Available View build log
0.9.16 Available View build log
0.9.15 Available View build log
0.9.14 Available View build log
0.9.13 Available View build log
0.9.12 Available View build log
0.14.0Never BuiltWhy not?
0.9.16 Failed View build log
0.9.15 Failed View build log
0.9.14 Failed View build log
0.9.13 Failed View build log
0.9.12 Failed View build log
0.14.0 Failed View build log
0.13.0 Failed View build log
0.12.1 Failed View build log
0.10.0 Failed View build log
 
Author
Dependencies
Lastest release
version 0.14.0 on Sep 20th, 2013

Eventlet is a concurrent networking library for Python that allows you to change how you run your code, not how you write it.

It uses epoll or libevent for highly scalable non-blocking I/O. Coroutines ensure that the developer uses a blocking style of programming that is similar to threading, but provide the benefits of non-blocking I/O. The event dispatch is implicit, which means you can easily use Eventlet from the Python interpreter, or as a small part of a larger application.

It's easy to get started using Eventlet, and easy to convert existing applications to use it. Start off by looking at the examples, common design patterns, and the list of basic API primitives.

Quick Example

Here's something you can try right on the command line:

% python
>>> import eventlet
>>> from eventlet.green import urllib2
>>> gt = eventlet.spawn(urllib2.urlopen, 'http://eventlet.net')
>>> gt2 = eventlet.spawn(urllib2.urlopen, 'http://secondlife.com')
>>> gt2.wait()
>>> gt.wait()

Getting Eventlet

The easiest way to get Eventlet is to use easy_install or pip:

easy_install eventlet
pip install eventlet

The development tip is available via easy_install as well:

easy_install 'eventlet==dev'
pip install 'eventlet==dev'

Building the Docs Locally

To build a complete set of HTML documentation, you must have Sphinx, which can be found at http://sphinx.pocoo.org/ (or installed with easy_install sphinx)

cd doc make html

The built html files can be found in doc/_build/html afterward.

Subscribe to package updates

Last updated Sep 20th, 2013

Download Stats

Last month:12

What does the lock icon mean?

Builds marked with a lock icon are only available via PyPM to users with a current ActivePython Business Edition subscription.

Need custom builds or support?

ActivePython Enterprise Edition guarantees priority access to technical support, indemnification, expert consulting and quality-assured language builds.

Plan on re-distributing ActivePython?

Get re-distribution rights and eliminate legal risks with ActivePython OEM Edition.