Skip to main content

Coroutine-based network library

Project description

gevent

https://travis-ci.org/gevent/gevent.svg?branch=master https://ci.appveyor.com/api/projects/status/q4kl21ng2yo2ixur?svg=true https://coveralls.io/repos/gevent/gevent/badge.svg?branch=master&service=github

gevent is a coroutine -based Python networking library that uses greenlet to provide a high-level synchronous API on top of the libev or libuv event loop.

Features include:

gevent is inspired by eventlet but features a 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.

gevent was written by Denis Bilenko.

Since version 1.1, gevent is maintained by Jason Madden for NextThought with help from the contributors and is licensed under the MIT license.

See what’s new in the latest major release.

Check out the detailed changelog for this version.

Read the documentation online at http://www.gevent.org.

Post feedback and issues on the bug tracker, mailing list, blog and twitter (@gevent).

Installation and Requirements

Supported Platforms

gevent 1.3 runs on Python 2.7 and Python 3. Releases 3.4, 3.5 and 3.6 of Python 3 are supported. (Users of older versions of Python 2 need to install gevent 1.0.x (2.5), 1.1.x (2.6) or 1.2.x (<=2.7.8); gevent 1.2 can be installed on Python 3.3.) gevent requires the greenlet library and will install the cffi library by default on Windows.

gevent 1.3 also runs on PyPy 5.5 and above, although 5.9 or above is strongly recommended. On PyPy, there are no external dependencies.

gevent is tested on Windows, OS X, and Linux, and should run on most other Unix-like operating systems (e.g., FreeBSD, Solaris, etc.)

Installation

gevent and greenlet can both be installed with pip, e.g., pip install gevent. Installation using buildout is also supported.

On Windows, OS X, and Linux, both gevent and greenlet are distributed as binary wheels.

Installing From Source

If you are unable to use the binary wheels (for platforms where no pre-built wheels are available or if wheel installation is disabled, e.g., for libuv support on Linux), here are some things you need to know.

  • You can install gevent from source with pip install --no-binary gevent gevent.

  • You’ll need a working C compiler that can build Python extensions. On some platforms, you may need to install Python development packages.

  • Installing from source requires setuptools. This is installed automatically in virtual environments and by buildout. However, gevent uses PEP 496 environment markers in setup.py. Consequently, you’ll need a version of setuptools newer than 25 (mid 2016) to install gevent from source; a version that’s too old will produce a ValueError. Older versions of pipenv may also have issues installing gevent for this reason.

  • To build the libuv backend (which is required on Windows and optional elsewhere), or the CFFI-based libev backend, you must install cffi before attempting to install gevent on CPython (on PyPy this step is not necessary).

Common Installation Issues

The following are some common installation problems and solutions for those compiling gevent from source.

  • Some Linux distributions are now mounting their temporary directories with the noexec option. This can cause a standard pip install gevent to fail with an error like cannot run C compiled programs. One fix is to mount the temporary directory without that option. Another may be to use the --build option to pip install to specify another directory. See issue #570 and issue #612 for examples.

  • Also check for conflicts with environment variables like CFLAGS. For example, see Library Updates.

  • Users of a recent SmartOS release may need to customize the CPPFLAGS (the environment variable containing the default options for the C preprocessor) if they are using the libev shipped with gevent. See Operating Systems for more information.

  • If you see ValueError: ("Expected ',' or end-of-list in", "cffi >= 1.11.5 ; sys_platform == 'win32' and platform_python_implementation == 'CPython'", 'at', " ; sys_platform == 'win32' and platform_python_implementation == 'CPython'"), the version of setuptools is too old. Install a more recent version of setuptools.

Extra Dependencies

gevent has no runtime dependencies outside the standard library, greenlet and (on some platforms) cffi. However, there are a number of additional libraries that extend gevent’s functionality and will be used if they are available.

The psutil library is needed to monitor memory usage.

zope.event is highly recommended for configurable event support; it can be installed with the events extra, e.g., pip install gevent[events].

dnspython is required for the new pure-Python resolver, and on Python 2, so is idna. They can be installed with the dnspython extra.

Development

To install the latest development version:

pip install setuptools cffi 'cython>=0.28' git+git://github.com/gevent/gevent.git#egg=gevent

To hack on gevent (using a virtualenv):

$ git clone https://github.com/gevent/gevent.git
$ cd gevent
$ virtualenv env
$ source env/bin/activate
(env) $ pip install -r dev-requirements.txt

