Skip to main content

Lightweight in-process concurrent programming

Project description

https://github.com/python-greenlet/greenlet/workflows/tests/badge.svg

Greenlets are lightweight coroutines for in-process concurrent programming.

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 test_generator.py).

Greenlets are provided as a C extension module for the regular unmodified interpreter.

Who is using Greenlet?

There are several libraries that use Greenlet as a more flexible alternative to Python’s built in coroutine support:

Getting Greenlet

The easiest way to get Greenlet is to install it with pip:

pip install greenlet

Source code archives and binary distributions are vailable on the python package index at https://pypi.org/project/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

Project details


Download files

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

Source Distribution

greenlet-1.1.1.tar.gz (85.2 kB view details)

Uploaded Source

Built Distributions

greenlet-1.1.1-cp310-cp310-win_amd64.whl (96.4 kB view details)

Uploaded CPython 3.10 Windows x86-64

greenlet-1.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (148.7 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

greenlet-1.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (153.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

greenlet-1.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (149.9 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

greenlet-1.1.1-cp310-cp310-macosx_10_14_x86_64.whl (87.3 kB view details)

Uploaded CPython 3.10 macOS 10.14+ x86-64

greenlet-1.1.1-cp39-cp39-win_amd64.whl (96.4 kB view details)

Uploaded CPython 3.9 Windows x86-64

greenlet-1.1.1-cp39-cp39-win32.whl (93.2 kB view details)

Uploaded CPython 3.9 Windows x86

greenlet-1.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (147.2 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

greenlet-1.1.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (151.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

greenlet-1.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (148.2 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

greenlet-1.1.1-cp39-cp39-manylinux2010_x86_64.whl (163.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

greenlet-1.1.1-cp39-cp39-manylinux1_x86_64.whl (163.5 kB view details)

Uploaded CPython 3.9

greenlet-1.1.1-cp39-cp39-macosx_10_14_x86_64.whl (87.2 kB view details)

Uploaded CPython 3.9 macOS 10.14+ x86-64

greenlet-1.1.1-cp38-cp38-win_amd64.whl (96.1 kB view details)

Uploaded CPython 3.8 Windows x86-64

greenlet-1.1.1-cp38-cp38-win32.whl (93.0 kB view details)

Uploaded CPython 3.8 Windows x86

greenlet-1.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (150.1 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

greenlet-1.1.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (154.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

greenlet-1.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (151.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

greenlet-1.1.1-cp38-cp38-manylinux2010_x86_64.whl (166.0 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

greenlet-1.1.1-cp38-cp38-manylinux1_x86_64.whl (166.0 kB view details)

Uploaded CPython 3.8

greenlet-1.1.1-cp38-cp38-macosx_10_14_x86_64.whl (87.3 kB view details)

Uploaded CPython 3.8 macOS 10.14+ x86-64

greenlet-1.1.1-cp37-cp37m-win_amd64.whl (95.6 kB view details)

Uploaded CPython 3.7m Windows x86-64

greenlet-1.1.1-cp37-cp37m-win32.whl (92.6 kB view details)

Uploaded CPython 3.7m Windows x86

greenlet-1.1.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (143.9 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

greenlet-1.1.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (148.4 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ppc64le

greenlet-1.1.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (144.9 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

greenlet-1.1.1-cp37-cp37m-manylinux2010_x86_64.whl (161.0 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ x86-64

greenlet-1.1.1-cp37-cp37m-manylinux1_x86_64.whl (161.0 kB view details)

Uploaded CPython 3.7m

greenlet-1.1.1-cp37-cp37m-macosx_10_14_x86_64.whl (87.1 kB view details)

Uploaded CPython 3.7m macOS 10.14+ x86-64

greenlet-1.1.1-cp36-cp36m-win_amd64.whl (95.3 kB view details)

Uploaded CPython 3.6m Windows x86-64

greenlet-1.1.1-cp36-cp36m-win32.whl (92.4 kB view details)

Uploaded CPython 3.6m Windows x86

greenlet-1.1.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (140.9 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ x86-64

greenlet-1.1.1-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (145.5 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ppc64le

greenlet-1.1.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (142.0 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ARM64

greenlet-1.1.1-cp36-cp36m-manylinux2010_x86_64.whl (156.6 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ x86-64

greenlet-1.1.1-cp36-cp36m-manylinux1_x86_64.whl (156.6 kB view details)

Uploaded CPython 3.6m

greenlet-1.1.1-cp36-cp36m-macosx_10_14_x86_64.whl (86.8 kB view details)

Uploaded CPython 3.6m macOS 10.14+ x86-64

greenlet-1.1.1-cp35-cp35m-win_amd64.whl (95.3 kB view details)

Uploaded CPython 3.5m Windows x86-64

greenlet-1.1.1-cp35-cp35m-win32.whl (92.3 kB view details)

Uploaded CPython 3.5m Windows x86

greenlet-1.1.1-cp35-cp35m-manylinux2010_x86_64.whl (155.9 kB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ x86-64

greenlet-1.1.1-cp35-cp35m-manylinux1_x86_64.whl (155.9 kB view details)

Uploaded CPython 3.5m

greenlet-1.1.1-cp35-cp35m-macosx_10_14_x86_64.whl (86.7 kB view details)

Uploaded CPython 3.5m macOS 10.14+ x86-64

greenlet-1.1.1-cp27-cp27mu-manylinux2010_x86_64.whl (149.2 kB view details)

Uploaded CPython 2.7mu manylinux: glibc 2.12+ x86-64

greenlet-1.1.1-cp27-cp27mu-manylinux1_x86_64.whl (149.2 kB view details)

Uploaded CPython 2.7mu

greenlet-1.1.1-cp27-cp27m-win_amd64.whl (89.2 kB view details)

Uploaded CPython 2.7m Windows x86-64

greenlet-1.1.1-cp27-cp27m-win32.whl (88.8 kB view details)

Uploaded CPython 2.7m Windows x86

greenlet-1.1.1-cp27-cp27m-manylinux2010_x86_64.whl (149.2 kB view details)

Uploaded CPython 2.7m manylinux: glibc 2.12+ x86-64

greenlet-1.1.1-cp27-cp27m-manylinux1_x86_64.whl (149.2 kB view details)

Uploaded CPython 2.7m

greenlet-1.1.1-cp27-cp27m-macosx_10_14_x86_64.whl (86.5 kB view details)

Uploaded CPython 2.7m macOS 10.14+ x86-64

File details

Details for the file greenlet-1.1.1.tar.gz.

File metadata

  • Download URL: greenlet-1.1.1.tar.gz
  • Upload date:
  • Size: 85.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.10.0b4

File hashes

Hashes for greenlet-1.1.1.tar.gz
Algorithm Hash digest
SHA256 c0f22774cd8294078bdf7392ac73cf00bfa1e5e0ed644bd064fdabc5f2a2f481
MD5 a3fbf41851a6b5e1e823e8c18905877c
BLAKE2b-256 727ed8586068d47adba73afc085249712bd266cd7ffbf27d8bc260c33e9d6133

See more details on using hashes here.

File details

Details for the file greenlet-1.1.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: greenlet-1.1.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 96.4 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.3 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.10.0rc1

File hashes

Hashes for greenlet-1.1.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 990e0f5e64bcbc6bdbd03774ecb72496224d13b664aa03afd1f9b171a3269272
MD5 a2adfcdcfc772c1e47a7a6ac6593dd5f
BLAKE2b-256 8a5049448247b8e3c4d0aaf68990dd0d16b2206e217763506a6e3deda49518cb

See more details on using hashes here.

File details

Details for the file greenlet-1.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for greenlet-1.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4870b018ca685ff573edd56b93f00a122f279640732bb52ce3a62b73ee5c4a92
MD5 f9d37242fd7b41dc16366cbfd8db9c6d
BLAKE2b-256 318946b08b1b0d744942bb8dc9bae26b839be9828276139f725da271ca5f0187

See more details on using hashes here.

File details

Details for the file greenlet-1.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for greenlet-1.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5317701c7ce167205c0569c10abc4bd01c7f4cf93f642c39f2ce975fa9b78a3c
MD5 5c9f67c92bb0d422e0b0e1e8547344ef
BLAKE2b-256 f34e9ee52b7ab01590dd23f0ba7e36580b367b27a84fd4035ccb10651e318777

See more details on using hashes here.

File details

Details for the file greenlet-1.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for greenlet-1.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ac991947ca6533ada4ce7095f0e28fe25d5b2f3266ad5b983ed4201e61596acf
MD5 d4402a7ea7f7e16a75340bc8bdaa3081
BLAKE2b-256 5034d657f9704c4b21b0367d0a79080a7cb4e74a251afc580aa1f62cf9500b78

See more details on using hashes here.

File details

Details for the file greenlet-1.1.1-cp310-cp310-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: greenlet-1.1.1-cp310-cp310-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 87.3 kB
  • Tags: CPython 3.10, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.3 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.10.0rc1

File hashes

Hashes for greenlet-1.1.1-cp310-cp310-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 84782c80a433d87530ae3f4b9ed58d4a57317d9918dfcc6a59115fa2d8731f2c
MD5 fd1c9d782d0107bdc5901858f194f0d5
BLAKE2b-256 def537155f90e582699783b9b85d29eb70ebdc09d54b04ff6cc672895e44eef2

See more details on using hashes here.

File details

Details for the file greenlet-1.1.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: greenlet-1.1.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 96.4 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.3 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.1

File hashes

Hashes for greenlet-1.1.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 4adaf53ace289ced90797d92d767d37e7cdc29f13bd3830c3f0a561277a4ae83
MD5 20b2c29a3e26a02b744e27bbf6c62fdc
BLAKE2b-256 7bc7d3f778b0b0e1b2694576806c2e5faec5cb0425f2cac55c4fe60559c03692

See more details on using hashes here.

File details

Details for the file greenlet-1.1.1-cp39-cp39-win32.whl.

File metadata

  • Download URL: greenlet-1.1.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 93.2 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.3 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.1

File hashes

Hashes for greenlet-1.1.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 1796f2c283faab2b71c67e9b9aefb3f201fdfbee5cb55001f5ffce9125f63a45
MD5 b2c1bd8e6f1836abc090cf079ef7e9f1
BLAKE2b-256 cfa84d54b42ce529d32ec7c537ab651620c946f9ad7ca47f9874a83b43aee330

See more details on using hashes here.

File details

Details for the file greenlet-1.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for greenlet-1.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 090126004c8ab9cd0787e2acf63d79e80ab41a18f57d6448225bbfcba475034f
MD5 f92e41caed06d4cc7c12b07a30005bab
BLAKE2b-256 69ea05f5b6b83526f1b20013ec786259ef707d268448b9a7987cbd62187175ae

See more details on using hashes here.

File details

Details for the file greenlet-1.1.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for greenlet-1.1.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 05e72db813c28906cdc59bd0da7c325d9b82aa0b0543014059c34c8c4ad20e16
MD5 022da9debadd981686f519ad7208d2c6
BLAKE2b-256 4b1605ba3dd2a25cb3e6b6a55bdd4c622025bbd1737e022f83ec455ec7b7bc5b

See more details on using hashes here.

File details

Details for the file greenlet-1.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for greenlet-1.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 98b491976ed656be9445b79bc57ed21decf08a01aaaf5fdabf07c98c108111f6
MD5 86d53560c0cf7eb7d795dc8cef0da124
BLAKE2b-256 819b8910a411ea81dea1f121f8efbbae68f1e1329431b1fd3613e1d23ca95176

See more details on using hashes here.

File details

Details for the file greenlet-1.1.1-cp39-cp39-manylinux2010_x86_64.whl.

File metadata

  • Download URL: greenlet-1.1.1-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 163.5 kB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.3 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.8.11

File hashes

Hashes for greenlet-1.1.1-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 07e6d88242e09b399682b39f8dfa1e7e6eca66b305de1ff74ed9eb1a7d8e539c
MD5 3bcdaec2ae04b0f51f8b0259a77125ba
BLAKE2b-256 100588c00240ff7d3115dcc3ab63405117be4515477ead826f464e0288ca70e8

See more details on using hashes here.

File details

Details for the file greenlet-1.1.1-cp39-cp39-manylinux1_x86_64.whl.

File metadata

  • Download URL: greenlet-1.1.1-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 163.5 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.3 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.8.11

File hashes

Hashes for greenlet-1.1.1-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 6e0696525500bc8aa12eae654095d2260db4dc95d5c35af2b486eae1bf914ccd
MD5 2af9a302fd3b4b8439979424ca12660a
BLAKE2b-256 67ee651289b826da4a0e6c6ce32452707bf85f18f308665a14224e7ca9aded6c

See more details on using hashes here.

File details

Details for the file greenlet-1.1.1-cp39-cp39-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: greenlet-1.1.1-cp39-cp39-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 87.2 kB
  • Tags: CPython 3.9, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.3 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.9.6

File hashes

Hashes for greenlet-1.1.1-cp39-cp39-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 b050dbb96216db273b56f0e5960959c2b4cb679fe1e58a0c3906fa0a60c00662
MD5 50e01a7db67447a1965302fd7a374d0c
BLAKE2b-256 b7352d0604b19d06b4a64882fe26aa75d05f7ff6dd939a073612b5f9f57f28d5

See more details on using hashes here.

File details

Details for the file greenlet-1.1.1-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: greenlet-1.1.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 96.1 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.3 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.8.0

File hashes

Hashes for greenlet-1.1.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 d15cb6f8706678dc47fb4e4f8b339937b04eda48a0af1cca95f180db552e7663
MD5 6c48e852a0a1d1e28774b09443c094f2
BLAKE2b-256 7275ed32497fa0d1f401bce47cbfd1fda95f6911de9b478d9cd333e9709acecb

See more details on using hashes here.

File details

Details for the file greenlet-1.1.1-cp38-cp38-win32.whl.

File metadata

  • Download URL: greenlet-1.1.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 93.0 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.3 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.8.0

File hashes

Hashes for greenlet-1.1.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 2f89d74b4f423e756a018832cd7a0a571e0a31b9ca59323b77ce5f15a437629b
MD5 e8df13825a4b13f6e6daa77f69482aee
BLAKE2b-256 137a42814340879562f1ffe64c5ccb485d85e03d2ff5518fbb52a314619e4860

See more details on using hashes here.

File details

Details for the file greenlet-1.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for greenlet-1.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c8d4ed48eed7414ccb2aaaecbc733ed2a84c299714eae3f0f48db085342d5629
MD5 494bd1bc941c2e4f3533e46d05ce30c3
BLAKE2b-256 bcea96f1fc6bab19e71e1627944ad474532f6357546d5de0ef9eb98de8eb7596

See more details on using hashes here.

File details

Details for the file greenlet-1.1.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for greenlet-1.1.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 04e1849c88aa56584d4a0a6e36af5ec7cc37993fdc1fda72b56aa1394a92ded3
MD5 9a382d2522fc188c4f61df255907e8c8
BLAKE2b-256 3c066096d594db0905ec292d35768a864f6bb57a983cfae12781c60466435161

See more details on using hashes here.

File details

Details for the file greenlet-1.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for greenlet-1.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e2002a59453858c7f3404690ae80f10c924a39f45f6095f18a985a1234c37334
MD5 bc8cf4f35a52d83bb582d378a916b9ca
BLAKE2b-256 a4446c25ab2d074671b54cdd8c12730311a96d5326bad5a0ec56558d421d750e

See more details on using hashes here.

File details

Details for the file greenlet-1.1.1-cp38-cp38-manylinux2010_x86_64.whl.

File metadata

  • Download URL: greenlet-1.1.1-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 166.0 kB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.3 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.8.11

File hashes

Hashes for greenlet-1.1.1-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 5c3b735ccf8fc8048664ee415f8af5a3a018cc92010a0d7195395059b4b39b7d
MD5 b0cdb2d5d092a9ef2f8e57a8b1dadb39
BLAKE2b-256 327a85cbb3374bef5cac1a2eebec9f6ff324a6758970c38a2825a7b89a2e9aec

See more details on using hashes here.

File details

Details for the file greenlet-1.1.1-cp38-cp38-manylinux1_x86_64.whl.

File metadata

  • Download URL: greenlet-1.1.1-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 166.0 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.3 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.8.11

File hashes

Hashes for greenlet-1.1.1-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 bf3725d79b1ceb19e83fb1aed44095518c0fcff88fba06a76c0891cfd1f36837
MD5 aaf24c9ac09a2282d103eb7d8664f54f
BLAKE2b-256 9996eeb625c4e139e22f2a4604a463f6de2f727242791d9a0bbd5f571b8b7331

See more details on using hashes here.

File details

Details for the file greenlet-1.1.1-cp38-cp38-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: greenlet-1.1.1-cp38-cp38-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 87.3 kB
  • Tags: CPython 3.8, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.3 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.8.11

File hashes

Hashes for greenlet-1.1.1-cp38-cp38-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 34e6675167a238bede724ee60fe0550709e95adaff6a36bcc97006c365290384
MD5 e2d4bb20a2abd942ec977a6213804d3b
BLAKE2b-256 bc58de1684aabf4becabbbebc23d84666dc0ab947b79a7b6bb0317a8358267e6

See more details on using hashes here.

File details

Details for the file greenlet-1.1.1-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: greenlet-1.1.1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 95.6 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.3 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.7.5

File hashes

Hashes for greenlet-1.1.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 a91ee268f059583176c2c8b012a9fce7e49ca6b333a12bbc2dd01fc1a9783885
MD5 2f18480ecfa5ce3d862ab5b58a505ff8
BLAKE2b-256 c155fe48f57c33723803ae6e3ece91549b9c38180b12bb40468ead628ba5fac0

See more details on using hashes here.

File details

Details for the file greenlet-1.1.1-cp37-cp37m-win32.whl.

File metadata

  • Download URL: greenlet-1.1.1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 92.6 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.3 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.7.5

File hashes

Hashes for greenlet-1.1.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 f253dad38605486a4590f9368ecbace95865fea0f2b66615d121ac91fd1a1563
MD5 1966b4ff2e0e9b467197ae9829c6636e
BLAKE2b-256 e9ce9886e5ce2e775800cefb3462eeead94f3a30620c305c04bc00b30a1d171c

See more details on using hashes here.

File details

Details for the file greenlet-1.1.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for greenlet-1.1.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5cde7ee190196cbdc078511f4df0be367af85636b84d8be32230f4871b960687
MD5 2a083e3706cfbc7aef171843768841b7
BLAKE2b-256 6cdd686f9cf85712f9be5cec8eb47ab7f351c6d825344c3510c9fd7b8c5dff72

See more details on using hashes here.

File details

Details for the file greenlet-1.1.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for greenlet-1.1.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 75ff270fd05125dce3303e9216ccddc541a9e072d4fc764a9276d44dee87242b
MD5 bded5883266b56da07608f18014f993f
BLAKE2b-256 32d184a893d8185253276beae8b94f442791c573dc74b52cd70163db78fc6dcd

See more details on using hashes here.

File details

Details for the file greenlet-1.1.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for greenlet-1.1.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e41f72f225192d5d4df81dad2974a8943b0f2d664a2a5cfccdf5a01506f5523c
MD5 8ff25f6a910991d045c31e6b3a80b95f
BLAKE2b-256 318cbc35d74f8c84fb3e1dd9461b022a001e7c16bdbffb0d16f58a6fa490aa3a

See more details on using hashes here.

File details

Details for the file greenlet-1.1.1-cp37-cp37m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: greenlet-1.1.1-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 161.0 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.3 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.8.11

File hashes

Hashes for greenlet-1.1.1-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 3e594015a2349ec6dcceda9aca29da8dc89e85b56825b7d1f138a3f6bb79dd4c
MD5 d67f9131b2ea77902f4cf537cfa69a4a
BLAKE2b-256 3a4757ee19371d3955aa11aed95a2dd4382ed1383a4f4408508364f313096882

See more details on using hashes here.

File details

Details for the file greenlet-1.1.1-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

  • Download URL: greenlet-1.1.1-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 161.0 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.3 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.8.11

File hashes

Hashes for greenlet-1.1.1-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 3f8fc59bc5d64fa41f58b0029794f474223693fd00016b29f4e176b3ee2cfd9f
MD5 9a1e9bd4e1a006bddd5b7248422267fd
BLAKE2b-256 33387d2eb0dc394f110b7ebe4a8295a52f71575cf968ed80011081105f0f0d5e

See more details on using hashes here.

File details

Details for the file greenlet-1.1.1-cp37-cp37m-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: greenlet-1.1.1-cp37-cp37m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 87.1 kB
  • Tags: CPython 3.7m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.3 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.7.11

File hashes

Hashes for greenlet-1.1.1-cp37-cp37m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 84488516639c3c5e5c0e52f311fff94ebc45b56788c2a3bfe9cf8e75670f4de3
MD5 8f8a67d822a2716ccc6c3a6ec64d7252
BLAKE2b-256 dbc9d675a3fb512a22392f1a69a4303cb3c8cc3326400552b6f5791b38da46db

See more details on using hashes here.

File details

Details for the file greenlet-1.1.1-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: greenlet-1.1.1-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 95.3 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.3 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.6.8

File hashes

Hashes for greenlet-1.1.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 9b02e6039eafd75e029d8c58b7b1f3e450ca563ef1fe21c7e3e40b9936c8d03e
MD5 6f0d5e58b8f143ba2ec57c23d3058ca4
BLAKE2b-256 03fa2171ba99d038367de9a8088c9ce60110608471150dd120e6ba7226ef6bcb

See more details on using hashes here.

File details

Details for the file greenlet-1.1.1-cp36-cp36m-win32.whl.

File metadata

  • Download URL: greenlet-1.1.1-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 92.4 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.3 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.6.8

File hashes

Hashes for greenlet-1.1.1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 c1862f9f1031b1dee3ff00f1027fcd098ffc82120f43041fe67804b464bbd8a7
MD5 78226efe16d57401de78ce9c9bcea5d4
BLAKE2b-256 54568b4088cb99d8a5ce4eb2214b2eebbe9df92ffc2137d41e8b62d332018f4f

See more details on using hashes here.

File details

Details for the file greenlet-1.1.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for greenlet-1.1.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4eae94de9924bbb4d24960185363e614b1b62ff797c23dc3c8a7c75bbb8d187e
MD5 d428c84508f883c11528de41d6b4f6b4
BLAKE2b-256 86d3ae5696ee607216a7e5dd5c507eaa36b8b2d38d3cdd617e50122d33e3a7d5

See more details on using hashes here.

File details

Details for the file greenlet-1.1.1-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for greenlet-1.1.1-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cf31e894dabb077a35bbe6963285d4515a387ff657bd25b0530c7168e48f167f
MD5 223a96999dd0c162873ce321b26d0c0c
BLAKE2b-256 eabfb181d718beccaaf87e7c48e5bbf88204cfd81aab0290c9575ec050d8ef7b

See more details on using hashes here.

File details

Details for the file greenlet-1.1.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for greenlet-1.1.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b97a807437b81f90f85022a9dcfd527deea38368a3979ccb49d93c9198b2c722
MD5 0119caeb8a94c7d6ac84383bfb596cf4
BLAKE2b-256 dea150d5edf9bc9f8a29e6acb1c845e5359da0336ea0e1d84bb6411e46608216

See more details on using hashes here.

File details

Details for the file greenlet-1.1.1-cp36-cp36m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: greenlet-1.1.1-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 156.6 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.3 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.8.11

File hashes

Hashes for greenlet-1.1.1-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 fddfb31aa2ac550b938d952bca8a87f1db0f8dc930ffa14ce05b5c08d27e7fd1
MD5 e322e3e72a7ad653199669041c4a1bd8
BLAKE2b-256 30c06da3854b61142e772863dd34c69cf102b722c52b9f5c6a4364b05aeaaf83

See more details on using hashes here.

File details

Details for the file greenlet-1.1.1-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

  • Download URL: greenlet-1.1.1-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 156.6 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.3 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.8.11

File hashes

Hashes for greenlet-1.1.1-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 8039f5fe8030c43cd1732d9a234fdcbf4916fcc32e21745ca62e75023e4d4649
MD5 61f0b26160d624976f499967bb8b7525
BLAKE2b-256 d952dbd04b1a636c1dc2c4e62c03c74e1d84917794f41cc93dafe777b1fd5294

See more details on using hashes here.

File details

Details for the file greenlet-1.1.1-cp36-cp36m-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: greenlet-1.1.1-cp36-cp36m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 86.8 kB
  • Tags: CPython 3.6m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.3 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.6.14

File hashes

Hashes for greenlet-1.1.1-cp36-cp36m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 3fc6a447735749d651d8919da49aab03c434a300e9f0af1c886d560405840fd1
MD5 02f2e1b11c2156dfa4e05019ba64ea6d
BLAKE2b-256 f97ef77851a703d7b829f55c0df2a473d4d9622a04f964eded24f8a003d0e3b4

See more details on using hashes here.

File details

Details for the file greenlet-1.1.1-cp35-cp35m-win_amd64.whl.

File metadata

  • Download URL: greenlet-1.1.1-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 95.3 kB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.7.1 requests/2.25.1 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.5.4

File hashes

Hashes for greenlet-1.1.1-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 6ce9d0784c3c79f3e5c5c9c9517bbb6c7e8aa12372a5ea95197b8a99402aa0e6
MD5 8744102718cee338b6de3458259deca5
BLAKE2b-256 acef580bc8fd8a6e286bbc91c622c47810405125506727598b3c25c66ac70c48

See more details on using hashes here.

File details

Details for the file greenlet-1.1.1-cp35-cp35m-win32.whl.

File metadata

  • Download URL: greenlet-1.1.1-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 92.3 kB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.7.1 requests/2.25.1 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.5.4

File hashes

Hashes for greenlet-1.1.1-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 655ab836324a473d4cd8cf231a2d6f283ed71ed77037679da554e38e606a7117
MD5 3adc99b71e015dcc4496017e0086d64f
BLAKE2b-256 7d944668f936fd9f7291c6115e9858d13475d739963a9afa35111a91203914ed

See more details on using hashes here.

File details

Details for the file greenlet-1.1.1-cp35-cp35m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: greenlet-1.1.1-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 155.9 kB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.3 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.8.11

File hashes

Hashes for greenlet-1.1.1-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 dfcb5a4056e161307d103bc013478892cfd919f1262c2bb8703220adcb986362
MD5 53a1d71bc49aa9a5e04ce45ab3c4ff99
BLAKE2b-256 d7af54e085ecdf5f924a62e6a4f827cffb15893e927965bbd8879184d5a58aa9

See more details on using hashes here.

File details

Details for the file greenlet-1.1.1-cp35-cp35m-manylinux1_x86_64.whl.

File metadata

  • Download URL: greenlet-1.1.1-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 155.9 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.3 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.8.11

File hashes

Hashes for greenlet-1.1.1-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 e02780da03f84a671bb4205c5968c120f18df081236d7b5462b380fd4f0b497b
MD5 82c52dfbeb52dc8246f41dcaba2db9f0
BLAKE2b-256 464e772f92c353776c2d8ed38d8a3fbdbf4211996f72ff1ec2f1092f92c33f19

See more details on using hashes here.

File details

Details for the file greenlet-1.1.1-cp35-cp35m-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: greenlet-1.1.1-cp35-cp35m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 86.7 kB
  • Tags: CPython 3.5m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.7.1 requests/2.25.1 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.5.10

File hashes

Hashes for greenlet-1.1.1-cp35-cp35m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 a414f8e14aa7bacfe1578f17c11d977e637d25383b6210587c29210af995ef04
MD5 e17800837c8cd4909b8e3e596118f540
BLAKE2b-256 8ffa6bfe35cde1d432a2d21c027e9a014ec94a4f45fb9f448a68fdb84ced32d2

See more details on using hashes here.

File details

Details for the file greenlet-1.1.1-cp27-cp27mu-manylinux2010_x86_64.whl.

File metadata

  • Download URL: greenlet-1.1.1-cp27-cp27mu-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 149.2 kB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.3 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.8.11

File hashes

Hashes for greenlet-1.1.1-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 8ddb38fb6ad96c2ef7468ff73ba5c6876b63b664eebb2c919c224261ae5e8378
MD5 af32701cd4a14ae6f8a442b98cbc13a2
BLAKE2b-256 373979c99e2c32e881c27f866906c545a6c6dcdfc4d5c63ca5304675a4854419

See more details on using hashes here.

File details

Details for the file greenlet-1.1.1-cp27-cp27mu-manylinux1_x86_64.whl.

File metadata

  • Download URL: greenlet-1.1.1-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 149.2 kB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.3 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.8.11

File hashes

Hashes for greenlet-1.1.1-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 bad269e442f1b7ffa3fa8820b3c3aa66f02a9f9455b5ba2db5a6f9eea96f56de
MD5 cf14f276c14e9c9da70ea19739c6b2d1
BLAKE2b-256 8209fb471c6819f817f34fec982bcf9695a10b47772d1e20edb8caa7673d2f9c

See more details on using hashes here.

File details

Details for the file greenlet-1.1.1-cp27-cp27m-win_amd64.whl.

File metadata

  • Download URL: greenlet-1.1.1-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 89.2 kB
  • Tags: CPython 2.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.7.1 requests/2.26.0 setuptools/44.1.1 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/2.7.17

File hashes

Hashes for greenlet-1.1.1-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 e22a82d2b416d9227a500c6860cf13e74060cf10e7daf6695cbf4e6a94e0eee4
MD5 a009d1d9c5381c2819fff566fe7aead5
BLAKE2b-256 3e0812ef75ffc37d435ccc6814766f0926a764fe1ffe96a5c876a1b12836bca8

See more details on using hashes here.

File details

Details for the file greenlet-1.1.1-cp27-cp27m-win32.whl.

File metadata

  • Download URL: greenlet-1.1.1-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 88.8 kB
  • Tags: CPython 2.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.7.1 requests/2.26.0 setuptools/44.1.1 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/2.7.17

File hashes

Hashes for greenlet-1.1.1-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 a11b6199a0b9dc868990456a2667167d0ba096c5224f6258e452bfbe5a9742c5
MD5 20827f7a357af915281e0b0828121ba2
BLAKE2b-256 2c189ea488a62d550b0d1bc807bae3d27875723fe2b5454f053734148e2d7559

See more details on using hashes here.

File details

Details for the file greenlet-1.1.1-cp27-cp27m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: greenlet-1.1.1-cp27-cp27m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 149.2 kB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.3 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.8.11

File hashes

Hashes for greenlet-1.1.1-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 40abb7fec4f6294225d2b5464bb6d9552050ded14a7516588d6f010e7e366dcc
MD5 50fe99923c11b64f976f267c90378174
BLAKE2b-256 2593fd52f0185406657f4826552d3dd7cc387c7ffbeb88ae998a6df8abc532a0

See more details on using hashes here.

File details

Details for the file greenlet-1.1.1-cp27-cp27m-manylinux1_x86_64.whl.

File metadata

  • Download URL: greenlet-1.1.1-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 149.2 kB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.6.3 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/3.8.11

File hashes

Hashes for greenlet-1.1.1-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 44556302c0ab376e37939fd0058e1f0db2e769580d340fb03b01678d1ff25f68
MD5 72b321d8c37c2acaa89fc49110767c3d
BLAKE2b-256 4fcdda3a6f78826f055e9234e5d0a1ea798c81b0f46a5cd83ef5f166ac168bc1

See more details on using hashes here.

File details

Details for the file greenlet-1.1.1-cp27-cp27m-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: greenlet-1.1.1-cp27-cp27m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 86.5 kB
  • Tags: CPython 2.7m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.7.1 requests/2.26.0 setuptools/44.1.1 requests-toolbelt/0.9.1 tqdm/4.62.0 CPython/2.7.18

File hashes

Hashes for greenlet-1.1.1-cp27-cp27m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 476ba9435afaead4382fbab8f1882f75e3fb2285c35c9285abb3dd30237f9142
MD5 44235504bef35ae111e5f6ac38f19b95
BLAKE2b-256 ce9f6566d1088bc6f2f9a7c3da0a709e2a68f2126e17475f4c5c87535292eb1c

See more details on using hashes here.

Supported by

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