Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gevent
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
gevent
Commits
98beba93
Commit
98beba93
authored
Jul 15, 2010
by
Denis Bilenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update README.rst
parent
554d5448
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
28 additions
and
65 deletions
+28
-65
README.rst
README.rst
+28
-65
No files found.
README.rst
View file @
98beba93
gevent
gevent
_
======
======
=
gevent is a coroutine_-based Python_ networking library that uses greenlet_ to provide
gevent_ is a Python networking library that uses greenlet_ to provide synchronous API on top of libevent_ event loop.
a high-level synchronous API on top of libevent_ event loop.
Features include:
Features include:
* convenient API around greenlets (gevent.Greenlet)
* Fast event loop based on libevent_.
* familiar synchronization primitives (gevent.event, gevent.queue)
* Lightweight execution units based on greenlet_.
* socket module that cooperates (gevent.socket)
* Familiar API that re-uses concepts from the Python standard library.
* WSGI server on top of libevent-http (gevent.wsgi)
* Cooperative sockets with ssl support.
* DNS requests done through libevent-dns
* DNS queries performed through libevent-dns.
* monkey patching utility to get pure Python modules to cooperate (gevent.monkey)
* Ability to use standard library and 3rd party modules written for standard blocking sockets
* Fast WSGI server based on libevent-http.
.. _coroutine: http://en.wikipedia.org/wiki/Coroutine
gevent_ is `inspired by eventlet`_ but features more consistent API, simpler implementation and better performance. Read why others `use gevent`_ and check out the list of the `open source projects based on gevent`_.
.. _Python: http://www.python.org
.. _greenlet: http://codespeak.net/py/0.9.2/greenlet.html
.. _libevent: http://monkey.org/~provos/libevent/
examples
--------
Browse ``examples/`` folder at bitbucket_ or `google code`_.
gevent_ is written and maintained by `Denis Bilenko`_ and is licensed under MIT license.
.. _bitbucket: http://bitbucket.org/denis/gevent/src/tip/examples/
.. _google code: http://code.google.com/p/gevent/source/browse/#hg/examples
documentation
-------------
Read the documentation online at http://www.gevent.org
get gevent
get gevent
----------
----------
The latest release is available on the `Python Package Index.`_
Install Python 2.4 or newer, greenlet and libevent.
.. _Python Package Index.: http://pypi.python.org/pypi/gevent
The current development version is available in a Mercurial repository:
* at bitbucket: http://bitbucket.org/denis/gevent/
* on google code: http://code.google.com/p/gevent/
installation
------------
Install the dependencies:
Download the latest release from `Python Package Index.`_
* greenlet: http://pypi.python.org/pypi/greenlet (it can be installed with ``easy_install greenlet``)
Read the documentation online at http://www.gevent.org
* libevent 1.4.x: http://monkey.org/~provos/libevent/
gevent runs on Python 2.4 and higher.
similar projects
----------------
* `Eventlet <http://blog.gevent.org/2010/02/27/why-gevent/>`_
* `Concurrence <http://opensource.hyves.org/concurrence/>`_
* `StacklessSocket <http://code.google.com/p/stacklessexamples/wiki/StacklessNetworking>`_
feedback
--------
Use `Issue Tracker on Google Code`__ for the bug reports / feature requests.
Comment on the `blog`_.
Send your questions and suggestions to the `mailing list
`_.
Post feedback and issues on the `bug tracker`_, `mailing list`_, blog_ and `twitter (@gevent)
`_.
Contact me directly at denis.bilenko@gmail.com.
__ http://code.google.com/p/gevent/issues/list
.. _gevent: http://www.gevent.org
.. _blog: http://blog.gevent.org
.. _greenlet: http://codespeak.net/py/0.9.2/greenlet.html
.. _libevent: http://monkey.org/~provos/libevent/
.. _inspired by eventlet: http://blog.gevent.org/2010/02/27/why-gevent/
.. _use gevent: http://groups.google.com/group/gevent/browse_thread/thread/4de9703e5dca8271
.. _open source projects based on gevent: http://code.google.com/p/gevent/wiki/ProjectsUsingGevent
.. _Denis Bilenko: http://denisbilenko.com
.. _Python Package Index.: http://pypi.python.org/pypi/gevent
.. _bug tracker: http://code.google.com/p/gevent/issues/list
.. _mailing list: http://groups.google.com/group/gevent
.. _mailing list: http://groups.google.com/group/gevent
.. _blog: http://blog.gevent.org
.. _twitter (@gevent): http://twitter.com/gevent
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment