Code import
This commit is contained in:
@@ -0,0 +1,59 @@
|
||||
.. image:: https://secure.travis-ci.org/python-greenlet/greenlet.png
|
||||
:target: http://travis-ci.org/python-greenlet/greenlet
|
||||
|
||||
The greenlet package is a spin-off of Stackless, a version of CPython
|
||||
that supports micro-threads called "tasklets". Tasklets run
|
||||
pseudo-concurrently (typically in a single or a few OS-level threads)
|
||||
and are synchronized with data exchanges on "channels".
|
||||
|
||||
A "greenlet", on the other hand, is a still more primitive notion of
|
||||
micro-thread with no implicit scheduling; coroutines, in other
|
||||
words. This is useful when you want to control exactly when your code
|
||||
runs. You can build custom scheduled micro-threads on top of greenlet;
|
||||
however, it seems that greenlets are useful on their own as a way to
|
||||
make advanced control flow structures. For example, we can recreate
|
||||
generators; the difference with Python's own generators is that our
|
||||
generators can call nested functions and the nested functions can
|
||||
yield values too. Additionally, you don't need a "yield" keyword. See
|
||||
the example in tests/test_generator.py.
|
||||
|
||||
Greenlets are provided as a C extension module for the regular
|
||||
unmodified interpreter.
|
||||
|
||||
Greenlets are lightweight coroutines for in-process concurrent
|
||||
programming.
|
||||
|
||||
Who is using Greenlet?
|
||||
======================
|
||||
|
||||
There are several libraries that use Greenlet as a more flexible
|
||||
alternative to Python's built in coroutine support:
|
||||
|
||||
- `Concurrence`_
|
||||
- `Eventlet`_
|
||||
- `Gevent`_
|
||||
|
||||
.. _Concurrence: http://opensource.hyves.org/concurrence/
|
||||
.. _Eventlet: http://eventlet.net/
|
||||
.. _Gevent: http://www.gevent.org/
|
||||
|
||||
Getting Greenlet
|
||||
================
|
||||
|
||||
The easiest way to get Greenlet is to install it with pip or
|
||||
easy_install::
|
||||
|
||||
pip install greenlet
|
||||
easy_install greenlet
|
||||
|
||||
|
||||
Source code archives and windows installers are available on the
|
||||
python package index at https://pypi.python.org/pypi/greenlet
|
||||
|
||||
The source code repository is hosted on github:
|
||||
https://github.com/python-greenlet/greenlet
|
||||
|
||||
Documentation is available on readthedocs.org:
|
||||
https://greenlet.readthedocs.io
|
||||
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
pip
|
||||
@@ -0,0 +1,89 @@
|
||||
Metadata-Version: 2.0
|
||||
Name: greenlet
|
||||
Version: 0.4.12
|
||||
Summary: Lightweight in-process concurrent programming
|
||||
Home-page: https://github.com/python-greenlet/greenlet
|
||||
Author: Alexey Borzenkov
|
||||
Author-email: snaury@gmail.com
|
||||
License: MIT License
|
||||
Platform: any
|
||||
Classifier: Intended Audience :: Developers
|
||||
Classifier: License :: OSI Approved :: MIT License
|
||||
Classifier: Natural Language :: English
|
||||
Classifier: Programming Language :: C
|
||||
Classifier: Programming Language :: Python
|
||||
Classifier: Programming Language :: Python :: 2
|
||||
Classifier: Programming Language :: Python :: 2.4
|
||||
Classifier: Programming Language :: Python :: 2.5
|
||||
Classifier: Programming Language :: Python :: 2.6
|
||||
Classifier: Programming Language :: Python :: 2.7
|
||||
Classifier: Programming Language :: Python :: 3
|
||||
Classifier: Programming Language :: Python :: 3.0
|
||||
Classifier: Programming Language :: Python :: 3.1
|
||||
Classifier: Programming Language :: Python :: 3.2
|
||||
Classifier: Programming Language :: Python :: 3.3
|
||||
Classifier: Programming Language :: Python :: 3.4
|
||||
Classifier: Programming Language :: Python :: 3.5
|
||||
Classifier: Programming Language :: Python :: 3.6
|
||||
Classifier: Operating System :: OS Independent
|
||||
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
||||
|
||||
.. image:: https://secure.travis-ci.org/python-greenlet/greenlet.png
|
||||
:target: http://travis-ci.org/python-greenlet/greenlet
|
||||
|
||||
The greenlet package is a spin-off of Stackless, a version of CPython
|
||||
that supports micro-threads called "tasklets". Tasklets run
|
||||
pseudo-concurrently (typically in a single or a few OS-level threads)
|
||||
and are synchronized with data exchanges on "channels".
|
||||
|
||||
A "greenlet", on the other hand, is a still more primitive notion of
|
||||
micro-thread with no implicit scheduling; coroutines, in other
|
||||
words. This is useful when you want to control exactly when your code
|
||||
runs. You can build custom scheduled micro-threads on top of greenlet;
|
||||
however, it seems that greenlets are useful on their own as a way to
|
||||
make advanced control flow structures. For example, we can recreate
|
||||
generators; the difference with Python's own generators is that our
|
||||
generators can call nested functions and the nested functions can
|
||||
yield values too. Additionally, you don't need a "yield" keyword. See
|
||||
the example in tests/test_generator.py.
|
||||
|
||||
Greenlets are provided as a C extension module for the regular
|
||||
unmodified interpreter.
|
||||
|
||||
Greenlets are lightweight coroutines for in-process concurrent
|
||||
programming.
|
||||
|
||||
Who is using Greenlet?
|
||||
======================
|
||||
|
||||
There are several libraries that use Greenlet as a more flexible
|
||||
alternative to Python's built in coroutine support:
|
||||
|
||||
- `Concurrence`_
|
||||
- `Eventlet`_
|
||||
- `Gevent`_
|
||||
|
||||
.. _Concurrence: http://opensource.hyves.org/concurrence/
|
||||
.. _Eventlet: http://eventlet.net/
|
||||
.. _Gevent: http://www.gevent.org/
|
||||
|
||||
Getting Greenlet
|
||||
================
|
||||
|
||||
The easiest way to get Greenlet is to install it with pip or
|
||||
easy_install::
|
||||
|
||||
pip install greenlet
|
||||
easy_install greenlet
|
||||
|
||||
|
||||
Source code archives and windows installers are available on the
|
||||
python package index at https://pypi.python.org/pypi/greenlet
|
||||
|
||||
The source code repository is hosted on github:
|
||||
https://github.com/python-greenlet/greenlet
|
||||
|
||||
Documentation is available on readthedocs.org:
|
||||
https://greenlet.readthedocs.io
|
||||
|
||||
|
||||
@@ -0,0 +1,9 @@
|
||||
greenlet.so,sha256=O9HuukD8RVpznVKh2vLR6F1N3kun23STVOWjjRPG_5c,97927
|
||||
../../../include/site/python2.7/greenlet/greenlet.h,sha256=AtK_A0v-unMkbHBoAI_3AOZiKX5rLII-ABikR827Bu4,3799
|
||||
greenlet-0.4.12.dist-info/top_level.txt,sha256=YSnRsCRoO61JGlP57o8iKL6rdLWDWuiyKD8ekpWUsDc,9
|
||||
greenlet-0.4.12.dist-info/WHEEL,sha256=K393SHwcz7KWfaAX1vI5Mn-fHxOX6ngCsqegCXacWE8,110
|
||||
greenlet-0.4.12.dist-info/metadata.json,sha256=_M5goG3idtrAcvDgY8solurqMWqLg2H8VRAvwFR4hqA,1283
|
||||
greenlet-0.4.12.dist-info/RECORD,,
|
||||
greenlet-0.4.12.dist-info/DESCRIPTION.rst,sha256=MRmRjfMbsGhGJ_hh6l0Ez7F9afqQE9FIEnzbmrGYXJY,2009
|
||||
greenlet-0.4.12.dist-info/METADATA,sha256=-PF10YG2JFZG973q54TQNCDu5tFNPI-hT3_5gnrdJGg,3246
|
||||
greenlet-0.4.12.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
|
||||
@@ -0,0 +1,5 @@
|
||||
Wheel-Version: 1.0
|
||||
Generator: bdist_wheel (0.29.0)
|
||||
Root-Is-Purelib: false
|
||||
Tag: cp27-cp27mu-manylinux1_x86_64
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
{"classifiers": ["Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Natural Language :: English", "Programming Language :: C", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.4", "Programming Language :: Python :: 2.5", "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.0", "Programming Language :: Python :: 3.1", "Programming Language :: Python :: 3.2", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Operating System :: OS Independent", "Topic :: Software Development :: Libraries :: Python Modules"], "extensions": {"python.details": {"contacts": [{"email": "snaury@gmail.com", "name": "Alexey Borzenkov", "role": "author"}], "document_names": {"description": "DESCRIPTION.rst"}, "project_urls": {"Home": "https://github.com/python-greenlet/greenlet"}}}, "generator": "bdist_wheel (0.29.0)", "license": "MIT License", "metadata_version": "2.0", "name": "greenlet", "platform": "any", "summary": "Lightweight in-process concurrent programming", "version": "0.4.12"}
|
||||
@@ -0,0 +1 @@
|
||||
greenlet
|
||||
Reference in New Issue
Block a user