Add python-eventlet 0.16.1
[packages/trusty/python-eventlet.git] / eventlet / PKG-INFO
1 Metadata-Version: 1.1
2 Name: eventlet
3 Version: 0.16.1
4 Summary: Highly concurrent networking library
5 Home-page: http://eventlet.net
6 Author: Linden Lab
7 Author-email: eventletdev@lists.secondlife.com
8 License: UNKNOWN
9 Description: Eventlet is a concurrent networking library for Python that allows you to change how you run your code, not how you write it.
10         
11         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.
12         
13         It's easy to get started using Eventlet, and easy to convert existing
14         applications to use it.  Start off by looking at the `examples`_,
15         `common design patterns`_, and the list of `basic API primitives`_.
16         
17         .. _examples: http://eventlet.net/doc/examples.html
18         .. _common design patterns: http://eventlet.net/doc/design_patterns.html
19         .. _basic API primitives: http://eventlet.net/doc/basic_usage.html
20         
21         
22         Quick Example
23         ===============
24         
25         Here's something you can try right on the command line::
26         
27             % python
28             >>> import eventlet
29             >>> from eventlet.green import urllib2
30             >>> gt = eventlet.spawn(urllib2.urlopen, 'http://eventlet.net')
31             >>> gt2 = eventlet.spawn(urllib2.urlopen, 'http://secondlife.com')
32             >>> gt2.wait()
33             >>> gt.wait()
34         
35         
36         Getting Eventlet
37         ==================
38         
39         The easiest way to get Eventlet is to use pip::
40         
41           pip install eventlet
42         
43         The development `tip`_ is available as well::
44         
45           pip install 'eventlet==dev'
46         
47         .. _tip: http://bitbucket.org/eventlet/eventlet/get/tip.zip#egg=eventlet-dev
48         
49         
50         Building the Docs Locally
51         =========================
52         
53         To build a complete set of HTML documentation, you must have Sphinx, which can be found at http://sphinx.pocoo.org/ (or installed with `pip install Sphinx`)::
54         
55           cd doc
56           make html
57         
58         The built html files can be found in doc/_build/html afterward.
59         
60         
61         Twisted
62         =======
63         
64         Eventlet had Twisted hub in the past, but community interest to this integration has dropped over time,
65         now it is not supported, so with apologies for any inconvenience we discontinue Twisted integration.
66         
67         If you have a project that uses Eventlet with Twisted, your options are:
68         
69         * use last working release eventlet==0.14
70         * start a new project with only Twisted hub code, identify and fix problems. As of eventlet 0.13,
71         `EVENTLET_HUB` environment variable can point to external modules.
72         * fork Eventlet, revert Twisted removal, identify and fix problems. This work may be merged back into main project.
73         
74 Platform: UNKNOWN
75 Classifier: License :: OSI Approved :: MIT License
76 Classifier: Programming Language :: Python
77 Classifier: Operating System :: MacOS :: MacOS X
78 Classifier: Operating System :: POSIX
79 Classifier: Operating System :: Microsoft :: Windows
80 Classifier: Programming Language :: Python :: 2.6
81 Classifier: Programming Language :: Python :: 2.7
82 Classifier: Topic :: Internet
83 Classifier: Topic :: Software Development :: Libraries :: Python Modules
84 Classifier: Intended Audience :: Developers
85 Classifier: Development Status :: 4 - Beta