Running Tests

There are a few different ways to run the tests. To simply run the tests on one version of Python during development, begin with the above instructions to install gevent in a virtual environment and then run:

(env) $ cd src/greentest
(env) $ python ./testrunner.py

Before submitting a pull request, it’s a good idea to run the tests across all supported versions of Python, and to check the code quality using prospector. This is what is done on Travis CI. Locally it can be done using tox:

pip install tox
tox

The testrunner accepts a --coverage argument to enable code coverage metrics through the coverage.py package. That would go something like this:

cd src/greentest
python testrunner.py --coverage
coverage combine
coverage html -i
<open htmlcov/index.html>

Continuous integration

A test suite is run for every push and pull request submitted. Travis CI is used to test on Linux, and AppVeyor runs the builds on Windows.

https://travis-ci.org/gevent/gevent.svg?branch=master https://ci.appveyor.com/api/projects/status/q4kl21ng2yo2ixur?svg=true

Builds on Travis CI automatically submit updates to coveralls.io to monitor test coverage.

https://coveralls.io/repos/gevent/gevent/badge.svg?branch=master&service=github

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

gevent-1.3.7.tar.gz (4.6 MB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

gevent-1.3.7-pp260-pypy_41-macosx_10_14_x86_64.whl (699.2 kB view details)

Uploaded PyPymacOS 10.14+ x86-64

gevent-1.3.7-pp259-pypy_41-win32.whl (676.5 kB view details)

Uploaded PyPyWindows x86

gevent-1.3.7-cp37-cp37m-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.7mWindows x86-64

gevent-1.3.7-cp37-cp37m-manylinux1_x86_64.whl (4.5 MB view details)

Uploaded CPython 3.7m

gevent-1.3.7-cp37-cp37m-macosx_10_9_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

gevent-1.3.7-cp36-cp36m-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.6mWindows x86-64

gevent-1.3.7-cp36-cp36m-win32.whl (2.0 MB view details)

Uploaded CPython 3.6mWindows x86

gevent-1.3.7-cp36-cp36m-manylinux1_x86_64.whl (4.5 MB view details)

Uploaded CPython 3.6m

gevent-1.3.7-cp36-cp36m-macosx_10_6_intel.whl (3.3 MB view details)

Uploaded CPython 3.6mmacOS 10.6+ Intel (x86-64, i386)

gevent-1.3.7-cp35-cp35m-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.5mWindows x86-64

gevent-1.3.7-cp35-cp35m-win32.whl (1.9 MB view details)

Uploaded CPython 3.5mWindows x86

gevent-1.3.7-cp35-cp35m-manylinux1_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.5m

gevent-1.3.7-cp35-cp35m-macosx_10_6_intel.whl (3.2 MB view details)

Uploaded CPython 3.5mmacOS 10.6+ Intel (x86-64, i386)

gevent-1.3.7-cp34-cp34m-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.4mWindows x86-64

gevent-1.3.7-cp34-cp34m-win32.whl (2.0 MB view details)

Uploaded CPython 3.4mWindows x86

gevent-1.3.7-cp34-cp34m-manylinux1_x86_64.whl (4.5 MB view details)

Uploaded CPython 3.4m

gevent-1.3.7-cp34-cp34m-macosx_10_6_intel.whl (3.2 MB view details)

Uploaded CPython 3.4mmacOS 10.6+ Intel (x86-64, i386)

gevent-1.3.7-cp27-cp27mu-manylinux1_x86_64.whl (4.2 MB view details)

Uploaded CPython 2.7mu

gevent-1.3.7-cp27-cp27m-win_amd64.whl (2.1 MB view details)

Uploaded CPython 2.7mWindows x86-64

gevent-1.3.7-cp27-cp27m-win32.whl (2.0 MB view details)

Uploaded CPython 2.7mWindows x86

gevent-1.3.7-cp27-cp27m-manylinux1_x86_64.whl (4.2 MB view details)

Uploaded CPython 2.7m

gevent-1.3.7-cp27-cp27m-macosx_10_9_x86_64.whl (2.3 MB view details)

Uploaded CPython 2.7mmacOS 10.9+ x86-64

File details

Details for the file gevent-1.3.7.tar.gz.

File metadata

  • Download URL: gevent-1.3.7.tar.gz
  • Upload date:
  • Size: 4.6 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/3.6.6

File hashes

Hashes for gevent-1.3.7.tar.gz
Algorithm Hash digest
SHA256 3f06f4802824c577272960df003a304ce95b3e82eea01dad2637cc8609c80e2c
MD5 5d3f61ef4bb40fdbd5cbaac7f0d2e585
BLAKE2b-256 10c19499b146bfa43aa4f1e0ed1bab1bd3209a4861d25650c11725036c731cf5

See more details on using hashes here.

File details

Details for the file gevent-1.3.7-pp260-pypy_41-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: gevent-1.3.7-pp260-pypy_41-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 699.2 kB
  • Tags: PyPy, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/3.6.6

File hashes

Hashes for gevent-1.3.7-pp260-pypy_41-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 298a04a334fb5e3dcd6f89d063866a09155da56041bc94756da59db412cb45b1
MD5 d9e049098fd03c1487b9a9253bbb3bfb
BLAKE2b-256 f0fa753b88439e7431e42607f6710f51fe95ebafa02321c5d3a98956b84f97de

See more details on using hashes here.

File details

Details for the file gevent-1.3.7-pp259-pypy_41-win32.whl.

File metadata

  • Download URL: gevent-1.3.7-pp259-pypy_41-win32.whl
  • Upload date:
  • Size: 676.5 kB
  • Tags: PyPy, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/3.6.6

File hashes

Hashes for gevent-1.3.7-pp259-pypy_41-win32.whl
Algorithm Hash digest
SHA256 d26b57c50bf52fb38dadf3df5bbecd2236f49d7ac98f3cf32d6b8a2d25afc27f
MD5 181dde02c4b7e7e1ca24ab4776672eb0
BLAKE2b-256 8e8d0c6fdb9fcf53c1836206d2b9d568ab9226e539dbbf67e790b1265c473285

See more details on using hashes here.

File details

Details for the file gevent-1.3.7-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: gevent-1.3.7-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/3.6.6

File hashes

Hashes for gevent-1.3.7-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 640b3b52121ab519e0980cb38b572df0d2bc76941103a697e828c13d76ac8836
MD5 cea7efbb60c6776f9920de5894550600
BLAKE2b-256 126c5a6589f1f469dd919e110536a5f5b8f454df00f4f7ef1f5d78fa7e8ff779

See more details on using hashes here.

File details

Details for the file gevent-1.3.7-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

  • Download URL: gevent-1.3.7-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 4.5 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/3.6.6

File hashes

Hashes for gevent-1.3.7-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 ac0331d3a3289a3d16627742be9c8969f293740a31efdedcd9087dadd6b2da57
MD5 10c3b6ce5c3ce2b89ffa87ddb4b3de80
BLAKE2b-256 79b0491992147fa75230356ea0348f387504debb2b31ca4313b480e4bcc9a828

See more details on using hashes here.

File details

Details for the file gevent-1.3.7-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: gevent-1.3.7-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/3.6.6

File hashes

Hashes for gevent-1.3.7-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a94e197bd9667834f7bb6bd8dff1736fab68619d0f8cd78a9c1cebe3c4944677
MD5 a59b6f4b62967089438a6d95cf14ee9e
BLAKE2b-256 04fdd59d5d4ce1e599d1a9bbfe651cb08a0e7db8ce82e96abacbe78184351b39

See more details on using hashes here.

File details

Details for the file gevent-1.3.7-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: gevent-1.3.7-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/3.6.6

File hashes

Hashes for gevent-1.3.7-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 4ea938f44b882e02cca9583069d38eb5f257cc15a03e918980c307e7739b1038
MD5 b710a65865c8d577c7b4053466c3aeb6
BLAKE2b-256 96077175f1c519c92ea58d15c36f52421ba5456bf46a28b1c2080dfdd72a93e2

See more details on using hashes here.

File details

Details for the file gevent-1.3.7-cp36-cp36m-win32.whl.

File metadata

  • Download URL: gevent-1.3.7-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/3.6.6

File hashes

Hashes for gevent-1.3.7-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 6004512833707a1877cc1a5aea90fd182f569e089bc9ab22a81d480dad018f1b
MD5 2c6a7d1d3e0b78a179d605c3c489529a
BLAKE2b-256 fc10e43274249b35e400740ab0fcab787a5f6968412edb64cd3565f30c97735a

See more details on using hashes here.

File details

Details for the file gevent-1.3.7-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

  • Download URL: gevent-1.3.7-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 4.5 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/3.6.6

File hashes

Hashes for gevent-1.3.7-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 5bf9bd1dd4951552d9207af3168f420575e3049016b9c10fe0c96760ce3555b7
MD5 71250a65361f32ac4eb150363ce56373
BLAKE2b-256 0be58bbad57fa8a565e04c696e3413d4051cc3cbb40d04c5d6ad9808ba991d5c

See more details on using hashes here.

File details

Details for the file gevent-1.3.7-cp36-cp36m-macosx_10_6_intel.whl.

File metadata

  • Download URL: gevent-1.3.7-cp36-cp36m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.6m, macOS 10.6+ Intel (x86-64, i386)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/3.6.6

File hashes

Hashes for gevent-1.3.7-cp36-cp36m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 8465f84ba31aaf52a080837e9c5ddd592ab0a21dfda3212239ce1e1796f4d503
MD5 c42fd04ef394f461631c9aba704b0210
BLAKE2b-256 fb6051e8914e51755095bb513f666fb25a9a52ed69fdda18ff199fe2041a46f3

See more details on using hashes here.

File details

Details for the file gevent-1.3.7-cp35-cp35m-win_amd64.whl.

File metadata

  • Download URL: gevent-1.3.7-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/3.7.0

File hashes

Hashes for gevent-1.3.7-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 71eeb8d9146e8131b65c3364bb760b097c21b7b9fdbec91bf120685a510f997a
MD5 4d3dab32ab7036304b6d38f0da320521
BLAKE2b-256 42f1bd0dcc24a850caf49daddd23c9149772cdeff4cf5d821601ce8656e89d67

See more details on using hashes here.

File details

Details for the file gevent-1.3.7-cp35-cp35m-win32.whl.

File metadata

  • Download URL: gevent-1.3.7-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/3.6.6

File hashes

Hashes for gevent-1.3.7-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 6951655cc18b8371d823e81c700883debb0f633aae76f425dfeb240f76b95a67
MD5 d3ee44a617c9a238517f0e1a59443e5f
BLAKE2b-256 73773359ffd56920e48b45a79c240664f8619167b70124f87e711a89d310c632

See more details on using hashes here.

File details

Details for the file gevent-1.3.7-cp35-cp35m-manylinux1_x86_64.whl.

File metadata

  • Download URL: gevent-1.3.7-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 4.4 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/3.6.6

File hashes

Hashes for gevent-1.3.7-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 33533bc5c6522883e4437e901059fe5afa3ea74287eeea27a130494ff130e731
MD5 45b265fe2811ff3217fa6f611ac9c967
BLAKE2b-256 87c49afb40b4a8b9186787d477aa6ebcfa17ead40ecbf83d5a1ed53dadd4f6ef

See more details on using hashes here.

File details

Details for the file gevent-1.3.7-cp35-cp35m-macosx_10_6_intel.whl.

File metadata

  • Download URL: gevent-1.3.7-cp35-cp35m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.5m, macOS 10.6+ Intel (x86-64, i386)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/3.6.6

File hashes

Hashes for gevent-1.3.7-cp35-cp35m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 9fa4284b44bc42bef6e437488d000ae37499ccee0d239013465638504c4565b7
MD5 7bfb8834e9e7a13a879ce6fecdebf008
BLAKE2b-256 78b9fd72291f3be50828f0d42ebad55fd2947695b4b9585cd08370b2ad76fb58

See more details on using hashes here.

File details

Details for the file gevent-1.3.7-cp34-cp34m-win_amd64.whl.

File metadata

  • Download URL: gevent-1.3.7-cp34-cp34m-win_amd64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.4m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/3.6.6

File hashes

Hashes for gevent-1.3.7-cp34-cp34m-win_amd64.whl
Algorithm Hash digest
SHA256 51143a479965e3e634252a0f4a1ea07e5307cf8dc773ef6bf9dfe6741785fb4c
MD5 c29dbfa909d4034d2d87e45bc471aaf0
BLAKE2b-256 f0a3809e956fd2de806b20558373c3a38bf70d250e33df8d2c110263468d50ab

See more details on using hashes here.

File details

Details for the file gevent-1.3.7-cp34-cp34m-win32.whl.

File metadata

  • Download URL: gevent-1.3.7-cp34-cp34m-win32.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.4m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/3.6.6

File hashes

Hashes for gevent-1.3.7-cp34-cp34m-win32.whl
Algorithm Hash digest
SHA256 fd23b27387d76410eb6a01ea13efc7d8b4b95974ba212c336e8b1d6ab45a9578
MD5 fa493d70ba57db3b993349d2eef1fefa
BLAKE2b-256 854ecf6fb3f8319cfa6c34639d758ec912c6ca0b1c3c87a1eb344f68614180c1

See more details on using hashes here.

File details

Details for the file gevent-1.3.7-cp34-cp34m-manylinux1_x86_64.whl.

File metadata

  • Download URL: gevent-1.3.7-cp34-cp34m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 4.5 MB
  • Tags: CPython 3.4m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/3.6.6

File hashes

Hashes for gevent-1.3.7-cp34-cp34m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 99de2e38dde8669dd30a8a1261bdb39caee6bd00a5f928d01dfdb85ab0502562
MD5 2602efcd60b59590f068462ac72bf75c
BLAKE2b-256 0380be1a10c8a4c81c82ac99c770a10cef46392056951938bcc0faf9f14b72a7

See more details on using hashes here.

File details

Details for the file gevent-1.3.7-cp34-cp34m-macosx_10_6_intel.whl.

File metadata

  • Download URL: gevent-1.3.7-cp34-cp34m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.4m, macOS 10.6+ Intel (x86-64, i386)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/3.6.6

File hashes

Hashes for gevent-1.3.7-cp34-cp34m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 30e9b2878d5b57c68a40b3a08d496bcdaefc79893948989bb9b9fab087b3f3c0
MD5 66b154c07f7a039335ed911996064323
BLAKE2b-256 c922d8c7aad90058f594d2874fdbb7d8e3c8555b8faf245e829224017e28c1cd

See more details on using hashes here.

File details

Details for the file gevent-1.3.7-cp27-cp27mu-manylinux1_x86_64.whl.

File metadata

  • Download URL: gevent-1.3.7-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 4.2 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/3.6.6

File hashes

Hashes for gevent-1.3.7-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 a66a26b78d90d7c4e9bf9efb2b2bd0af49234604ac52eaca03ea79ac411e3f6d
MD5 521f52c2332ed797461d0918d1af511a
BLAKE2b-256 404f222cefc08c1ffda69454908496e46c32f7b82da30ade4861178c6a72405e

See more details on using hashes here.

File details

Details for the file gevent-1.3.7-cp27-cp27m-win_amd64.whl.

File metadata

  • Download URL: gevent-1.3.7-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 2.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/3.6.6

File hashes

Hashes for gevent-1.3.7-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 a1beea0443d3404c03e069d4c4d9fc13d8ec001771c77f9a23f01911a41f0e49
MD5 60a1c7aeead8d662c6238179e55926c0
BLAKE2b-256 5b63696d929980ce52b390d73099b69068abe506ef215a05f2c99719deb5dad3

See more details on using hashes here.

File details

Details for the file gevent-1.3.7-cp27-cp27m-win32.whl.

File metadata

  • Download URL: gevent-1.3.7-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 2.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/3.6.6

File hashes

Hashes for gevent-1.3.7-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 1f277c5cf060b30313c5f9b91588f4c645e11839e14a63c83fcf6f24b1bc9b95
MD5 cd766df03216d6385c1ceb65cfe218d9
BLAKE2b-256 1333b5a0b368abef392fe62580edbfe83ffb7506b5bf56a58ba08f4a4a8c714c

See more details on using hashes here.

File details

Details for the file gevent-1.3.7-cp27-cp27m-manylinux1_x86_64.whl.

File metadata

  • Download URL: gevent-1.3.7-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 4.2 MB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/3.6.6

File hashes

Hashes for gevent-1.3.7-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 7c899e5a6f94d6310352716740f05e41eb8c52d995f27fc01e90380913aa8f22
MD5 ac828cf0675ef88fa9483ff03906647b
BLAKE2b-256 5652b163ee286c0b25fd6955ee44badddcfb6c29d66bd82f63d5e87282b62485

See more details on using hashes here.

File details

Details for the file gevent-1.3.7-cp27-cp27m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: gevent-1.3.7-cp27-cp27m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 2.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/3.6.6

File hashes

Hashes for gevent-1.3.7-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 419fd562e4b94b91b58cccb3bd3f17e1a11f6162fca6c591a7822bc8a68f023d
MD5 5711ee301cff9f4be7128585a6108f17
BLAKE2b-256 309577a31ece382bbc5bda5564a03cf5705c8587ee2c5b7d2ba9ecf5f37044e3

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page