Adjust the package revision; no actual code changes
[packages/trusty/python-eventlet.git] / eventlet / PKG-INFO
1 Metadata-Version: 1.1
2 Name: eventlet
3 Version: 0.15.2
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 Platform: UNKNOWN
61 Classifier: License :: OSI Approved :: MIT License
62 Classifier: Programming Language :: Python
63 Classifier: Operating System :: MacOS :: MacOS X
64 Classifier: Operating System :: POSIX
65 Classifier: Operating System :: Microsoft :: Windows
66 Classifier: Programming Language :: Python :: 2.6
67 Classifier: Programming Language :: Python :: 2.7
68 Classifier: Topic :: Internet
69 Classifier: Topic :: Software Development :: Libraries :: Python Modules
70 Classifier: Intended Audience :: Developers
71 Classifier: Development Status :: 4 - Beta