Go to file
amajorek a1bfd4f717 Code simplification.
- generic forwarder written for socket and OpenSSL.SSL objects.
In OpenSSL.__init__ instead of overwriting methods on the object level
with GreenSSLConnection methods, these methods are deleted. After that regular class methods are visible.
Backdor forwarder changed to look simmilar to socket forwarder.
2010-03-22 23:08:01 -04:00
2010-02-23 21:23:23 -05:00
2010-03-01 23:30:35 -08:00
2010-03-22 23:08:01 -04:00
2010-03-01 23:30:35 -08:00
2010-02-24 20:27:09 -08:00
2010-03-04 16:10:44 -08:00
2010-02-20 15:07:31 -05:00
2010-02-25 18:19:51 -05:00
2010-02-21 13:43:09 -05:00

Getting Started
===============

There's some good documentation up at: http://eventlet.net/doc/

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()

Also, look at the examples in the examples directory.

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.
Description
RETIRED, further work has moved to Debian project infrastructure
Readme 4 MiB
Languages
Python 99.5%
Shell 0.4%
Thrift 0.1%