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) $ python -mgevent.tests

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:

python -m gevent.tests --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

This version

1.4.0

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.4.0.tar.gz (5.2 MB view details)

Uploaded Source

Built Distributions

gevent-1.4.0-pp260-pypy_41-win32.whl (1.1 MB view details)

Uploaded PyPy Windows x86

gevent-1.4.0-pp260-pypy_41-macosx_10_14_x86_64.whl (1.2 MB view details)

Uploaded PyPy macOS 10.14+ x86-64

gevent-1.4.0-cp37-cp37m-win_amd64.whl (3.0 MB view details)

Uploaded CPython 3.7m Windows x86-64

gevent-1.4.0-cp37-cp37m-win32.whl (2.8 MB view details)

Uploaded CPython 3.7m Windows x86

gevent-1.4.0-cp37-cp37m-manylinux1_x86_64.whl (5.4 MB view details)

Uploaded CPython 3.7m

gevent-1.4.0-cp37-cp37m-macosx_10_9_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

gevent-1.4.0-cp36-cp36m-win_amd64.whl (3.0 MB view details)

Uploaded CPython 3.6m Windows x86-64

gevent-1.4.0-cp36-cp36m-win32.whl (2.8 MB view details)

Uploaded CPython 3.6m Windows x86

gevent-1.4.0-cp36-cp36m-manylinux1_x86_64.whl (5.5 MB view details)

Uploaded CPython 3.6m

gevent-1.4.0-cp36-cp36m-macosx_10_6_intel.whl (4.2 MB view details)

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

gevent-1.4.0-cp35-cp35m-win_amd64.whl (2.9 MB view details)

Uploaded CPython 3.5m Windows x86-64

gevent-1.4.0-cp35-cp35m-win32.whl (2.8 MB view details)

Uploaded CPython 3.5m Windows x86

gevent-1.4.0-cp35-cp35m-manylinux1_x86_64.whl (5.4 MB view details)

Uploaded CPython 3.5m

gevent-1.4.0-cp34-cp34m-win_amd64.whl (3.0 MB view details)

Uploaded CPython 3.4m Windows x86-64

gevent-1.4.0-cp34-cp34m-win32.whl (2.8 MB view details)

Uploaded CPython 3.4m Windows x86

gevent-1.4.0-cp34-cp34m-manylinux1_x86_64.whl (5.3 MB view details)

Uploaded CPython 3.4m

gevent-1.4.0-cp34-cp34m-macosx_10_14_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.4m macOS 10.14+ x86-64

gevent-1.4.0-cp27-cp27mu-manylinux1_x86_64.whl (5.0 MB view details)

Uploaded CPython 2.7mu

gevent-1.4.0-cp27-cp27m-win_amd64.whl (3.0 MB view details)

Uploaded CPython 2.7m Windows x86-64

gevent-1.4.0-cp27-cp27m-win32.whl (2.8 MB view details)

Uploaded CPython 2.7m Windows x86

gevent-1.4.0-cp27-cp27m-manylinux1_x86_64.whl (5.0 MB view details)

Uploaded CPython 2.7m

gevent-1.4.0-cp27-cp27m-macosx_10_9_x86_64.whl (3.1 MB view details)

Uploaded CPython 2.7m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: gevent-1.4.0.tar.gz
  • Upload date:
  • Size: 5.2 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/40.6.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.15

File hashes

Hashes for gevent-1.4.0.tar.gz
Algorithm Hash digest
SHA256 1eb7fa3b9bd9174dfe9c3b59b7a09b768ecd496debfc4976a9530a3e15c990d1
MD5 6b9dd98917061803d9158e5258b8f412
BLAKE2b-256 ed276c49b70808f569b66ec7fac2e78f076e9b204db9cf5768740cff3d5a07ae

See more details on using hashes here.

File details

Details for the file gevent-1.4.0-pp260-pypy_41-win32.whl.

File metadata

  • Download URL: gevent-1.4.0-pp260-pypy_41-win32.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: PyPy, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/40.6.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.15

File hashes

Hashes for gevent-1.4.0-pp260-pypy_41-win32.whl
Algorithm Hash digest
SHA256 28a0c5417b464562ab9842dd1fb0cc1524e60494641d973206ec24d6ec5f6909
MD5 ee821c365ab62fa8690d7ec69a953e84
BLAKE2b-256 5537e965d5e8a579214fd0956054bef78dc15293724477f118f6239f4a3def85

See more details on using hashes here.

File details

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

File metadata

  • Download URL: gevent-1.4.0-pp260-pypy_41-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: PyPy, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/40.6.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.15

File hashes

Hashes for gevent-1.4.0-pp260-pypy_41-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 107f4232db2172f7e8429ed7779c10f2ed16616d75ffbe77e0e0c3fcdeb51a51
MD5 26cf3a6afc24d05783666a5826f81f3b
BLAKE2b-256 1eab12b4fc120c035d646f78507a5bb6aa98a74f59510a0cd4827e3d65c047e9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: gevent-1.4.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/40.6.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.15

