Skip to main content

HTTP client library for gevent

Project description

GitHub Workflow CI Status PyPI Python Version from PEP 621 TOML PyPI - Downloads

geventhttpclient

A high performance, concurrent HTTP client library for python using gevent.

gevent.httplib support for patching http.client was removed in gevent 1.0, geventhttpclient now provides that missing functionality.

geventhttpclient uses a fast http parser, written in C.

geventhttpclient has been specifically designed for high concurrency, streaming and support HTTP 1.1 persistent connections. More generally it is designed for efficiently pulling from REST APIs and streaming APIs like Twitter's.

Safe SSL support is provided by default. geventhttpclient depends on the certifi CA Bundle. This is the same CA Bundle which ships with the Requests codebase, and is derived from Mozilla Firefox's canonical set.

Since version 2.3, geventhttpclient features a largely requests compatible interface. It covers basic HTTP usage including cookie management, form data encoding or decoding of compressed data, but otherwise isn't as feature rich as the original requests. For simple use-cases, it can serve as a drop-in replacement.

import geventhttpclient as requests
requests.get("https://github.com").text
requests.post("http://httpbingo.org/post", data="asdfasd").json()

from geventhttpclient import Session
s = Session()
s.get("http://httpbingo.org/headers").json()
s.get("https://github.com").content

This interface builds on top of the lower level HTTPClient.

from geventhttpclient import HTTPClient
from geventhttpclient.url import URL

url = URL("http://gevent.org/")
client = HTTPClient(url.host)
response = client.get(url.request_uri)
response.status_code
body = response.read()
client.close()

httplib compatibility and monkey patch

geventhttpclient.httplib module contains classes for drop in replacement of http.client connection and response objects. If you use http.client directly you can replace the httplib imports by geventhttpclient.httplib.

# from http.client import HTTPConnection
from geventhttpclient.httplib import HTTPConnection

If you use httplib2, urllib or urllib2; you can patch httplib to use the wrappers from geventhttpclient. For httplib2, make sure you patch before you import or the super() calls will fail.

import geventhttpclient.httplib
geventhttpclient.httplib.patch()

import httplib2

High Concurrency

HTTPClient has a connection pool built in and is greenlet safe by design. You can use the same instance among several greenlets. It is the low level building block of this library.

import gevent.pool
import json

from geventhttpclient import HTTPClient
from geventhttpclient.url import URL


# go to http://developers.facebook.com/tools/explorer and copy the access token
TOKEN = "<MY_DEV_TOKEN>"

url = URL("https://graph.facebook.com/me/friends", params={"access_token": TOKEN})

# setting the concurrency to 10 allow to create 10 connections and
# reuse them.
client = HTTPClient.from_url(url, concurrency=10)

response = client.get(url.request_uri)
assert response.status_code == 200

# response comply to the read protocol. It passes the stream to
# the json parser as it's being read.
data = json.load(response)["data"]

def print_friend_username(client, friend_id):
    friend_url = URL(f"/{friend_id}", params={"access_token": TOKEN})
    # the greenlet will block until a connection is available
    response = client.get(friend_url.request_uri)
    assert response.status_code == 200
    friend = json.load(response)
    if "username" in friend:
        print(f"{friend['username']}: {friend['name']}")
    else:
        print(f"{friend['name']} has no username.")

# allow to run 20 greenlet at a time, this is more than concurrency
# of the http client but isn't a problem since the client has its own
# connection pool.
pool = gevent.pool.Pool(20)
for item in data:
    friend_id = item["id"]
    pool.spawn(print_friend_username, client, friend_id)

pool.join()
client.close()

Streaming

geventhttpclient supports streaming. Response objects have a read(n) and readline() method that read the stream incrementally. See examples/twitter_streaming.py for pulling twitter stream API.

Here is an example on how to download a big file chunk by chunk to save memory:

from geventhttpclient import HTTPClient, URL

url = URL("http://127.0.0.1:80/100.dat")
client = HTTPClient.from_url(url)
response = client.get(url.query_string)
assert response.status_code == 200

CHUNK_SIZE = 1024 * 16 # 16KB
with open("/tmp/100.dat", "w") as f:
    data = response.read(CHUNK_SIZE)
    while data:
        f.write(data)
        data = response.read(CHUNK_SIZE)

Benchmarks

The benchmark runs 10000 GET requests against a local nginx server in the default configuration with a concurrency of 10. See benchmarks folder. The requests per second for a couple of popular clients is given in the table below. Please read benchmarks/README.md for more details. Also note, HTTPX is better be used with asyncio, not gevent.

HTTP Client RPS
GeventHTTPClient 7268.9
Httplib2 (patched) 2323.9
Urllib3 2242.5
Requests 1046.1
Httpx 770.3

Linux(x86_64), Python 3.11.6 @ Intel i7-7560U

License

This package is distributed under the MIT license. Previous versions of geventhttpclient used http_parser.c, which in turn was based on http/ngx_http_parse.c from NGINX, copyright Igor Sysoev, Joyent, Inc., and other Node contributors. For more information, see http://github.com/joyent/http-parser

Project details


Release history Release notifications | RSS feed

Download files

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

Source Distribution

geventhttpclient-2.3.4.tar.gz (83.5 kB view details)

Uploaded Source

Built Distributions

geventhttpclient-2.3.4-pp311-pypy311_pp73-win_amd64.whl (49.0 kB view details)

Uploaded PyPyWindows x86-64

