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 available 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-2.0.0a1.tar.gz (150.9 kB view details)

Uploaded Source

Built Distributions

greenlet-2.0.0a1-cp311-cp311-macosx_10_15_x86_64.whl (191.6 kB view details)

Uploaded CPython 3.11 macOS 10.15+ x86-64

greenlet-2.0.0a1-cp310-cp310-win_amd64.whl (177.1 kB view details)

Uploaded CPython 3.10 Windows x86-64

greenlet-2.0.0a1-cp310-cp310-musllinux_1_1_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

greenlet-2.0.0a1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (526.8 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

greenlet-2.0.0a1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (529.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

greenlet-2.0.0a1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (516.1 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

greenlet-2.0.0a1-cp310-cp310-macosx_10_15_x86_64.whl (191.2 kB view details)

Uploaded CPython 3.10 macOS 10.15+ x86-64

greenlet-2.0.0a1-cp39-cp39-win_amd64.whl (176.9 kB view details)

Uploaded CPython 3.9 Windows x86-64

greenlet-2.0.0a1-cp39-cp39-win32.whl (173.8 kB view details)

Uploaded CPython 3.9 Windows x86

greenlet-2.0.0a1-cp39-cp39-musllinux_1_1_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

greenlet-2.0.0a1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (522.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

greenlet-2.0.0a1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (525.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

greenlet-2.0.0a1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (513.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

greenlet-2.0.0a1-cp39-cp39-manylinux2010_x86_64.whl (540.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

greenlet-2.0.0a1-cp39-cp39-macosx_10_15_x86_64.whl (190.9 kB view details)

Uploaded CPython 3.9 macOS 10.15+ x86-64

greenlet-2.0.0a1-cp38-cp38-win_amd64.whl (179.0 kB view details)

Uploaded CPython 3.8 Windows x86-64

greenlet-2.0.0a1-cp38-cp38-win32.whl (174.5 kB view details)

Uploaded CPython 3.8 Windows x86

greenlet-2.0.0a1-cp38-cp38-musllinux_1_1_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

greenlet-2.0.0a1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (529.1 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

greenlet-2.0.0a1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (531.5 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

greenlet-2.0.0a1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (518.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

greenlet-2.0.0a1-cp38-cp38-manylinux2010_x86_64.whl (547.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

greenlet-2.0.0a1-cp38-cp38-macosx_10_14_x86_64.whl (190.5 kB view details)

Uploaded CPython 3.8 macOS 10.14+ x86-64

greenlet-2.0.0a1-cp37-cp37m-win_amd64.whl (179.9 kB view details)

Uploaded CPython 3.7m Windows x86-64

greenlet-2.0.0a1-cp37-cp37m-win32.whl (175.9 kB view details)

Uploaded CPython 3.7m Windows x86

greenlet-2.0.0a1-cp37-cp37m-musllinux_1_1_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ x86-64

greenlet-2.0.0a1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (501.6 kB view details)

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

greenlet-2.0.0a1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (506.2 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ppc64le

greenlet-2.0.0a1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (491.8 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

greenlet-2.0.0a1-cp37-cp37m-manylinux2010_x86_64.whl (516.3 kB view details)

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

greenlet-2.0.0a1-cp37-cp37m-macosx_10_14_x86_64.whl (189.8 kB view details)

Uploaded CPython 3.7m macOS 10.14+ x86-64

greenlet-2.0.0a1-cp36-cp36m-win_amd64.whl (180.8 kB view details)

Uploaded CPython 3.6m Windows x86-64

greenlet-2.0.0a1-cp36-cp36m-win32.whl (176.3 kB view details)

Uploaded CPython 3.6m Windows x86

greenlet-2.0.0a1-cp36-cp36m-musllinux_1_1_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ x86-64

greenlet-2.0.0a1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (498.8 kB view details)

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

greenlet-2.0.0a1-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (504.8 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ppc64le

greenlet-2.0.0a1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (491.2 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ARM64

greenlet-2.0.0a1-cp36-cp36m-manylinux2010_x86_64.whl (511.6 kB view details)

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

greenlet-2.0.0a1-cp36-cp36m-macosx_10_14_x86_64.whl (189.4 kB view details)

Uploaded CPython 3.6m macOS 10.14+ x86-64

greenlet-2.0.0a1-cp35-cp35m-win_amd64.whl (180.7 kB view details)

Uploaded CPython 3.5m Windows x86-64

greenlet-2.0.0a1-cp35-cp35m-win32.whl (176.3 kB view details)

Uploaded CPython 3.5m Windows x86

greenlet-2.0.0a1-cp35-cp35m-manylinux2010_x86_64.whl (511.9 kB view details)

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

greenlet-2.0.0a1-cp35-cp35m-macosx_10_14_x86_64.whl (189.4 kB view details)

Uploaded CPython 3.5m macOS 10.14+ x86-64

greenlet-2.0.0a1-cp27-cp27mu-manylinux2010_x86_64.whl (499.6 kB view details)

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

greenlet-2.0.0a1-cp27-cp27m-win_amd64.whl (179.6 kB view details)

Uploaded CPython 2.7m Windows x86-64

greenlet-2.0.0a1-cp27-cp27m-win32.whl (172.1 kB view details)

Uploaded CPython 2.7m Windows x86

greenlet-2.0.0a1-cp27-cp27m-manylinux2010_x86_64.whl (499.6 kB view details)

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

greenlet-2.0.0a1-cp27-cp27m-macosx_10_14_x86_64.whl (189.2 kB view details)

Uploaded CPython 2.7m macOS 10.14+ x86-64

File details

Details for the file greenlet-2.0.0a1.tar.gz.

File metadata

  • Download URL: greenlet-2.0.0a1.tar.gz
  • Upload date:
  • Size: 150.9 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.26.0 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.10.2

File hashes

Hashes for greenlet-2.0.0a1.tar.gz
Algorithm Hash digest
SHA256 c9525a82b0ff1bb35253ec2d2e9430c53479274e65bddefbfd5db74972c7202d
MD5 f1c1be10d040bbe492da46f1e1499d59
BLAKE2b-256 4aa6aaa7862e5e8789f5b3ffd3e94ef55ab0a6dee3397ff0586d95cf7cbf2447

See more details on using hashes here.

File details

Details for the file greenlet-2.0.0a1-cp311-cp311-macosx_10_15_x86_64.whl.

File metadata

  • Download URL: greenlet-2.0.0a1-cp311-cp311-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 191.6 kB
  • Tags: CPython 3.11, macOS 10.15+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.11.0a4

File hashes

Hashes for greenlet-2.0.0a1-cp311-cp311-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 81e8c96d0f590c11ffcbed42293dc3e10be1639a57b0e531a937ac61fb400224
MD5 db98b1fc89e0e208a3c7a3b443b0c94d
BLAKE2b-256 f88d216aec1aa74af5e5ea83daf113eb3dfc054ad8c026c0aafd0130e801c619

See more details on using hashes here.

File details

Details for the file greenlet-2.0.0a1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: greenlet-2.0.0a1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 177.1 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.1

File hashes

Hashes for greenlet-2.0.0a1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 04828fcd02de1fa606560ac13eaa026a3f1859bbb6098cbb4e2c9471bce73e17
MD5 775b28241aa627b91cd4ca236ba43d6c
BLAKE2b-256 28ce6b91ba3ee08b363557ca1f0af34f059a0048a300a4bac2cbcaea25c139ae

See more details on using hashes here.

File details

Details for the file greenlet-2.0.0a1-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: greenlet-2.0.0a1-cp310-cp310-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.10, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.12

File hashes

Hashes for greenlet-2.0.0a1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 9ad8a0b3542747b4311f03784a87ba2f1c2a0bf15e7e95ecf06d97ccea2f81e9
MD5 495ee63a17455d10402ec376c046f9cc
BLAKE2b-256 9e43d5c6c8c2925ce458737823eb8a55ebe411bb4df4d04a91f0a77d55b55ce7

See more details on using hashes here.

File details

Details for the file greenlet-2.0.0a1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for greenlet-2.0.0a1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fa04d0419b2ed61125bb8a4a0a810cad428546adeee87cab6f2beee50259fecc
MD5 94ecd9f998fff25c9789bf4fe4b30390
BLAKE2b-256 85a60da257d5f49b842611993f9be95596fd847d5450da155bc4aa76c224043d

See more details on using hashes here.

File details

Details for the file greenlet-2.0.0a1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for greenlet-2.0.0a1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 063c55ae93b19dcbd077182d34ab7e70838d16edae8a5ba9fe1c8f9a6530201d
MD5 f21bdb16f25ab7355524905f8412341e
BLAKE2b-256 e38e0f68997147620aca6a6996d9ba21844d0332f3ccfa9044928d42908fcafc

See more details on using hashes here.

File details

Details for the file greenlet-2.0.0a1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for greenlet-2.0.0a1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ce1f6e65a3b9b6a8b5b1f64ef75e49fa159721c8882027b50cfaa82472bd1c10
MD5 6ea90ba11b2d5ed882cef5da2ac0f5d8
BLAKE2b-256 77380f6f57cef24f8db41b1e0b04297a5b75ca651cd26f7f9f2ff73ed7462627

See more details on using hashes here.

File details

Details for the file greenlet-2.0.0a1-cp310-cp310-macosx_10_15_x86_64.whl.

File metadata

  • Download URL: greenlet-2.0.0a1-cp310-cp310-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 191.2 kB
  • Tags: CPython 3.10, macOS 10.15+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.2

File hashes

Hashes for greenlet-2.0.0a1-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 53f90311f1779fac5641a75c01ba3b9d088688518915b7138b2f0636f151c20a
MD5 fb393148f861d3917b79863cc27e1b8c
BLAKE2b-256 c0880ffdd1e378e108037f5b0e322f6a55833e947f8401cc7130b0199dd272d5

See more details on using hashes here.

File details

Details for the file greenlet-2.0.0a1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: greenlet-2.0.0a1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 176.9 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for greenlet-2.0.0a1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 69a681b219c1208f0dd40c29c142e44a436f1f7add8ae9ac93470c1764b38980
MD5 119b7c254c7f6bb58dc9aa404fcddf3f
BLAKE2b-256 fc7f4a9aec772262bb68bcda1243688f84d7aeb13f7c91a1d4c57b3fc183b6e6

See more details on using hashes here.

File details

Details for the file greenlet-2.0.0a1-cp39-cp39-win32.whl.

File metadata

  • Download URL: greenlet-2.0.0a1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 173.8 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for greenlet-2.0.0a1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 9db3f35c9c493dbbf053fb13285822bccbf2a76049328d10edf0daf4591b65a0
MD5 3d5ab84a5965793bc52c9882b7054a6c
BLAKE2b-256 0d7158d9784dc531d97d7ce590a680b11407541ce71fdac0590a162bc233289a

See more details on using hashes here.

File details

Details for the file greenlet-2.0.0a1-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: greenlet-2.0.0a1-cp39-cp39-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.9, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.12

File hashes

Hashes for greenlet-2.0.0a1-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 800c0e9f13df16c36df8b040bb1693cea4e8375b8ddc730013c87ed656d3659c
MD5 1acac2df2e213116f520f3a12d260737
BLAKE2b-256 aef6ad236887d82fd8792a4c1484f2726a5bda36b8f9fabdcaaefff20352694f

See more details on using hashes here.

File details

Details for the file greenlet-2.0.0a1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for greenlet-2.0.0a1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4cedd60664090cc7407119fd40b91c9a2a640909c8c59273b180ba61b1ff9210
MD5 3c8e9a2831deff7bf0f49ea4e1167853
BLAKE2b-256 f44348eab2ecf73a411ea1e93e0697bb689820d49c36129e3428e9732aed3c66

See more details on using hashes here.

File details

Details for the file greenlet-2.0.0a1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for greenlet-2.0.0a1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cb1f258971419b4b34f71736b09ce7d3daeea71a5660eb28b34f8a80520ee20b
MD5 09f6e450dd79a2280f213b0c0b6d7200
BLAKE2b-256 66559efdd6c1bc324adf0587f43484cf99f717259d5805a313138c84d8bc6c9a

See more details on using hashes here.

File details

Details for the file greenlet-2.0.0a1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for greenlet-2.0.0a1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 757ddbadc18515d28018c53f98bf85ea7af9fb7accff0d7b5d681bcbfdca9a74
MD5 39984bc899fcc6ec7585e452a0c29a66
BLAKE2b-256 cc2e8cc1d9f75f6567e42e3974afad1f86346a7a1447aa477c013ed6767dc214

See more details on using hashes here.

File details

Details for the file greenlet-2.0.0a1-cp39-cp39-manylinux2010_x86_64.whl.

File metadata

  • Download URL: greenlet-2.0.0a1-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 540.9 kB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.12

File hashes

Hashes for greenlet-2.0.0a1-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 63e0620aec7dc22fd988ec2c62c7e678921d13cf8eaefc2d2df6cc065998cc7b
MD5 7758927c3474ecf13d02c94332ff947c
BLAKE2b-256 2472a6ddc0f7b41c394dd96a1117f49565734d64fc60d6fea0804c913222113f

See more details on using hashes here.

File details

Details for the file greenlet-2.0.0a1-cp39-cp39-macosx_10_15_x86_64.whl.

File metadata

  • Download URL: greenlet-2.0.0a1-cp39-cp39-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 190.9 kB
  • Tags: CPython 3.9, macOS 10.15+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.10

File hashes

Hashes for greenlet-2.0.0a1-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 be681332594c3361a32198fe591f966e6114c67bf62e1cbb1f6fe700e7f809b3
MD5 2f41a2a676ad9a9a0f795d3e24946f8a
BLAKE2b-256 0119db9a699cf41ed4d1cbdd45a8890c7864f629eec02aa854443e3311263ecd

See more details on using hashes here.

File details

Details for the file greenlet-2.0.0a1-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: greenlet-2.0.0a1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 179.0 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.0

File hashes

Hashes for greenlet-2.0.0a1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 678065b2bc9a2fb804a61cfddac6b44cbddb1787e619e47eae3cb25c57709516
MD5 02842c63600db2d6e6dc3e61009b9d5b
BLAKE2b-256 dad8c260f94e7d9b7d661e82c14708e462c8ae86c6615f6c7b1d2d19946605a8

See more details on using hashes here.

File details

Details for the file greenlet-2.0.0a1-cp38-cp38-win32.whl.

File metadata

  • Download URL: greenlet-2.0.0a1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 174.5 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.0

File hashes

Hashes for greenlet-2.0.0a1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 9ae7b519fbacaa5bf7e9ba71d582da463ce049e493568be6da80f444504bc951
MD5 6a559b2aae54185a4f73380e6c65fa37
BLAKE2b-256 1a4a858e0b2f0ac416732ba7d07348b0772d0b57015ad1dae35daca2f0836520

See more details on using hashes here.

File details

Details for the file greenlet-2.0.0a1-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: greenlet-2.0.0a1-cp38-cp38-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.8, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.12

File hashes

Hashes for greenlet-2.0.0a1-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 edacb7c0f8a42e6df031ef675e29156ca933403f1cb8027e8f2c82ad8d68bc67
MD5 63fa6715644d69af96a390444f6051cf
BLAKE2b-256 c0580f78dbc366e506c34e893ddd2486ee6ada09e3b0e4ecc03fa3be74c6400f

See more details on using hashes here.

File details

Details for the file greenlet-2.0.0a1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for greenlet-2.0.0a1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6bcfa9dd47645ea7ab072422405858ab8afb8420014bd2dfde0fed78d4026e08
MD5 1877ad5a95fb9b5418661b2c240b2a81
BLAKE2b-256 fc560c5e28d99b3ef3717a01bd0370d52cd5397976d6378f1c53462c58a170da

See more details on using hashes here.

File details

Details for the file greenlet-2.0.0a1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for greenlet-2.0.0a1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4c74283a777414ea1382448f70340096b360e3dc4bedc64259b0e355328f2f5a
MD5 77f5e5455b682d3798a74c25ae40953d
BLAKE2b-256 e16674596145b26d2c1939e9c0972e7748b5c57093c5b3531af9f7aef7aebb83

See more details on using hashes here.

File details

Details for the file greenlet-2.0.0a1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for greenlet-2.0.0a1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 676d9c5f0428da9f69621ff71091b4c02d952a2f7e71a47891cde93b9114f048
MD5 b038622f0f1df8459e9046dc854f6623
BLAKE2b-256 0fe58a8af7e77520f307b8457af8c4c25f7fd3ca96508fd1527486df6c164f52

See more details on using hashes here.

File details

Details for the file greenlet-2.0.0a1-cp38-cp38-manylinux2010_x86_64.whl.

File metadata

  • Download URL: greenlet-2.0.0a1-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 547.4 kB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.12

File hashes

Hashes for greenlet-2.0.0a1-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 a34b6d63ebaab722f79df4f79cbceab6fac2f96546561848a8ce1513a4478e16
MD5 29ce6f2451002623d9bb7b02c626ce83
BLAKE2b-256 525caff2df80b4dce903aaf9fdb871e9e3d15923ed81e259a250ea298adf41c1

See more details on using hashes here.

File details

Details for the file greenlet-2.0.0a1-cp38-cp38-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: greenlet-2.0.0a1-cp38-cp38-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 190.5 kB
  • Tags: CPython 3.8, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.12

File hashes

Hashes for greenlet-2.0.0a1-cp38-cp38-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 045a6cdd8d7ba5fffb82b9d4d35ae99bbc57afdd03a8b8eb161ec6fd0d2fc15b
MD5 b6253f36d18b4944ac05aa0bbd319ffe
BLAKE2b-256 5f1158ec2922335d0985e6ff09734ea1271458e00742d185ab36038d4893bdd6

See more details on using hashes here.

File details

Details for the file greenlet-2.0.0a1-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: greenlet-2.0.0a1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 179.9 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.7.5

File hashes

Hashes for greenlet-2.0.0a1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 ab951ebc9f4c63d9ba0518d533f358519e3633c3a263bfba8674ee0c5043bd1a
MD5 91ba9772e580815efdc59c43765deae0
BLAKE2b-256 9fd7823fc6829e3bb21266cf32d08c9bb7c252f037c1b75d0ecf47b8666e0ff0

See more details on using hashes here.

File details

Details for the file greenlet-2.0.0a1-cp37-cp37m-win32.whl.

File metadata

  • Download URL: greenlet-2.0.0a1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 175.9 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.7.5

File hashes

Hashes for greenlet-2.0.0a1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 ab6385c0a16c1d33ab45593f0cad49834918ad83d0406b58cd62f1454a1778c6
MD5 77aafd439c7ecaa8687ddde0ab0c865b
BLAKE2b-256 6ea14cdd25d3b838044ce06b01944290efff363a6deb4952b17b4aff312f2aa7

See more details on using hashes here.

File details

Details for the file greenlet-2.0.0a1-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: greenlet-2.0.0a1-cp37-cp37m-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.7m, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.12

File hashes

Hashes for greenlet-2.0.0a1-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a172161ec09ef67f8b88fce873f3b6b37ca99b4ddd2536147dc611d4d645bc28
MD5 9110f134d1198bee640f9fc6f8b94cc3
BLAKE2b-256 cef7141c75b587f090a3bed41a69b3267347b3e79871ca692091dcebf1edf22b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for greenlet-2.0.0a1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 61c2fbbf1cebb7cbaa35690143b5dc3212d764c7975957cc5aeacfd5686ad534
MD5 09796b04dc473ed0e78669554b6a9507
BLAKE2b-256 79659da88bb470ba92f0c698946ebc93ed299f9c307093f19037cc47d949b41f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for greenlet-2.0.0a1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a74c507dbef45ba85f8565a1bc297f97342a246078af5ea05330992d5a26e72c
MD5 897123d0b6300c30ea240ae7206b6c1d
BLAKE2b-256 f8b660c97a00a3a011eed8252d171061191888e5e0a169fbe8f41e4a9393a7bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for greenlet-2.0.0a1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b904cbb4b69fa959674043d39aa34ec84abca917037ec931d72003b60b311174
MD5 28d07845e29f0fe1ebb9aeee6f22f2a0
BLAKE2b-256 2cffc71bcffcb755042b88b9b07f660001232dcf0bbcc1608f49b737a0e6e71b

See more details on using hashes here.

File details

Details for the file greenlet-2.0.0a1-cp37-cp37m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: greenlet-2.0.0a1-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 516.3 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.12

File hashes

Hashes for greenlet-2.0.0a1-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 9dcc10e86164853c5267bfac43816048a12dcf4c898c1b83a2eb8d5933da9ee0
MD5 0b58c117a83d7fcd406f2a4e675225de
BLAKE2b-256 8d9f131110f361dcae4f5189d3925a87932cd93c31083a5c297c72f7d8a4cf49

See more details on using hashes here.

File details

Details for the file greenlet-2.0.0a1-cp37-cp37m-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: greenlet-2.0.0a1-cp37-cp37m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 189.8 kB
  • Tags: CPython 3.7m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.7.12

File hashes

Hashes for greenlet-2.0.0a1-cp37-cp37m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 5aa13f7f2650f39653c096cead3346e0a69cc17ad29a91a3a6776801f124b963
MD5 ea6b048f6e1b5d2e376528c3a1bba092
BLAKE2b-256 6d9caeafa7bdc65f185e49068a725259bf23c5b793a77a84baa8c354c0ecb5e0

See more details on using hashes here.

File details

Details for the file greenlet-2.0.0a1-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: greenlet-2.0.0a1-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 180.8 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.8.3 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.6.8

File hashes

Hashes for greenlet-2.0.0a1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 b3ff97e9761e3c392eaba4b7f17da9deb9e1177b372313611ee2358a19f235bb
MD5 ad787fa3e74c3743145e0129124525fd
BLAKE2b-256 8263ca5edf342d9544aa73557a772e66c491296b1c08e3c77695cc2a88201a5b

See more details on using hashes here.

File details

Details for the file greenlet-2.0.0a1-cp36-cp36m-win32.whl.

File metadata

  • Download URL: greenlet-2.0.0a1-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 176.3 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.8.3 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.6.8

File hashes

Hashes for greenlet-2.0.0a1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 80e8f41031b26856b8e4a0f65a395bb57cb3fcc22a810f87994a266f63f22fd0
MD5 4ea2294c667ee323bfce70114ceef4f6
BLAKE2b-256 68e14aebf82a77a09d9357a078fbac3e45542f491a9e409448ec9be7d5ab546a

See more details on using hashes here.

File details

Details for the file greenlet-2.0.0a1-cp36-cp36m-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: greenlet-2.0.0a1-cp36-cp36m-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.6m, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.12

File hashes

Hashes for greenlet-2.0.0a1-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 7bf83a6b7f068e631cfae0a0fc9f7ca73bc8115c0d6240131b1d5c5d7a65bbc2
MD5 1abd4332889610d8cc6dac8891528952
BLAKE2b-256 37d00719e135f38a026d8a7664718e00ab59d859e99b20238bcd1000c0fc5ee2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for greenlet-2.0.0a1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5f9a1fdd3339cd2fcaa2e768fb297429601888ef28ab9509a34cb3dd4497c88f
MD5 e6232e2eca996e31abea052267f5d689
BLAKE2b-256 7460044f3804a0a2c56d1d4d003002969a2df0f0511b9b4d61b6d4a2f6d72855

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for greenlet-2.0.0a1-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 85a8b1bfccf88326cf36a43a6cd7990afa22f0a02da624ca18ac7eb16bc14edd
MD5 57ecd336980fb7add946ba9986e1a30d
BLAKE2b-256 e24605821af91e93203b869481504611110545e266376fe9d6fd1d7812f348e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for greenlet-2.0.0a1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9d531a58f3feb283f120bacc817e4d75289bde8263363fbfeedf96376a1c68a8
MD5 e79b5f2376b7353ce7dc55c189244714
BLAKE2b-256 1f6ee3f41bec2e26a354914734347337f3f1d61fd1fc7b5f35dd212fdc78be4e

See more details on using hashes here.

File details

Details for the file greenlet-2.0.0a1-cp36-cp36m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: greenlet-2.0.0a1-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 511.6 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.12

File hashes

Hashes for greenlet-2.0.0a1-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 c006d07a64777466b4ecf75a3fc86f7c687021e9b1fae0a0c3157ae93ce44563
MD5 8c1e31a7c0be84e3f5a8e8682b71ccbb
BLAKE2b-256 9a918032a8c2e894388f0f1443885837d4ea6fa87926852b8e147c6725287f90

See more details on using hashes here.

File details

Details for the file greenlet-2.0.0a1-cp36-cp36m-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: greenlet-2.0.0a1-cp36-cp36m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 189.4 kB
  • Tags: CPython 3.6m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.8.3 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.6.15

File hashes

Hashes for greenlet-2.0.0a1-cp36-cp36m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 03e6e40a1c6d523e59e4b80173986dfb4bdefbbd14104a6f1a9d321bb4dc0226
MD5 e0307e9aaad669532656c092bfc13554
BLAKE2b-256 851a8baf4031085d51574e393f332a43d027641461dc7582df0a2d3076eabe36

See more details on using hashes here.

File details

Details for the file greenlet-2.0.0a1-cp35-cp35m-win_amd64.whl.

File metadata

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

File hashes

Hashes for greenlet-2.0.0a1-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 5667b436e4a365f9bc9bb98c0d5356c1929a62a51d78373c92870a138ada273a
MD5 055a7dd67b34c3c59585517cf59761b1
BLAKE2b-256 6402c2191943d55bdffed04e909c8f71316ecfefb2f465068b174617e1097802

See more details on using hashes here.

File details

Details for the file greenlet-2.0.0a1-cp35-cp35m-win32.whl.

File metadata

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

File hashes

Hashes for greenlet-2.0.0a1-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 4c79da840373815c8ebbde0e64aa0b74fbfe74394665dcf318cfd7220ca9ed8b
MD5 7b31a6b4f003a0c9813a6f0db815880b
BLAKE2b-256 d7ef8c0df18a04608bfcba8ed050fb4830a92d98ab31dc39ab75720119b8d23a

See more details on using hashes here.

File details

Details for the file greenlet-2.0.0a1-cp35-cp35m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: greenlet-2.0.0a1-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 511.9 kB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.12

File hashes

Hashes for greenlet-2.0.0a1-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 da809e3861a8f697727b6bdf4c735184912215d2eb9df15eb7ad3d6c9d533a52
MD5 d2705c0b44af0ee637889ff4cafb6501
BLAKE2b-256 29d1ca2565c753bdaa71391b2c109a8400f42a04c24640d43805d5260aaea2a6

See more details on using hashes here.

File details

Details for the file greenlet-2.0.0a1-cp35-cp35m-macosx_10_14_x86_64.whl.

File metadata

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

File hashes

Hashes for greenlet-2.0.0a1-cp35-cp35m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 44440890e79d8bded5893fa4c322c3d8bf18fdf87657fd6523252ec247be6f4b
MD5 c579e47eddc26ee41c38dcbaa530db4f
BLAKE2b-256 1953ef327713fc9c517f34971f271f751b21c1e2e734dfab3de571bd1cf99034

See more details on using hashes here.

File details

Details for the file greenlet-2.0.0a1-cp27-cp27mu-manylinux2010_x86_64.whl.

File metadata

  • Download URL: greenlet-2.0.0a1-cp27-cp27mu-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 499.6 kB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.12

File hashes

Hashes for greenlet-2.0.0a1-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 08f03790cd6105a5b0f452d798a22bd72944bda41dc674d39dc8e485b730056e
MD5 9afb42534e9a63b38152b1134f8afe7b
BLAKE2b-256 e225c1b56ead18c760090024f2f9cda5f97ae7bf86e6dcd1a4e4618041f93958

See more details on using hashes here.

File details

Details for the file greenlet-2.0.0a1-cp27-cp27m-win_amd64.whl.

File metadata

  • Download URL: greenlet-2.0.0a1-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 179.6 kB
  • Tags: CPython 2.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.8.2 requests/2.27.1 setuptools/44.1.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/2.7.17

File hashes

Hashes for greenlet-2.0.0a1-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 22b2111811abbd2af884426b2286b41ad3dbec15dcd362f68fc319abdf2d6f36
MD5 6a9a0733534fb6d0b92b218cd5d03312
BLAKE2b-256 1f46f4a3d5787e1d1c73cbf9b2baefc5f955365153132ccb68801d2c7af21b0d

See more details on using hashes here.

File details

Details for the file greenlet-2.0.0a1-cp27-cp27m-win32.whl.

File metadata

  • Download URL: greenlet-2.0.0a1-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 172.1 kB
  • Tags: CPython 2.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.8.2 requests/2.27.1 setuptools/44.1.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/2.7.17

File hashes

Hashes for greenlet-2.0.0a1-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 68ebc87166fc0a13d9fb0b7f231790369ea03ca0b7efa6d100ea2f701dfb6a6a
MD5 687d8db541341489b8cbcb8e625c0e54
BLAKE2b-256 6ae5829bcbc8c1f50953db717510b7d43df677799bd2d52d06ec8e2844f3d645

See more details on using hashes here.

File details

Details for the file greenlet-2.0.0a1-cp27-cp27m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: greenlet-2.0.0a1-cp27-cp27m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 499.6 kB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/4.10.1 pkginfo/1.8.2 requests/2.27.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.12

File hashes

Hashes for greenlet-2.0.0a1-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 b68ff6925dd210a4eac47df411316168a2448178f837fcb01597d9a183ad8603
MD5 c72a626b9b6c585f92daf60170ff57f6
BLAKE2b-256 d6f0f6148dff0c721175d98202de1137317d46231694229b377f87c721884980

See more details on using hashes here.

File details

Details for the file greenlet-2.0.0a1-cp27-cp27m-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: greenlet-2.0.0a1-cp27-cp27m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 189.2 kB
  • Tags: CPython 2.7m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.15.0 pkginfo/1.8.2 requests/2.27.1 setuptools/44.1.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/2.7.18

File hashes

Hashes for greenlet-2.0.0a1-cp27-cp27m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 ce2ec312bcb516a83780b659fd008fdd26af449b653c8ffa52e203a397765cc2
MD5 e4268e5abf62e246c55f1270516d7779
BLAKE2b-256 a5f05687f1656fa1d4abb206fbc3d71457c108ff647b227b60c58589d3e71df0

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