File hashes

Hashes for gevent-1.4.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 896b2b80931d6b13b5d9feba3d4eebc67d5e6ec54f0cf3339d08487d55d93b0e
MD5 5686f54b9fe2369304d52d006568392f
BLAKE2b-256 8add417aad4e69fa7f8882534b778c46cb28eb0421ffa1e924ec3b4efcfcc81f

See more details on using hashes here.

File details

Details for the file gevent-1.4.0-cp37-cp37m-win32.whl.

File metadata

  • Download URL: gevent-1.4.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/40.6.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.15

File hashes

Hashes for gevent-1.4.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 ab4dc33ef0e26dc627559786a4fba0c2227f125db85d970abbf85b77506b3f51
MD5 fd0e3a7e9b0039e5f2dfdb0de69e3e11
BLAKE2b-256 a85bb3bdf4f166c70fa58f558b6e84874f377881973010dd9bea2b02138d4161

See more details on using hashes here.

File details

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

File metadata

  • Download URL: gevent-1.4.0-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 5.4 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/40.6.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.15

File hashes

Hashes for gevent-1.4.0-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 4bfa291e3c931ff3c99a349d8857605dca029de61d74c6bb82bd46373959c942
MD5 c0faf2668d8dce8f26fce7548a72a0bb
BLAKE2b-256 d48957b63d6d7967d8763b913172bf6831afb01951b9ed9da127f2938a365585

See more details on using hashes here.

File details

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

File metadata

  • Download URL: gevent-1.4.0-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/40.6.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.15

File hashes

Hashes for gevent-1.4.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 50024a1ee2cf04645535c5ebaeaa0a60c5ef32e262da981f4be0546b26791950
MD5 dcbd58af25d2015c3a1d838ac247a1d5
BLAKE2b-256 8fe86bb46c451d881d02216d2219374ef69853b78d52194f622d474d49efe2ce

See more details on using hashes here.

File details

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

File metadata

  • Download URL: gevent-1.4.0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/40.6.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.15

File hashes

Hashes for gevent-1.4.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 9f7a1e96fec45f70ad364e46de32ccacab4d80de238bd3c2edd036867ccd48ad
MD5 6e28a5969dd64627a3f11c77a9b89639
BLAKE2b-256 51972e1e8aa7ea27171c3e249480d382e78b49ab4cead5dafb2124d2a1b58a83

See more details on using hashes here.

File details

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

File metadata

  • Download URL: gevent-1.4.0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/40.6.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.15

File hashes

Hashes for gevent-1.4.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 e5bcc4270671936349249d26140c267397b7b4b1381f5ec8b13c53c5b53ab6e1
MD5 38ccca334fffe93df7eda9dd8206842b
BLAKE2b-256 97b5f36815adff4fb5160261d9cb6b874340093c7c2a99aac3d782cde20b4802

See more details on using hashes here.

File details

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

File metadata

  • Download URL: gevent-1.4.0-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 5.5 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/40.6.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.15

File hashes

Hashes for gevent-1.4.0-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 2711e69788ddb34c059a30186e05c55a6b611cb9e34ac343e69cf3264d42fe1c
MD5 d40eba909d59b1aea89d14d4cee89b9d
BLAKE2b-256 f2ca5b5962361ed832847b6b2f9a2d0452c8c2f29a93baef850bb8ad067c7bf9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: gevent-1.4.0-cp36-cp36m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 4.2 MB
  • Tags: CPython 3.6m, macOS 10.6+ Intel (x86-64, i386)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/40.6.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.15

File hashes

Hashes for gevent-1.4.0-cp36-cp36m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 8d9ec51cc06580f8c21b41fd3f2b3465197ba5b23c00eb7d422b7ae0380510b0
MD5 9080bcf8a41e0d0cc0ce3e603f3e18c3
BLAKE2b-256 6c49681ec1026fe0313d1c6f00a58416f9ade121911f2fd55023e3e7cbd7803f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: gevent-1.4.0-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/40.6.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.15

File hashes

Hashes for gevent-1.4.0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 53b72385857e04e7faca13c613c07cab411480822ac658d97fd8a4ddbaf715c8
MD5 fd3dd8a2d8b094779f41150501f4dc75
BLAKE2b-256 a589c354ae1c82411c61a46acbdb1a6e539fe78bf8e0cb5676bb550b8174ff6a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: gevent-1.4.0-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/40.6.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.15

File hashes

Hashes for gevent-1.4.0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 14b4d06d19d39a440e72253f77067d27209c67e7611e352f79fe69e0f618f76e
MD5 fd2d2cd796bdcfd4133d0039d631ff5b
BLAKE2b-256 af5e2d3990871f531d6130c9693d08a64d7b989667eb62c4b704af6ce98121ea

See more details on using hashes here.

File details

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

File metadata

  • Download URL: gevent-1.4.0-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 5.4 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/40.6.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.15

File hashes