geventhttpclient-2.3.4-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (54.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

geventhttpclient-2.3.4-pp311-pypy311_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (54.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

geventhttpclient-2.3.4-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (58.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

geventhttpclient-2.3.4-pp311-pypy311_pp73-macosx_11_0_arm64.whl (50.1 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

geventhttpclient-2.3.4-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (50.8 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

geventhttpclient-2.3.4-pp310-pypy310_pp73-win_amd64.whl (49.0 kB view details)

Uploaded PyPyWindows x86-64

geventhttpclient-2.3.4-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (54.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

geventhttpclient-2.3.4-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (54.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

geventhttpclient-2.3.4-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (58.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

geventhttpclient-2.3.4-pp310-pypy310_pp73-macosx_11_0_arm64.whl (50.1 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

geventhttpclient-2.3.4-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (50.8 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

geventhttpclient-2.3.4-pp39-pypy39_pp73-win_amd64.whl (49.0 kB view details)

Uploaded PyPyWindows x86-64

geventhttpclient-2.3.4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (54.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

geventhttpclient-2.3.4-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (54.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

geventhttpclient-2.3.4-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (58.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

geventhttpclient-2.3.4-pp39-pypy39_pp73-macosx_11_0_arm64.whl (50.1 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

geventhttpclient-2.3.4-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (50.8 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

geventhttpclient-2.3.4-cp313-cp313-win_amd64.whl (49.0 kB view details)

Uploaded CPython 3.13Windows x86-64

geventhttpclient-2.3.4-cp313-cp313-win32.whl (48.4 kB view details)

Uploaded CPython 3.13Windows x86

geventhttpclient-2.3.4-cp313-cp313-musllinux_1_2_x86_64.whl (112.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

geventhttpclient-2.3.4-cp313-cp313-musllinux_1_2_ppc64le.whl (118.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

geventhttpclient-2.3.4-cp313-cp313-musllinux_1_2_i686.whl (113.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

geventhttpclient-2.3.4-cp313-cp313-musllinux_1_2_aarch64.whl (111.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

geventhttpclient-2.3.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (124.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

geventhttpclient-2.3.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (119.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

geventhttpclient-2.3.4-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (114.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

geventhttpclient-2.3.4-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (115.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

geventhttpclient-2.3.4-cp313-cp313-macosx_11_0_arm64.whl (52.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

geventhttpclient-2.3.4-cp313-cp313-macosx_10_13_x86_64.whl (52.6 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

geventhttpclient-2.3.4-cp313-cp313-macosx_10_13_universal2.whl (72.0 kB view details)

Uploaded CPython 3.13macOS 10.13+ universal2 (ARM64, x86-64)

geventhttpclient-2.3.4-cp312-cp312-win_amd64.whl (49.0 kB view details)

Uploaded CPython 3.12Windows x86-64

geventhttpclient-2.3.4-cp312-cp312-win32.whl (48.4 kB view details)

Uploaded CPython 3.12Windows x86

geventhttpclient-2.3.4-cp312-cp312-musllinux_1_2_x86_64.whl (112.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

geventhttpclient-2.3.4-cp312-cp312-musllinux_1_2_ppc64le.whl (118.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

geventhttpclient-2.3.4-cp312-cp312-musllinux_1_2_i686.whl (113.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

geventhttpclient-2.3.4-cp312-cp312-musllinux_1_2_aarch64.whl (111.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

geventhttpclient-2.3.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (124.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

geventhttpclient-2.3.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (119.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

geventhttpclient-2.3.4-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (114.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

geventhttpclient-2.3.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (115.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

geventhttpclient-2.3.4-cp312-cp312-macosx_11_0_arm64.whl (52.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

geventhttpclient-2.3.4-cp312-cp312-macosx_10_13_x86_64.whl (52.6 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

geventhttpclient-2.3.4-cp312-cp312-macosx_10_13_universal2.whl (72.0 kB view details)

Uploaded CPython 3.12macOS 10.13+ universal2 (ARM64, x86-64)

geventhttpclient-2.3.4-cp311-cp311-win_amd64.whl (49.0 kB view details)

Uploaded CPython 3.11Windows x86-64

geventhttpclient-2.3.4-cp311-cp311-win32.whl (48.3 kB view details)

Uploaded CPython 3.11Windows x86

geventhttpclient-2.3.4-cp311-cp311-musllinux_1_2_x86_64.whl (111.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

geventhttpclient-2.3.4-cp311-cp311-musllinux_1_2_ppc64le.whl (117.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

geventhttpclient-2.3.4-cp311-cp311-musllinux_1_2_i686.whl (112.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

geventhttpclient-2.3.4-cp311-cp311-musllinux_1_2_aarch64.whl (111.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

geventhttpclient-2.3.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (123.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

geventhttpclient-2.3.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (118.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

geventhttpclient-2.3.4-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (113.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

geventhttpclient-2.3.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (115.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

geventhttpclient-2.3.4-cp311-cp311-macosx_11_0_arm64.whl (52.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

geventhttpclient-2.3.4-cp311-cp311-macosx_10_9_x86_64.whl (52.6 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

geventhttpclient-2.3.4-cp311-cp311-macosx_10_9_universal2.whl (71.9 kB view details)

Uploaded CPython 3.11macOS 10.9+ universal2 (ARM64, x86-64)

geventhttpclient-2.3.4-cp310-cp310-win_amd64.whl (49.0 kB view details)

Uploaded CPython 3.10Windows x86-64

geventhttpclient-2.3.4-cp310-cp310-win32.whl (48.3 kB view details)

Uploaded CPython 3.10Windows x86

geventhttpclient-2.3.4-cp310-cp310-musllinux_1_2_x86_64.whl (111.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

geventhttpclient-2.3.4-cp310-cp310-musllinux_1_2_ppc64le.whl (117.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

geventhttpclient-2.3.4-cp310-cp310-musllinux_1_2_i686.whl (112.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

geventhttpclient-2.3.4-cp310-cp310-musllinux_1_2_aarch64.whl (111.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

geventhttpclient-2.3.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (123.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

geventhttpclient-2.3.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (118.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

geventhttpclient-2.3.4-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (113.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

geventhttpclient-2.3.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (114.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

geventhttpclient-2.3.4-cp310-cp310-macosx_11_0_arm64.whl (52.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

geventhttpclient-2.3.4-cp310-cp310-macosx_10_9_x86_64.whl (52.6 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

geventhttpclient-2.3.4-cp310-cp310-macosx_10_9_universal2.whl (71.9 kB view details)

Uploaded CPython 3.10macOS 10.9+ universal2 (ARM64, x86-64)

geventhttpclient-2.3.4-cp39-cp39-win_amd64.whl (49.0 kB view details)

Uploaded CPython 3.9Windows x86-64

geventhttpclient-2.3.4-cp39-cp39-win32.whl (48.3 kB view details)

Uploaded CPython 3.9Windows x86

geventhttpclient-2.3.4-cp39-cp39-musllinux_1_2_x86_64.whl (111.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

geventhttpclient-2.3.4-cp39-cp39-musllinux_1_2_ppc64le.whl (117.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

geventhttpclient-2.3.4-cp39-cp39-musllinux_1_2_i686.whl (112.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

geventhttpclient-2.3.4-cp39-cp39-musllinux_1_2_aarch64.whl (110.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

geventhttpclient-2.3.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (123.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

geventhttpclient-2.3.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (118.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

geventhttpclient-2.3.4-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (113.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

geventhttpclient-2.3.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (114.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

geventhttpclient-2.3.4-cp39-cp39-macosx_11_0_arm64.whl (52.0 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

geventhttpclient-2.3.4-cp39-cp39-macosx_10_9_x86_64.whl (52.6 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

geventhttpclient-2.3.4-cp39-cp39-macosx_10_9_universal2.whl (71.9 kB view details)

Uploaded CPython 3.9macOS 10.9+ universal2 (ARM64, x86-64)

File details

Details for the file geventhttpclient-2.3.4.tar.gz.

File metadata

  • Download URL: geventhttpclient-2.3.4.tar.gz
  • Upload date:
  • Size: 83.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for geventhttpclient-2.3.4.tar.gz
Algorithm Hash digest
SHA256 1749f75810435a001fc6d4d7526c92cf02b39b30ab6217a886102f941c874222
MD5 34d06a7fadb54de4aeac889c44643a29
BLAKE2b-256 89191ca8de73dcc0596d3df01be299e940d7fc3bccbeb6f62bb8dd2d427a3a50

See more details on using hashes here.

File details

Details for the file geventhttpclient-2.3.4-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for geventhttpclient-2.3.4-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 5f71c75fc138331cbbe668a08951d36b641d2c26fb3677d7e497afb8419538db
MD5 d3af1adb7ef69e1ea049db4ce702d49d
BLAKE2b-256 a8732e03125170485193fcc99ef23b52749543d6c6711706d58713fe315869c4

See more details on using hashes here.

File details

Details for the file geventhttpclient-2.3.4-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for geventhttpclient-2.3.4-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fac2635f68b3b6752c2a576833d9d18f0af50bdd4bd7dd2d2ca753e3b8add84c
MD5 3c5917d18cf0d369888b67f775398861
BLAKE2b-256 e8f7d3e04f95de14db3ca4fe126eb0e3ec24356125c5ca1f471a9b28b1d7714d

See more details on using hashes here.

File details

Details for the file geventhttpclient-2.3.4-pp311-pypy311_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for geventhttpclient-2.3.4-pp311-pypy311_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d8bde667d0ce46065fe57f8ff24b2e94f620a5747378c97314dcfc8fbab35b73
MD5 53ec87ffb48729935e9822fda3896d81
BLAKE2b-256 5592d874ff7e52803cef3850bf8875816a9f32e0a154b079a74e6663534bef30

See more details on using hashes here.

File details

Details for the file geventhttpclient-2.3.4-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for geventhttpclient-2.3.4-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 71206ab89abdd0bd5fee21e04a3995ec1f7d8ae1478ee5868f9e16e85a831653
MD5 0821d858a002fa9a789237636469cc31
BLAKE2b-256 45a7d80c9ec1663f70f4bd976978bf86b3d0d123a220c4ae636c66d02d3accdb

See more details on using hashes here.

File details

Details for the file geventhttpclient-2.3.4-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for geventhttpclient-2.3.4-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0129ce7ef50e67d66ea5de44d89a3998ab778a4db98093d943d6855323646fa5
MD5 1a5b8e92e3b7b8457081eb9413b2750c
BLAKE2b-256 2b4386479c278e96cd3e190932b0003d5b8e415660d9e519d59094728ae249da

See more details on using hashes here.

File details

Details for the file geventhttpclient-2.3.4-pp311-pypy311_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for geventhttpclient-2.3.4-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 707a66cd1e3bf06e2c4f8f21d3b4e6290c9e092456f489c560345a8663cdd93e
MD5 1a5f3317cb7201a3be52bf62c41f280d
BLAKE2b-256 0ba7de506f91a1ec67d3c4a53f2aa7475e7ffb869a17b71b94ba370a027a69ac

See more details on using hashes here.

File details

Details for the file geventhttpclient-2.3.4-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for geventhttpclient-2.3.4-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 fad0666d34122b5ad6de2715c0597b23eab523cc57caf38294138249805da15f
MD5 6c1665d9f140277c6f7a8484f0306e16
BLAKE2b-256 af4b31b1d0a98d84c672531099ca18db67c3a5f3f43d8829cc00e977378b5a82

See more details on using hashes here.

File details

Details for the file geventhttpclient-2.3.4-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for geventhttpclient-2.3.4-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 195e396c59f25958ad6f79d2c58431cb8b1ff39b5821e6507bf539c79b5681dc
MD5 3dbf0d929bb9c0fddee288c7155de03f
BLAKE2b-256 881a848c3b2b23cace91bd93b9498f8da9b259caf7265dce22abf2236d9bc1ef

See more details on using hashes here.

File details

Details for the file geventhttpclient-2.3.4-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for geventhttpclient-2.3.4-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 75585278b2e3cd1a866bc2a95be7e0ab53c51c35c9e0e75161ff4f30817b3da8
MD5 aec03844054f15091f758df0f4ed1b4b
BLAKE2b-256 822b760b167eb24fb450ad918df433cad0d439e94c2f7ada8c4365825ba3c582

See more details on using hashes here.

File details

Details for the file geventhttpclient-2.3.4-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for geventhttpclient-2.3.4-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6c87a1762aba525b00aac34e1ffb97d083f94ef505282a461147298f32b2ae27
MD5 e7b6135a601d1a42bf7d6ad02e498f8f
BLAKE2b-256 d493b216267d33e7c00fda5618db69cb135ffa74a6329f9fbe164cdf8144e48e

See more details on using hashes here.

File details

Details for the file geventhttpclient-2.3.4-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for geventhttpclient-2.3.4-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4c24db3faa829244ded6805b47aec408df2f5b15fe681e957c61543070f6e405
MD5 c6ba6e9ce8abd75d3884de4d492bde24
BLAKE2b-256 5d2e94ce9a05cdf6c6885671d2edb4ff6ff35ad83f30fc4310c88dd4b84f189b

See more details on using hashes here.

File details

Details for the file geventhttpclient-2.3.4-pp310-pypy310_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for geventhttpclient-2.3.4-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 9f5514890bbb54a7c35fb66120c7659040182d54e735fe717642b67340b8131a
MD5 e3bb3e0d5b9042337e59691f7abacd0e
BLAKE2b-256 66d22f0716f99dc772fb946f063aa9c7cd36624169efa8fbe1b64c6b37b3e463

See more details on using hashes here.

File details

Details for the file geventhttpclient-2.3.4-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for geventhttpclient-2.3.4-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 e310f6313ccba476dc1f393fd40738ca3b7fa3bb41c31c38f9641b1927306ba2
MD5 2ed15f3dfe0b910c9084e17742126290
BLAKE2b-256 88e162ab5894c263f0e2e209c17671d97de504722dc5658181215770a610a1b0

See more details on using hashes here.

File details

Details for the file geventhttpclient-2.3.4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for geventhttpclient-2.3.4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 73a88925055acc56811927614bb8be3e784fdd5149819fa26c2af6a43a2e43f5
MD5 bdca586533e82cbe39ab9208e1510174
BLAKE2b-256 21fc13a307bc9b3bcc3ef3e5780767cf419b633f138a51e096a607ba6c3dcec3

See more details on using hashes here.

File details

Details for the file geventhttpclient-2.3.4-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for geventhttpclient-2.3.4-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c9db12e764ec1a4648d67b1501f7001e30f92e05a1692a75920ab53670c4958b
MD5 5a96690e715598faee0593122abce14d
BLAKE2b-256 8ab1c265b9fee21e9ea4a93d74aaed5864a656a7656000b19f43b9b4c2e0c126

See more details on using hashes here.

File details

Details for the file geventhttpclient-2.3.4-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for geventhttpclient-2.3.4-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a3ba0aa08f5eaa7165bf90fb06adf124511dbdf517500ab0793883f648feaaf8
MD5 b018066084d0daf65776f1c0eceead0e
BLAKE2b-256 2ea3e795e4a742743358463fbf3a332ca4da02b0cfc15e8ff72caaf0c6cb161d

See more details on using hashes here.

File details

Details for the file geventhttpclient-2.3.4-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for geventhttpclient-2.3.4-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 888e34d2e53d0f1dab85ff3e5ca81b8b7949b9e4702439f66f4ebf61189eb923
MD5 12de2b48f568aac6234d6298ce1789e9
BLAKE2b-256 1720193d32930a2511a74be3eb2a796be979e8205c3952a529148535a980bfa0

See more details on using hashes here.

File details

Details for the file geventhttpclient-2.3.4-pp39-pypy39_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for geventhttpclient-2.3.4-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 1d23fe37b9d79b17dbce2d086006950d4527a2f95286046b7229e1bd3d8ac5e4
MD5 4f8d4ff6e5ccbe604b3586d0b0d91f82
BLAKE2b-256 cc81d15dcd4ebeb3e74714158f97d0bc3fad391f4ec8476a77055b4aabc81775

See more details on using hashes here.

File details

Details for the file geventhttpclient-2.3.4-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for geventhttpclient-2.3.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 72575c5b502bf26ececccb905e4e028bb922f542946be701923e726acf305eb6
MD5 6c9520de3eb50434efbbc0b026676cce
BLAKE2b-256 ec19ef3cb21e7e95b14cfcd21e3ba7fe3d696e171682dfa43ab8c0a727cac601

See more details on using hashes here.

File details

Details for the file geventhttpclient-2.3.4-cp313-cp313-win32.whl.

File metadata

File hashes

Hashes for geventhttpclient-2.3.4-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 4e492b9ab880f98f8a9cc143b96ea72e860946eae8ad5fb2837cede2a8f45154
MD5 be76455ed5b8d731fd3f6e8f75b246c7
BLAKE2b-256 217e08a615bec095c288f997951e42e48b262d43c6081bef33cfbfad96ab9658

See more details on using hashes here.

File details

Details for the file geventhttpclient-2.3.4-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for geventhttpclient-2.3.4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8d1d0db89c1c8f3282eac9a22fda2b4082e1ed62a2107f70e3f1de1872c7919f
MD5 03e585967407ed2538a4aee4ee1ddf8e
BLAKE2b-256 ca369065bb51f261950c42eddf8718e01a9ff344d8082e31317a8b6677be9bd6

See more details on using hashes here.

File details

Details for the file geventhttpclient-2.3.4-cp313-cp313-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for geventhttpclient-2.3.4-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 227579b703085c4e5c6d5217ad6565b19ac8d1164404133e5874efaae1905114
MD5 c8e2aa7d847c66b94ba61fa76ca6f47b
BLAKE2b-256 d3675ae5d5878b06397a7b54334d1d31bb78cefc950ae890c2b8f5c917eb271e

See more details on using hashes here.

File details

Details for the file geventhttpclient-2.3.4-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for geventhttpclient-2.3.4-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 42b6f6afb0d3aab6a013c9cdb97e19bf4fe08695975670d0a018113d24cb344c
MD5 302d1ce9eefccce74e70e550925966c2
BLAKE2b-256 d39cae04e4033459b8142788dad80d8d0b42d460bc6db9150e0815c2d0a02cb4

See more details on using hashes here.

File details

Details for the file geventhttpclient-2.3.4-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for geventhttpclient-2.3.4-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 525bd192705b5cb41a7cc3fe41fca194bfd6b5b59997ab9fe68fe0a82dab6140
MD5 9f0c67300320723fc48bdd31f75bb052
BLAKE2b-256 a37958802d300950dbd7d4e31eb24afd7c270fc7900ff3923fd266cc915bb086

See more details on using hashes here.

File details

Details for the file geventhttpclient-2.3.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for geventhttpclient-2.3.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fe705e7656bc6982a463a4ed7f9b1db8c78c08323f1d45d0d1d77063efa0ce96
MD5 767420c043bc3e827bb94182616e5ccc
BLAKE2b-256 4f56095a46af86476372064128162eccbd2ba4a7721503759890d32ea701d5fd

See more details on using hashes here.

File details

Details for the file geventhttpclient-2.3.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for geventhttpclient-2.3.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9b50d9daded5d36193d67e2fc30e59752262fcbbdc86e8222c7df6b93af0346a
MD5 c73a6a8372f3c89d74977b03f3c33ea6
BLAKE2b-256 ec5bc0c30ccd9d06c603add3f2d6abd68bd98430ee9730dc5478815759cf07f7

See more details on using hashes here.

File details

Details for the file geventhttpclient-2.3.4-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for geventhttpclient-2.3.4-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e9ba526e07ccaf4f1c2cd3395dda221139f01468b6eee1190d4a616f187a0378
MD5 9b9ee14691659422c682fdc6c34fe6cc
BLAKE2b-256 7377c4e7c5bce0199428fdb811d6adf6e347180d89eaa1b9b723f711f6bbc830

See more details on using hashes here.

File details

Details for the file geventhttpclient-2.3.4-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for geventhttpclient-2.3.4-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 69668589359db4cbb9efa327dda5735d1e74145e6f0a9ffa50236d15cf904053
MD5 a17039adc4b0d8562c6789573bb9b21d
BLAKE2b-256 ae127c9ba94b58f7954a83d33183152ce6bf5bda10c08ebe47d79a314cd33e29

See more details on using hashes here.

File details

Details for the file geventhttpclient-2.3.4-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for geventhttpclient-2.3.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a4bca1151b8cd207eef6d5cb3c720c562b2aa7293cf113a68874e235cfa19c31
MD5 f0607a28ab435a1bf0d3fe833d24f268
BLAKE2b-256 47d2cf0dbc333304700e68cee9347f654b56e8b0f93a341b8b0d027ee96800d6

See more details on using hashes here.

File details

Details for the file geventhttpclient-2.3.4-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for geventhttpclient-2.3.4-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 15b2567137734183efda18e4d6245b18772e648b6a25adea0eba8b3a8b0d17e8
MD5 16a958c8eafe1f9052064df0c4cd7765
BLAKE2b-256 f4345e77d9a31d93409a8519cf573843288565272ae5a016be9c9293f56c50a1

See more details on using hashes here.

File details

Details for the file geventhttpclient-2.3.4-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for geventhttpclient-2.3.4-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 be64c5583884c407fc748dedbcb083475d5b138afb23c6bc0836cbad228402cc
MD5 df49badfe13bf52c8fb26e6ec5802849
BLAKE2b-256 ffad132fddde6e2dca46d6a86316962437acd2bfaeb264db4e0fae83c529eb04

See more details on using hashes here.

File details

Details for the file geventhttpclient-2.3.4-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for geventhttpclient-2.3.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 46eda9a9137b0ca7886369b40995d2a43a5dff033d0a839a54241015d1845d41
MD5 c3d812f4f28eb7cb0b5aab38c20f8fe4
BLAKE2b-256 cff47e5ee2f460bbbd09cb5d90ff63a1cf80d60f1c60c29dac20326324242377

See more details on using hashes here.

File details

Details for the file geventhttpclient-2.3.4-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for geventhttpclient-2.3.4-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 83143b41bde2eb010c7056f142cb764cfbf77f16bf78bda2323a160767455cf5
MD5 9d1b9eb2b42870b115edad64fc8641c7
BLAKE2b-256 9cc4417d12fc2a31ad93172b03309c7f8c3a8bbd0cf25b95eb7835de26b24453

See more details on using hashes here.

File details

Details for the file geventhttpclient-2.3.4-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for geventhttpclient-2.3.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 54fbbcca2dcf06f12a337dd8f98417a09a49aa9d9706aa530fc93acb59b7d83c
MD5 97c1f9a3d5edb77d27438636a5a7349c
BLAKE2b-256 2f7982782283d613570373990b676a0966c1062a38ca8f41a0f20843c5808e01

See more details on using hashes here.

File details

Details for the file geventhttpclient-2.3.4-cp312-cp312-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for geventhttpclient-2.3.4-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 407cb68a3c3a2c4f5d503930298f2b26ae68137d520e8846d8e230a9981d9334
MD5 91d75a01509effecf9c98d43d547e18d
BLAKE2b-256 52eb20435585a6911b26e65f901a827ef13551c053133926f8c28a7cca0fb08e

See more details on using hashes here.

File details

Details for the file geventhttpclient-2.3.4-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for geventhttpclient-2.3.4-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9d54b8e9a44890159ae36ba4ae44efd8bb79ff519055137a340d357538a68aa3
MD5 b1bc5f8ac6db2df0226ff6651b41085b
BLAKE2b-256 d8a388fd71fe6bbe1315a2d161cbe2cc7810c357d99bced113bea1668ede8bcf

See more details on using hashes here.

File details

Details for the file geventhttpclient-2.3.4-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for geventhttpclient-2.3.4-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fccc2023a89dfbce2e1b1409b967011e45d41808df81b7fa0259397db79ba647
MD5 5516e3597838374f86f9aff6d12deeef
BLAKE2b-256 b3ec3a3000bda432953abcc6f51d008166fa7abc1eeddd1f0246933d83854f73

See more details on using hashes here.

File details

Details for the file geventhttpclient-2.3.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for geventhttpclient-2.3.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 62f3a29bf242ecca6360d497304900683fd8f42cbf1de8d0546c871819251dad
MD5 b831d46878b92381c823c36a86dad8fe
BLAKE2b-256 ea0e59e4ab506b3c19fc72e88ca344d150a9028a00c400b1099637100bec26fc

See more details on using hashes here.

File details

Details for the file geventhttpclient-2.3.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for geventhttpclient-2.3.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 41f2dcc0805551ea9d49f9392c3b9296505a89b9387417b148655d0d8251b36e
MD5 204363f50468337bccee8f8925c42e67
BLAKE2b-256 b0f58d0f1e998f6d933c251b51ef92d11f7eb5211e3cd579018973a2b455f7c5

See more details on using hashes here.

File details

Details for the file geventhttpclient-2.3.4-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for geventhttpclient-2.3.4-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b11f38b74bab75282db66226197024a731250dcbe25542fd4e85ac5313547332
MD5 f760a42810e196782e99b0f745a1e958
BLAKE2b-256 035189af99e4805e9ce7f95562dfbd23c0b0391830831e43d58f940ec74489ac

See more details on using hashes here.

File details

Details for the file geventhttpclient-2.3.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for geventhttpclient-2.3.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8714a3f2c093aeda3ffdb14c03571d349cb3ed1b8b461d9f321890659f4a5dbf
MD5 479136d93aec7b54f8efe4e73f720b06
BLAKE2b-256 395ddcbd34dfcda0c016b4970bd583cb260cc5ebfc35b33d0ec9ccdb2293587a

See more details on using hashes here.

File details

Details for the file geventhttpclient-2.3.4-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for geventhttpclient-2.3.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 461e4d9f4caee481788ec95ac64e0a4a087c1964ddbfae9b6f2dc51715ba706c
MD5 4c35fe3630fe1cbea917e3f341e6f05a
BLAKE2b-256 111abc4b70cba8b46be8b2c6ca5b8067c4f086f8c90915eb68086ab40ff6243d

See more details on using hashes here.

File details

Details for the file geventhttpclient-2.3.4-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for geventhttpclient-2.3.4-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 4b802000a4fad80fa57e895009671d6e8af56777e3adf0d8aee0807e96188fd9
MD5 06680c37a4890dbbf29af56a02092f2c
BLAKE2b-256 4cf974aa8c556364ad39b238919c954a0da01a6154ad5e85a1d1ab5f9f5ac186

See more details on using hashes here.

File details

Details for the file geventhttpclient-2.3.4-cp312-cp312-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for geventhttpclient-2.3.4-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 9ac30c38d86d888b42bb2ab2738ab9881199609e9fa9a153eb0c66fc9188c6cb
MD5 e35f50fde7a60ce8a2c544e1e648212d
BLAKE2b-256 4f72dcbc6dbf838549b7b0c2c18c1365d2580eb7456939e4b608c3ab213fce78

See more details on using hashes here.

File details

Details for the file geventhttpclient-2.3.4-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for geventhttpclient-2.3.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e02e0e9ef2e45475cf33816c8fb2e24595650bcf259e7b15b515a7b49cae1ccf
MD5 35ead1c0313a8d0c129fd3406f479027
BLAKE2b-256 4b0b55e2a9ed4b1aed7c97e857dc9649a7e804609a105e1ef3cb01da857fbce7

See more details on using hashes here.

File details

Details for the file geventhttpclient-2.3.4-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for geventhttpclient-2.3.4-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 ea87c25e933991366049a42c88e91ad20c2b72e11c7bd38ef68f80486ab63cb2
MD5 1cb2453f1149d30201e42584f672f49e
BLAKE2b-256 d03742d09ad90fd1da960ff68facaa3b79418ccf66297f202ba5361038fc3182

See more details on using hashes here.

File details

Details for the file geventhttpclient-2.3.4-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for geventhttpclient-2.3.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 93926aacdb0f4289b558f213bc32c03578f3432a18b09e4b6d73a716839d7a74
MD5 069222c082994d211f973ec84b1f38e6
BLAKE2b-256 f15ee561a5f8c9d98b7258685355aacb9cca8a3c714190cf92438a6e91da09d5

See more details on using hashes here.

File details

Details for the file geventhttpclient-2.3.4-cp311-cp311-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for geventhttpclient-2.3.4-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 ec4d1aa08569b7eb075942caeacabefee469a0e283c96c7aac0226d5e7598fe8
MD5 ec8da7816b638f0bb738634d992f75fe
BLAKE2b-256 0298625cee18a3be5f7ca74c612d4032b0c013b911eb73c7e72e06fa56a44ba2

See more details on using hashes here.

File details

Details for the file geventhttpclient-2.3.4-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for geventhttpclient-2.3.4-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 97cd2ab03d303fd57dea4f6d9c2ab23b7193846f1b3bbb4c80b315ebb5fc8527
MD5 bf86303f518a380eb52dcdc8152f8077
BLAKE2b-256 11e7cca0663d90bc8e68592a62d7b28148eb9fd976f739bb107e4c93f9ae6d81

See more details on using hashes here.

File details

Details for the file geventhttpclient-2.3.4-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for geventhttpclient-2.3.4-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ed35391ad697d6cda43c94087f59310f028c3e9fb229e435281a92509469c627
MD5 3a14066c96d59b1e9ee6b3aeb7b3609f
BLAKE2b-256 93e48a467991127ca6c53dd79a8aecb26a48207e7e7976c578fb6eb31378792c

See more details on using hashes here.

File details

Details for the file geventhttpclient-2.3.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for geventhttpclient-2.3.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 110d863baf7f0a369b6c22be547c5582e87eea70ddda41894715c870b2e82eb0
MD5 6ae42b2f83e81ba78d2f6047d8c77fe2
BLAKE2b-256 4f956d45dead27e4f5db7a6d277354b0e2877c58efb3cd1687d90a02d5c7b9cd

See more details on using hashes here.

File details

Details for the file geventhttpclient-2.3.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for geventhttpclient-2.3.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4e39ad577b33a5be33b47bff7c2dda9b19ced4773d169d6555777cd8445c13c0
MD5 9edf9add7f77852cd8193edd8d150c67
BLAKE2b-256 e30ea9ebb216140bd0854007ff953094b2af983cdf6d4aec49796572fcbf2606

See more details on using hashes here.

File details

Details for the file geventhttpclient-2.3.4-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for geventhttpclient-2.3.4-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 71dbc6d4004017ef88c70229809df4ad2317aad4876870c0b6bcd4d6695b7a8d
MD5 fcb7ca3d277e70e5d52309cefa1ac742
BLAKE2b-256 ab48123fa67f6fca14c557332a168011565abd9cbdccc5c8b7ed76d9a736aeb2

See more details on using hashes here.

File details

Details for the file geventhttpclient-2.3.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for geventhttpclient-2.3.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 226d9fca98469bd770e3efd88326854296d1aa68016f285bd1a2fb6cd21e17ee
MD5 1dc6257cceccde0d23873eec6ba264ed
BLAKE2b-256 70a14baa8dca3d2df94e6ccca889947bb5929aca5b64b59136bbf1779b5777ba

See more details on using hashes here.

File details

Details for the file geventhttpclient-2.3.4-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for geventhttpclient-2.3.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 96578fc4a5707b5535d1c25a89e72583e02aafe64d14f3b4d78f9c512c6d613c
MD5 bece9cc2ac327b6b7142b777f0c8807b
BLAKE2b-256 02a1fb623cf478799c08f95774bc41edb8ae4c2f1317ae986b52f233d0f3fa05

See more details on using hashes here.

File details

Details for the file geventhttpclient-2.3.4-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for geventhttpclient-2.3.4-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 dbb28455bb5d82ca3024f9eb7d65c8ff6707394b584519def497b5eb9e5b1222
MD5 40b3de1ec6793a77bbb0132ffaa33729
BLAKE2b-256 9d8a4565e6e768181ecb06677861d949b3679ed29123b6f14333e38767a17b5a

See more details on using hashes here.

File details

Details for the file geventhttpclient-2.3.4-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for geventhttpclient-2.3.4-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 fb8f6a18f1b5e37724111abbd3edf25f8f00e43dc261b11b10686e17688d2405
MD5 5d783a62e130ec5d551e05dbb64697cf
BLAKE2b-256 3dc7c4c31bd92b08c4e34073c722152b05c48c026bc6978cf04f52be7e9050d5

See more details on using hashes here.

File details

Details for the file geventhttpclient-2.3.4-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for geventhttpclient-2.3.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 30671bb44f5613177fc1dc7c8840574d91ccd126793cd40fc16915a4abc67034
MD5 8b3e370bf75cdb1eb48163095243e481
BLAKE2b-256 4764197ec8a8e97ba74486324b0cd3db34c605f326dc8c77e5c1677447229ee5

See more details on using hashes here.

File details

Details for the file geventhttpclient-2.3.4-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for geventhttpclient-2.3.4-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 c9d83bf2c274aed601e8b5320789e54661c240a831533e73a290da27d1c046f1
MD5 ae2c8925c71990a96196316e2300a477
BLAKE2b-256 34dd3f2c2efd039f5cd01b7305ef0006d1290e789b6257f90170039449bbaef0

See more details on using hashes here.

File details

Details for the file geventhttpclient-2.3.4-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for geventhttpclient-2.3.4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 07152cad33b39d365f239b4fa1f818f4801c07e16ce0a0fee7d5fee2cabcb07b
MD5 92e8bdbf7efe3a717c7206759c193b7a
BLAKE2b-256 03b86b36028bcbbdafd90f83e09110dd698f19e88f62969d9313913fd22b2eb7

See more details on using hashes here.

File details

Details for the file geventhttpclient-2.3.4-cp310-cp310-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for geventhttpclient-2.3.4-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 be2ade1516fdc7b7fb3d73e6f8d8bf2ce5b4e2e0933a5465a86d40dfa1423488
MD5 de229fe3d814cc5199ca7dff6401128b
BLAKE2b-256 3bf02eff96bc1c2e6a2bb5a7489a6b01c5b50320a3b0e30cbe4fc6508c16860f

See more details on using hashes here.

File details

Details for the file geventhttpclient-2.3.4-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for geventhttpclient-2.3.4-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e16113d80bc270c465590ba297d4be8f26906ca8ae8419dc86520982c4099036
MD5 27f9707dfda631cfb8a01c2d5c6d20e0
BLAKE2b-256 56e14a06229a7b20f565a0bcee110cf4908a45d327fd20350a7dc297059f8466

See more details on using hashes here.

File details

Details for the file geventhttpclient-2.3.4-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for geventhttpclient-2.3.4-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 650bf5d07f828a0cb173dacc4bb28e2ae54fd840656b3e552e5c3a4f96e29f08
MD5 c6a38d844d668c3613424e24dd415d0d
BLAKE2b-256 bf4a42ca1c2d78313a2953da70c249879d5254e4a243976fcb4fe59630b3c463

See more details on using hashes here.

File details

Details for the file geventhttpclient-2.3.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for geventhttpclient-2.3.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0599fd7ca84a8621f8d34c4e2b89babae633b34c303607c61500ebd3b8a7687a
MD5 612e39db98d770f5f93a085b3bf339ee
BLAKE2b-256 3af36ecf1c5c06cd44457ae0e391db3e6e082425ca4bd636a9408cf42839a88d

See more details on using hashes here.

File details

Details for the file geventhttpclient-2.3.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for geventhttpclient-2.3.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 49f5e2051f7d06cb6476500a2ec1b9737aa3160258f0344b07b6d8e8cda3a0cb
MD5 6fced7a7124d962a9261abeb9c2fe7c8
BLAKE2b-256 db28135332d23fb0baf30bfae3f35f1b2363e21214cac79d3d74039f657ab872

See more details on using hashes here.

File details

Details for the file geventhttpclient-2.3.4-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for geventhttpclient-2.3.4-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6c4b796a59bed199884fe9d59a447fd685aa275a1406bc1f7caebd39a257f56e
MD5 47915ee5a8f8fc3345ac1f25c1d52765
BLAKE2b-256 44acc538b64972e2f9f79f46ffb92c1ac6007212f73b8cd8020417e5c44aa8c9

See more details on using hashes here.

File details

Details for the file geventhttpclient-2.3.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for geventhttpclient-2.3.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b4ac86f8d4ddd112bd63aa9f3c7b73c62d16b33fca414f809e8465bbed2580a3
MD5 54f2290f41ff748127bf67f5e5493d01
BLAKE2b-256 b0435d39ae94abe01805cc4734536a68b2610bfcd52c997e3ac1cda7c80d1843

See more details on using hashes here.

File details

Details for the file geventhttpclient-2.3.4-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for geventhttpclient-2.3.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5fde955b634a593e70eae9b4560b74badc8b2b1e3dd5b12a047de53f52a3964a
MD5 69bd7ee3f06fdd71477dbd07bf65fd23
BLAKE2b-256 505fe9711945f392aa8c62f4a4e8cc03e062264a3c8d42996af6710b8e1049d5

See more details on using hashes here.

File details

Details for the file geventhttpclient-2.3.4-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for geventhttpclient-2.3.4-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 59a2e7c136a3e6b60b87bf8b87e5f1fb25705d76ab7471018e25f8394c640dda
MD5 8a84164145a5502c72d65125fc80eeac
BLAKE2b-256 a30d69a80debc7aaf86c380e768f4a7da1a28f30e16f0ea2b87a002e2ea474f4

See more details on using hashes here.

File details

Details for the file geventhttpclient-2.3.4-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for geventhttpclient-2.3.4-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 182f5158504ac426d591cfb1234de5180813292b49049e761f00bf70691aace5
MD5 83587bd34dc9616ae138847cfe49109e
BLAKE2b-256 f6dc257cffd00b4b20c85cd202674fcdd61df06c14c08c8e13d932433e65992f

See more details on using hashes here.

File details

Details for the file geventhttpclient-2.3.4-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for geventhttpclient-2.3.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 88b5e6cc958907dd6a13d3f8179683c275f57142de95d0d652a54c8275e03a8b
MD5 e33c000d509118fd3f233a96d1378886
BLAKE2b-256 c756d9a4235531a84a06e301a6067418c7dc45ecb9c99403fed5fb55488bf96e

See more details on using hashes here.

File details

Details for the file geventhttpclient-2.3.4-cp39-cp39-win32.whl.

File metadata

File hashes

Hashes for geventhttpclient-2.3.4-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 be593e78cf4a7cbdbe361823fb35e1e0963d1a490cf90c8b6c680a30114b1a10
MD5 662fffd7993029337afcdf07270b80d9
BLAKE2b-256 a3198f920cf1e9a7db2f376d4fa29c16d808e2e1656b3c1978c8c47940dee473

See more details on using hashes here.

File details

Details for the file geventhttpclient-2.3.4-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for geventhttpclient-2.3.4-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e657db5a8c9498dee394db1e12085eda4b9cf7b682466364aae52765b930a884
MD5 c82cefa0dfd57b8b5aad0b0cafb6adfc
BLAKE2b-256 c72e19ad27bc30805ee5d46de77d53b281fcc2368ae2c92a9911cc787d3ed0fc

See more details on using hashes here.

File details

Details for the file geventhttpclient-2.3.4-cp39-cp39-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for geventhttpclient-2.3.4-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 2335963f883a94f503b321f7abfb38a4efbca70f9453c5c918cca40a844280cd
MD5 71b58492c34cf3f23beadf60745e5201
BLAKE2b-256 68b4e6fa0d2d2f28953a38287eb34ae585a0f72c3320dfa5f7b18c6415dae50f

See more details on using hashes here.

File details

Details for the file geventhttpclient-2.3.4-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for geventhttpclient-2.3.4-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 04a3328e687c419f78926a791df48c7672e724fa75002f2d3593df96510696e6
MD5 c41e83fa35f997c5ce859dcc0af0b48e
BLAKE2b-256 02dbbe349516aa3b4c037e976b22cfaecfe77d377460ba6c2fa786927192ed25

See more details on using hashes here.

File details

Details for the file geventhttpclient-2.3.4-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for geventhttpclient-2.3.4-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d1e73172fed40c1d0e4f79fd15d357ead2161371b2ecdc82d626f143c29c8175
MD5 e26f577d58cb70743d923d62d330b2ff
BLAKE2b-256 0317642611eec2fb230fd643fa61ee3bcf745c7dde1b05ede332388257a68545

See more details on using hashes here.

File details

Details for the file geventhttpclient-2.3.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for geventhttpclient-2.3.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 39746bcd874cb75aaf6d16cdddd287a29721e8b56c20dd8a4d4ecde1d3b92f14
MD5 7dffa0cf65338275c904ee7693136ddd
BLAKE2b-256 64d535b6372a94b297fc9f7a9c89b5d81b089135ed6bba241408589adeb67af9

See more details on using hashes here.

File details

Details for the file geventhttpclient-2.3.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for geventhttpclient-2.3.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9c7a0c11afc1fe2c8338e5ccfd7ffdab063b84ace8b9656b5b3bc1614ee8a234
MD5 5471d81e553f58fe484a22ac6143e264
BLAKE2b-256 da7eae4bd41579106462a99563e0c91db90aa658f2692956eaff4c1a1cdaf207

See more details on using hashes here.

File details

Details for the file geventhttpclient-2.3.4-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for geventhttpclient-2.3.4-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 063991edd5468401377116cc2a71361a88abce9951f60ba15b7fe1e10ce00f25
MD5 9a9f69c3fc9f92dd21770c782cfc2ec9
BLAKE2b-256 59ee1b7959204c728b8b55ff7b55821f5c76fd5f9e5525f4430636b9e32ea661

See more details on using hashes here.

File details

Details for the file geventhttpclient-2.3.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for geventhttpclient-2.3.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 73e7d2e3d2d67e25d9d0f2bf46768650a57306a0587bbcdbfe2f4eac504248d2
MD5 c54f56ba9560103bfc0d494d605e3f6c
BLAKE2b-256 47545375eb7ceb248c93666956fc6ea22b81b46da3db603c306ff31277fec927

See more details on using hashes here.

File details

Details for the file geventhttpclient-2.3.4-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for geventhttpclient-2.3.4-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5660dfd692bc2cbd3bd2d0a2ad2a58ec47f7778042369340bdea765dc10e5672
MD5 2c9f43d41fe60239066deed6f97c62e2
BLAKE2b-256 a563b269cf97de8a732d8615ca62fccd01c5c8c5f1fa26282c08d5d1ac4fad17

See more details on using hashes here.

File details

Details for the file geventhttpclient-2.3.4-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for geventhttpclient-2.3.4-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9f707dbdaad78dafe6444ee0977cbbaefa16ad10ab290d75709170d124bac4c8
MD5 e5b06c279228dbe2cf0d6c91432d7ff7
BLAKE2b-256 fcf8ef65a87cd2cc6a60ffb9c9c32003085b0ccf2a20b571e9e2bae1ec50c6ff

See more details on using hashes here.

File details

Details for the file geventhttpclient-2.3.4-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for geventhttpclient-2.3.4-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 2fa223034774573218bb49e78eca7e92b8c82ccae9d840fdcf424ea95c2d1790
MD5 22263d306a3b13337ea4162b8844aed8
BLAKE2b-256 5d1095b7e0fed92557d54c3e177c1440e4af083fc882edbb383baff287813f60

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