Hashes for gevent-1.4.0-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 7d0809e2991c9784eceeadef01c27ee6a33ca09ebba6154317a257353e3af922
MD5 7fb175d221b1ba520aa7631cabeec353
BLAKE2b-256 95d2f2f454b00fde1608f6f4889c8cc3e12b5000f26cd5c3e11b5427c7781de9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: gevent-1.4.0-cp34-cp34m-win_amd64.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.4m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/40.6.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.15

File hashes

Hashes for gevent-1.4.0-cp34-cp34m-win_amd64.whl
Algorithm Hash digest
SHA256 d1e6d1f156e999edab069d79d890859806b555ce4e4da5b6418616322f0a3df1
MD5 852c7fc302be7de1634e0363bfb40a9d
BLAKE2b-256 5ee45331bd2b6e47dc846702a4574e850746572938f8784a23cdd1f58abf1782

See more details on using hashes here.

File details

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

File metadata

  • Download URL: gevent-1.4.0-cp34-cp34m-win32.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.4m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/40.6.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.15

File hashes

Hashes for gevent-1.4.0-cp34-cp34m-win32.whl
Algorithm Hash digest
SHA256 3249011d13d0c63bea72d91cec23a9cf18c25f91d1f115121e5c9113d753fa12
MD5 e3e43a9ccd2b65be5d098c7c6e35a724
BLAKE2b-256 f29e2d64a776881d4e4ea70c1bbac865dff7efda345cbb2d7f3eb2e632463ba6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: gevent-1.4.0-cp34-cp34m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 5.3 MB
  • Tags: CPython 3.4m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/40.6.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.15

File hashes

Hashes for gevent-1.4.0-cp34-cp34m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 d752bcf1b98174780e2317ada12013d612f05116456133a6acf3e17d43b71f05
MD5 532b43aaebf5a1c02cf0e20420d74796
BLAKE2b-256 9768e97f5132268b348180587b06431138d7a3e17809ec11bfdbc19433d103fe

See more details on using hashes here.

File details

Details for the file gevent-1.4.0-cp34-cp34m-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: gevent-1.4.0-cp34-cp34m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 3.1 MB
  • Tags: CPython 3.4m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/40.6.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.15

File hashes

Hashes for gevent-1.4.0-cp34-cp34m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 0774babec518a24d9a7231d4e689931f31b332c4517a771e532002614e270a64
MD5 d5154456bd52bbdb8e7b5dbd9559c552
BLAKE2b-256 053d91dad084218502bb27bbe6324101600117cd65a1eb51888376114fb7b370

See more details on using hashes here.

File details

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

File metadata

  • Download URL: gevent-1.4.0-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 5.0 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/40.6.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.15

File hashes

Hashes for gevent-1.4.0-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 0ff2b70e8e338cf13bedf146b8c29d475e2a544b5d1fe14045aee827c073842c
MD5 b9c27b222ddccfd8cb33196f40e27ca7
BLAKE2b-256 e6e93a693414f706e12abe60554cd73c5ae8f848b182ae58018f93d86c9eb418

See more details on using hashes here.

File details

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

File metadata

  • Download URL: gevent-1.4.0-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 2.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/40.6.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.15

File hashes

Hashes for gevent-1.4.0-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 74b7528f901f39c39cdbb50cdf08f1a2351725d9aebaef212a29abfbb06895ee
MD5 11d11e4025c4f3227dbbe5f22b888d5c
BLAKE2b-256 5b1634bb535206f9eee9ab87647575b7704dba23aca6201a5a1739dcd036a1ca

See more details on using hashes here.

File details

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

File metadata

  • Download URL: gevent-1.4.0-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 2.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/40.6.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.15

File hashes

Hashes for gevent-1.4.0-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 0e1e5b73a445fe82d40907322e1e0eec6a6745ca3cea19291c6f9f50117bb7ea
MD5 92a9af47f2b1ba101c2710b701cd1e51
BLAKE2b-256 149b4ecbb05d15151090a9a3a248d9736a90469793bcc6e86ec5dd39a074e860

See more details on using hashes here.

File details

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

File metadata

  • Download URL: gevent-1.4.0-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 5.0 MB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/40.6.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.15

File hashes

Hashes for gevent-1.4.0-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 44089ed06a962a3a70e96353c981d628b2d4a2f2a75ea5d90f916a62d22af2e8
MD5 a28e9817f870af26365948764257360f
BLAKE2b-256 e1a4dfba6196448d52988fd635b4a4d7caef12349425ff6b9fa4ee8e81471c52

See more details on using hashes here.

File details

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

File metadata

  • Download URL: gevent-1.4.0-cp27-cp27m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 3.1 MB
  • Tags: CPython 2.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/40.6.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/2.7.15

File hashes

Hashes for gevent-1.4.0-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1b7d3a285978b27b469c0ff5fb5a72bcd69f4306dbbf22d7997d83209a8ba917
MD5 21a2c08211d81766a5674e59c42f6ac2
BLAKE2b-256 eefda40d5b89dcc35936921c46704bcf756862f7198d607ab9da3a3bbb585c76

See more details on using hashes here.

Supported by

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