Skip to main content

Powerful and fast Rust based HTTP client

Project description

logo


codecov PyPI - Python Version

pyreqwest - Powerful and fast Rust based HTTP client. Built on top of and inspired by reqwest.

Why

  • No reinvention of the wheel - built on top of widely used reqwest and other Rust HTTP crates
  • Secure and fast - no C-extension code, no Python code/dependencies, no unsafe code
  • Ergonomic and easy to use - similar API as in reqwest, fully type-annotated
  • Testing ergonomics - mocking included, can also connect into ASGI apps

Using this is a good choice when:

  • You care about throughput and latency, especially in high concurrency scenarios
  • You want a single solution to serve all your HTTP client needs

This is not a good choice when:

  • You want a pure Python solution allowing debugging of the HTTP client internals
  • You use alternative Python implementations or Python version older than 3.11

Features

  • High performance, see notes and benchmarks
  • Asynchronous and synchronous HTTP clients
  • Customizable via middlewares and custom JSON serializers
  • Ergonomic as reqwest
  • HTTP/1.1 and HTTP/2 support (also HTTP/3 when it stabilizes)
  • Mocking and testing utilities (can also connect to ASGI apps)
  • Fully type-safe with Python type hints
  • Full test coverage
  • Free threading, see notes

Standard HTTP features you would expect

  • HTTPS support (using rustls)
  • Request and response body streaming
  • Connection pooling
  • JSON, URLs, Headers, Cookies etc. (all serializers in Rust)
  • Automatic decompression (zstd, gzip, brotli, deflate)
  • Automatic response decoding (charset detection)
  • Multipart form support
  • Proxy support (also SOCKS)
  • Redirects
  • Timeouts
  • Authentication (Basic, Bearer)
  • Cookie management

Quickstart

# uv add pyreqwest

from pyreqwest.client import ClientBuilder, SyncClientBuilder

async def example_async():
    async with ClientBuilder().error_for_status(True).build() as client:
        response = await client.get("https://httpbun.com/get").query({"q": "val"}).build().send()
        print(await response.json())        

def example_sync():
    with SyncClientBuilder().error_for_status(True).build() as client:
        print(client.get("https://httpbun.com/get").query({"q": "val"}).build().send().json())

Context manager usage is optional, but recommended. Also close() methods are available.

Mocking in pytest

from pyreqwest.client import ClientBuilder
from pyreqwest.pytest_plugin import ClientMocker

async def test_client(client_mocker: ClientMocker) -> None:
    client_mocker.get(path="/api").with_body_text("Hello Mock")

    async with ClientBuilder().build() as client:
        response = await client.get("http://example.invalid/api").build().send()
        assert response.status == 200 and await response.text() == "Hello Mock"
        assert client_mocker.get_call_count() == 1

Manual mocking is available via ClientMocker.create_mocker(MonkeyPatch).

Simple request interface

This is only recommended for simple use-cases such as scripts. Usually, the full client API should be used which reuses connections and has other optimizations.

# Sync example
from pyreqwest.simple.sync_request import pyreqwest_get
response = pyreqwest_get("https://httpbun.com/get").query({"q": "val"}).send()
print(response.json())
# Async example
from pyreqwest.simple.request import pyreqwest_get
response = await pyreqwest_get("https://httpbun.com/get").query({"q": "val"}).send()
print(await response.json())

Documentation

See docs

See examples

Compatibility with other libraries

See compatibility docs

Download files

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

Source Distribution

pyreqwest-0.11.1.tar.gz (4.6 MB view details)

Uploaded Source

Built Distributions

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

pyreqwest-0.11.1-cp314-cp314-win_arm64.whl (3.9 MB view details)

Uploaded CPython 3.14Windows ARM64

pyreqwest-0.11.1-cp314-cp314-win_amd64.whl (3.9 MB view details)

Uploaded CPython 3.14Windows x86-64

pyreqwest-0.11.1-cp314-cp314-musllinux_1_1_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ x86-64

pyreqwest-0.11.1-cp314-cp314-musllinux_1_1_armv7l.whl (3.7 MB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ ARMv7l

pyreqwest-0.11.1-cp314-cp314-musllinux_1_1_aarch64.whl (4.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ ARM64

pyreqwest-0.11.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

pyreqwest-0.11.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

pyreqwest-0.11.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

pyreqwest-0.11.1-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (3.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

pyreqwest-0.11.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

pyreqwest-0.11.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

pyreqwest-0.11.1-cp314-cp314-macosx_11_0_arm64.whl (3.9 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pyreqwest-0.11.1-cp314-cp314-macosx_10_12_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

pyreqwest-0.11.1-cp313-cp313-win_arm64.whl (3.9 MB view details)

Uploaded CPython 3.13Windows ARM64

pyreqwest-0.11.1-cp313-cp313-win_amd64.whl (3.9 MB view details)

Uploaded CPython 3.13Windows x86-64

pyreqwest-0.11.1-cp313-cp313-musllinux_1_1_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ x86-64

pyreqwest-0.11.1-cp313-cp313-musllinux_1_1_armv7l.whl (3.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARMv7l

pyreqwest-0.11.1-cp313-cp313-musllinux_1_1_aarch64.whl (4.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

pyreqwest-0.11.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

pyreqwest-0.11.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

pyreqwest-0.11.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

pyreqwest-0.11.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (3.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

pyreqwest-0.11.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

pyreqwest-0.11.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

pyreqwest-0.11.1-cp313-cp313-macosx_11_0_arm64.whl (3.9 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pyreqwest-0.11.1-cp313-cp313-macosx_10_12_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

pyreqwest-0.11.1-cp312-cp312-win_arm64.whl (3.9 MB view details)

Uploaded CPython 3.12Windows ARM64

pyreqwest-0.11.1-cp312-cp312-win_amd64.whl (3.9 MB view details)

Uploaded CPython 3.12Windows x86-64

pyreqwest-0.11.1-cp312-cp312-musllinux_1_1_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

pyreqwest-0.11.1-cp312-cp312-musllinux_1_1_armv7l.whl (3.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARMv7l

pyreqwest-0.11.1-cp312-cp312-musllinux_1_1_aarch64.whl (4.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

pyreqwest-0.11.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

pyreqwest-0.11.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

pyreqwest-0.11.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

pyreqwest-0.11.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (3.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

pyreqwest-0.11.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

pyreqwest-0.11.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

pyreqwest-0.11.1-cp312-cp312-macosx_11_0_arm64.whl (3.9 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pyreqwest-0.11.1-cp312-cp312-macosx_10_12_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

pyreqwest-0.11.1-cp311-cp311-win_arm64.whl (3.9 MB view details)

Uploaded CPython 3.11Windows ARM64

pyreqwest-0.11.1-cp311-cp311-win_amd64.whl (3.9 MB view details)

Uploaded CPython 3.11Windows x86-64

pyreqwest-0.11.1-cp311-cp311-musllinux_1_1_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

pyreqwest-0.11.1-cp311-cp311-musllinux_1_1_armv7l.whl (3.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARMv7l

pyreqwest-0.11.1-cp311-cp311-musllinux_1_1_aarch64.whl (4.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

pyreqwest-0.11.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pyreqwest-0.11.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

pyreqwest-0.11.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

pyreqwest-0.11.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (3.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

pyreqwest-0.11.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

pyreqwest-0.11.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

pyreqwest-0.11.1-cp311-cp311-macosx_11_0_arm64.whl (3.9 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pyreqwest-0.11.1-cp311-cp311-macosx_10_12_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

File details

Details for the file pyreqwest-0.11.1.tar.gz.

File metadata

  • Download URL: pyreqwest-0.11.1.tar.gz
  • Upload date:
  • Size: 4.6 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyreqwest-0.11.1.tar.gz
Algorithm Hash digest
SHA256 39b3ba7c3a3130648fac5f43d1059e81e44ad2bc1738c446690c17ff3c7a68a4
MD5 aa3888c8c8e69e8d06c8d186bc964508
BLAKE2b-256 9cd4f8a325d0f79d0d5ddcbc3c739c9e5d08cab5cea377d54292722b6e500172

See more details on using hashes here.

File details

Details for the file pyreqwest-0.11.1-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: pyreqwest-0.11.1-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyreqwest-0.11.1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 27a92f48638f3a7b303626708aa11684455ce52304310baf2c82615d054f3ae2
MD5 cee9a5faa18041d410ee74bd1649da18
BLAKE2b-256 a971e612064551eea00f87ef21e5c27de0de3cfad7362e29bdc0132a89b191a3

See more details on using hashes here.

File details

Details for the file pyreqwest-0.11.1-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: pyreqwest-0.11.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyreqwest-0.11.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 dd304003217725618415ccdd485ddf7dd02a5d07e6f6fef35fe286587ba46418
MD5 dc1be42f91b4123945874a6fca17a60f
BLAKE2b-256 7736445b6dfe327ca7dd46a2cb202b6cf5c9cf4fa0e4061768df22a639a57888

See more details on using hashes here.

File details

Details for the file pyreqwest-0.11.1-cp314-cp314-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: pyreqwest-0.11.1-cp314-cp314-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 4.4 MB
  • Tags: CPython 3.14, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyreqwest-0.11.1-cp314-cp314-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 506d03fcef6f629a25a22e9d43b54fc211050adaa55b65777e14191105b52aaa
MD5 85e2b473d315f2598044b2610917b531
BLAKE2b-256 e4f2f8f9dba234980ec3b83f3e402cd15777bfa3339de439750b32889f8688f8

See more details on using hashes here.

File details

Details for the file pyreqwest-0.11.1-cp314-cp314-musllinux_1_1_armv7l.whl.

File metadata

  • Download URL: pyreqwest-0.11.1-cp314-cp314-musllinux_1_1_armv7l.whl
  • Upload date:
  • Size: 3.7 MB
  • Tags: CPython 3.14, musllinux: musl 1.1+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyreqwest-0.11.1-cp314-cp314-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 76a11a64368491205732ec8e1be90c2a57679e40982f04907ba76b45174320d5
MD5 5481e76aa9fc4330c8df575873ad0b95
BLAKE2b-256 13b5591a484e0125a138eadf7b3651723454ac838b09e957167e118dbbb74bab

See more details on using hashes here.

File details

Details for the file pyreqwest-0.11.1-cp314-cp314-musllinux_1_1_aarch64.whl.

File metadata

  • Download URL: pyreqwest-0.11.1-cp314-cp314-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 4.1 MB
  • Tags: CPython 3.14, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyreqwest-0.11.1-cp314-cp314-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 13cebd3c02d121eb20aa5e0c114b5d187e8d315c8635d6630138e9c29ef5bf49
MD5 95a3013f128aea9483651dc333d6ec4a
BLAKE2b-256 11fbe6a20072349ac36dcb12d093fbb6028083626c57e87f2e920f75db1056c8

See more details on using hashes here.

File details

Details for the file pyreqwest-0.11.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: pyreqwest-0.11.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 4.2 MB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyreqwest-0.11.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6b83a903f8e9ab8c9e824b2e4ec4ab0f1de4eabeca994c6ff00ca014f76b4d26
MD5 120b9f494a7457ea5b77de8eb938a23b
BLAKE2b-256 3eb4667c0cc32db47d0d81a1233bf978db74174e59792197977080f0b694f1b1

See more details on using hashes here.

File details

Details for the file pyreqwest-0.11.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: pyreqwest-0.11.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyreqwest-0.11.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7ba474f57d18180b84d84192141ee488258ee31c317146049b63f92abc33831f
MD5 a8357141934a09caedb7347593ebdd98
BLAKE2b-256 10d07f4b9858465fcd4469d387d871459fe8ce408f64f8c04d714b495dd76326

See more details on using hashes here.

File details

Details for the file pyreqwest-0.11.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: pyreqwest-0.11.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyreqwest-0.11.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 571f13662ab9821fb20849507954bcb5c5349312d70c298b0ae2d7c9ae3e93bd
MD5 9b2e05cb458ce99f5cc8b82054cedd82
BLAKE2b-256 1ee9b7f2a2129bb7f31a181d1f13b007f5521a11b7fa527f50d71f70761ae588

See more details on using hashes here.

File details

Details for the file pyreqwest-0.11.1-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

  • Download URL: pyreqwest-0.11.1-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyreqwest-0.11.1-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 07749bfba58338996bede34bcd4bfb01e41212188578359e9906c75bb271c335
MD5 a9a082ded04ae1dd36132e07f62b2d08
BLAKE2b-256 1fcd2270da33878db973b9288008022af98078c41e174eaf7c62e2e89f5f2eba

See more details on using hashes here.

File details

Details for the file pyreqwest-0.11.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: pyreqwest-0.11.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 3.5 MB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyreqwest-0.11.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c3ed124339bfbd87b43b79fcc7c22a7fe0c64e5e1319a66ad8b2f4541b024bf4
MD5 8a3f1b9b392ca891d3ba5a6c253f5cc3
BLAKE2b-256 19fd6fe4fdd43ae2adc9af1bccdaaa1298471438a2073d892ccdec0313c7b4ab

See more details on using hashes here.

File details

Details for the file pyreqwest-0.11.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: pyreqwest-0.11.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyreqwest-0.11.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8ed0929487ee8204921f855a8406f4ddb3a5d1b030409f35dc0089fb54ec59b8
MD5 46e6da461c6bc8c4ad175c1553739342
BLAKE2b-256 6cb14974ace1ba59b5fda9b6ef49d34718b1b2a2059f7bcbcdd3fac3ffd69033

See more details on using hashes here.

File details

Details for the file pyreqwest-0.11.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

  • Download URL: pyreqwest-0.11.1-cp314-cp314-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.14, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyreqwest-0.11.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2b24107c2aaaee15253ccc3f1adede51524b396f603bb54a9ee263c3d2e7375a
MD5 50564195dc0c242fc6100429ae1c635e
BLAKE2b-256 3dd0e2de861e611fb8680ba12cef9d0ddcf27fe8ce3f2adfecce49a4238b20cb

See more details on using hashes here.

File details

Details for the file pyreqwest-0.11.1-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: pyreqwest-0.11.1-cp314-cp314-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 4.1 MB
  • Tags: CPython 3.14, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyreqwest-0.11.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 36df05ef7717164d44aa217621c5a42463d1e84320a9ed957e37af70beca787a
MD5 883b633922f8672a0f9d47dfdbea5a25
BLAKE2b-256 e3c505185331e2ebb62e8f290aaf5760d1d3988be3f934e4822c416beb28bd8e

See more details on using hashes here.

File details

Details for the file pyreqwest-0.11.1-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: pyreqwest-0.11.1-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyreqwest-0.11.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 3529faeff2875b80e61670cf76193617cd86a92080671789cf029eadf0cf393e
MD5 4dbd36879e2ee90dab94f4d2aac14801
BLAKE2b-256 449ee65f3b1922b3b5c46d0e604d7eeac1f50ae702ea70457d9c734fbc470a72

See more details on using hashes here.

File details

Details for the file pyreqwest-0.11.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: pyreqwest-0.11.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyreqwest-0.11.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 aef2ae803f19cc63c05d59e4b5d1a9efbe5d775f7bbbfcdae8733b8ee83a38fa
MD5 a78b1cc0ce6eeb71ee826e549ce1957d
BLAKE2b-256 3373ef2a4a04c3bf979a1089288f2a731a689de864d4e535e21fceda61002751

See more details on using hashes here.

File details

Details for the file pyreqwest-0.11.1-cp313-cp313-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: pyreqwest-0.11.1-cp313-cp313-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 4.4 MB
  • Tags: CPython 3.13, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyreqwest-0.11.1-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 62ad539bfff86abed32820bef305e3ca898cb7e0e3074859535a4c0d132ab09a
MD5 e3fa4cdc9db05f879d9f5a35b4cb2c81
BLAKE2b-256 687b059ea6c481298a50da94e6fff403413e721ccaced730ebf9467419d724bf

See more details on using hashes here.

File details

Details for the file pyreqwest-0.11.1-cp313-cp313-musllinux_1_1_armv7l.whl.

File metadata

  • Download URL: pyreqwest-0.11.1-cp313-cp313-musllinux_1_1_armv7l.whl
  • Upload date:
  • Size: 3.7 MB
  • Tags: CPython 3.13, musllinux: musl 1.1+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyreqwest-0.11.1-cp313-cp313-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 374ff7b43078c37fa6d8f14031da67a355f78c575f4fc4b902ba5db2ec510d7f
MD5 13d91b823e6d70bf6cfd34ec0595a8ed
BLAKE2b-256 962fc34a8f20cc6997edde01f3d2772bed2a2fc078de1b8b0a18ad869ff4424a

See more details on using hashes here.

File details

Details for the file pyreqwest-0.11.1-cp313-cp313-musllinux_1_1_aarch64.whl.

File metadata

  • Download URL: pyreqwest-0.11.1-cp313-cp313-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 4.1 MB
  • Tags: CPython 3.13, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyreqwest-0.11.1-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 1a128ed6c3e02ba550ccabe767fdb1bca54124996e88342b2b1ae4e1fed251fe
MD5 86b4120fc0eb072cf81aa6911c5d5fd0
BLAKE2b-256 e5f5b15c369a3af1f5c86112e687f586226b69fb4073c53ee7e1a5af97b104db

See more details on using hashes here.

File details

Details for the file pyreqwest-0.11.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: pyreqwest-0.11.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 4.2 MB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyreqwest-0.11.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e68078b0ab68629d930bfc7b77ddafbd8f21b0f0d4934e323b7dd61886807629
MD5 37be6c9d8198e3a56a19372ff5c94e31
BLAKE2b-256 d7e94a82cefb0bb3d9113b603e4109aecd575337ff4186d9790b8300a2e7eeae

See more details on using hashes here.

File details

Details for the file pyreqwest-0.11.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: pyreqwest-0.11.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyreqwest-0.11.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 aeb08d7f36c48ab1666ae7fb0654a79de64e1eece5d2f0a61130934dd8666392
MD5 e46ac4b5d8a0ff452cd9bbf0e8c407e8
BLAKE2b-256 3c67ce8fc24bc043cd9a4eb650b182295081dc248169abe62810d3af17109aec

See more details on using hashes here.

File details

Details for the file pyreqwest-0.11.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: pyreqwest-0.11.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyreqwest-0.11.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4dcaf1814fa87eefbba1bb8f17ff04894bbd07a38aa62dd6442711d0c8217d24
MD5 694ccf098bb61def9444b1d30c1628e2
BLAKE2b-256 63ded060f3a67524ad6a15e2b28475c02836c3059db5a2944893f1dada33a2b6

See more details on using hashes here.

File details

Details for the file pyreqwest-0.11.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

  • Download URL: pyreqwest-0.11.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyreqwest-0.11.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4a381c2ce9e698f3accc66950777210481569ca27c6127b1bb4d802577ec2c15
MD5 8115b3dab7e910eb6cfe98c2de0eefad
BLAKE2b-256 36d566b9f4ff53ca9683e7cb9bdbc7bd3ba8cc7c5ee3be03c73ad81e542b80ec

See more details on using hashes here.

File details

Details for the file pyreqwest-0.11.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: pyreqwest-0.11.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 3.5 MB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyreqwest-0.11.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9bd83d6c63b83ec50ffe4fac6b9ed64a3ddf8f886c09a7fcef88b4edf9f3663a
MD5 79d206bd9d775a4e91d570a698a39e27
BLAKE2b-256 51661263fb50632c9a371915493bceb45c6843ee6c8bf6c6ad1ece1cb669eff8

See more details on using hashes here.

File details

Details for the file pyreqwest-0.11.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: pyreqwest-0.11.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyreqwest-0.11.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ea585c5ad67e8d2afd8729c6de0a1ec3843b88fbd812c71ea5b5f9d1637de49f
MD5 536fde2fbefeee1f81b7a67a926cf922
BLAKE2b-256 7ac64da46e6c9a7654c6574dbdf3d1065202aa63d6ebc3152dd16393ab271ae8

See more details on using hashes here.

File details

Details for the file pyreqwest-0.11.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

  • Download URL: pyreqwest-0.11.1-cp313-cp313-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.13, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyreqwest-0.11.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 463da838492ca5dbd9f8bee62f1e8807170a7521f06abb88b998628f0c0a2cf5
MD5 9fddefa7c5ed39ddd3d4a6b05c650b7f
BLAKE2b-256 224e7a9608b5ad0e31018e3fc251b08565a2fbc8150f274af9683c8c71e9fc35

See more details on using hashes here.

File details

Details for the file pyreqwest-0.11.1-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: pyreqwest-0.11.1-cp313-cp313-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 4.1 MB
  • Tags: CPython 3.13, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyreqwest-0.11.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1d3de82145dfae1b6195fec5298aede0a2c3d19139d86636d8f5ddee1f4c19bf
MD5 34fdfef61465320b0561598a25c0168d
BLAKE2b-256 5236c7d290a75a780c1b4d4157824058e735256f4da155f21f0e129ce15f5eeb

See more details on using hashes here.

File details

Details for the file pyreqwest-0.11.1-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: pyreqwest-0.11.1-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyreqwest-0.11.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 8b91af0d461299d9f467da0eada48c3af4ea7af9c8da42a438c864dc8a3c1e99
MD5 396203b95c3dcdf129fe57974bfbaa70
BLAKE2b-256 ea681fb481d2cc2a79b14163a31ce963f81194da1ef540580c66b06186185012

See more details on using hashes here.

File details

Details for the file pyreqwest-0.11.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: pyreqwest-0.11.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyreqwest-0.11.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7222a30b4fe5cc471528dffe8667f26b7d4f0903b98c8a47644d752da45bd48f
MD5 c1c99d1d058a51bc3155a5870ea7dc57
BLAKE2b-256 ec6deb6add268472601659da6f5b28a0f9b2f0edba4aa5ba39bf39e9627de42b

See more details on using hashes here.

File details

Details for the file pyreqwest-0.11.1-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: pyreqwest-0.11.1-cp312-cp312-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 4.4 MB
  • Tags: CPython 3.12, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyreqwest-0.11.1-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 855b12f5d8c3934dcc67c463867d148bc2deb79bd16cbdf82717dac729452939
MD5 906a5806cbfb2ff80ad6d4370c64f7bb
BLAKE2b-256 569ab022218b5ead57340e1693261d47104699bdaf16ce28b4b603e1acd57982

See more details on using hashes here.

File details

Details for the file pyreqwest-0.11.1-cp312-cp312-musllinux_1_1_armv7l.whl.

File metadata

  • Download URL: pyreqwest-0.11.1-cp312-cp312-musllinux_1_1_armv7l.whl
  • Upload date:
  • Size: 3.7 MB
  • Tags: CPython 3.12, musllinux: musl 1.1+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyreqwest-0.11.1-cp312-cp312-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 405584b4c115d54b9e1002059551ce90ea6197686606868f84f99c7f583202a5
MD5 f6de6b789c5e363bf475c3f55460ec80
BLAKE2b-256 c8433aaf158ad24a5171523055c7e43407805af2214f64d8be1094d3fe58042a

See more details on using hashes here.

File details

Details for the file pyreqwest-0.11.1-cp312-cp312-musllinux_1_1_aarch64.whl.

File metadata

  • Download URL: pyreqwest-0.11.1-cp312-cp312-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 4.1 MB
  • Tags: CPython 3.12, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyreqwest-0.11.1-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 619389fbd8241ce1a6fa3d4296b2223f4bff1670e3ad18c1db4c64e79008629d
MD5 90ec753894f2b072f2bf703b63187369
BLAKE2b-256 4db20fcd4961cd4fb8490c69e867ec0ba00151501e3cc88f985dc0bf3e8ac4bd

See more details on using hashes here.

File details

Details for the file pyreqwest-0.11.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: pyreqwest-0.11.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 4.2 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyreqwest-0.11.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 db6318d084f90924c57057738a8274d68e701f25fea31cc0e7f4554e573b52f8
MD5 80bafaf1f1f5980e0843fadddd6c4fc8
BLAKE2b-256 faf898e44bfabc235e2b8950604380e97b5edb0893bacb2f351bf63340e5aa7b

See more details on using hashes here.

File details

Details for the file pyreqwest-0.11.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: pyreqwest-0.11.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyreqwest-0.11.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d8b87fe4752fa7aa5dca85bec48965fa8415a89692692f1fef6b60a2c3072ba1
MD5 1042bcdfe347207adc82b7b24d88a149
BLAKE2b-256 440bd931d921fbefa633f18d696edc01d24b7073117d3db75d87d8d2c36139a9

See more details on using hashes here.

File details

Details for the file pyreqwest-0.11.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: pyreqwest-0.11.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyreqwest-0.11.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 13d34a6e933340f1bc532d285256f62c22656cab440af24a80f9618e6dcdea59
MD5 007a49fc8453122c658ff9a81fdfa3c2
BLAKE2b-256 1a48e4e9841926ee5695dfffdb2a49ad926d1223179515ae0563ea8103fd71e1

See more details on using hashes here.

File details

Details for the file pyreqwest-0.11.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

  • Download URL: pyreqwest-0.11.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyreqwest-0.11.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ac61dad1ccd03fed33a2c4c88385402f4c6f2a7d22b7f4b7a2d34e0df735f1e0
MD5 c2d860d1a3e715bea131dea3cbad3332
BLAKE2b-256 38c700f4c7f7d52d5904e1c8ccab539a9b87a2a523509d836eed64aee04493fc

See more details on using hashes here.

File details

Details for the file pyreqwest-0.11.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: pyreqwest-0.11.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 3.5 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyreqwest-0.11.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 78eda523a478598c1ba202083e1220fa09b3190a81504216e467388a31c4d867
MD5 75263272e5318df4a641c6784de9de78
BLAKE2b-256 1f4dfda92ce14d291786bb085f4fdf05af8591adefb03e8823b457af6f6210dc

See more details on using hashes here.

File details

Details for the file pyreqwest-0.11.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: pyreqwest-0.11.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyreqwest-0.11.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7957adc4f40c3cffcf7b4afa929e9a8e582fa58b9cda3563d12bca6a538e55d2
MD5 f347be02ab4c3a6ac40ab52f9fc2381e
BLAKE2b-256 9fe5fea7e74a602ec2ae26f92ad0b566375647c9b033b67b15f24f0bf9fd06a7

See more details on using hashes here.

File details

Details for the file pyreqwest-0.11.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

  • Download URL: pyreqwest-0.11.1-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.12, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyreqwest-0.11.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f85e120959913f72b817851f56fb3311a09720f9a080bd06800370829e829732
MD5 e41c292bfeec13e4f2fe90242ab1759a
BLAKE2b-256 74a92b63ddf9ee0650e47e72f95ed0e817da1b0a1b804e014bafb65340b8409c

See more details on using hashes here.

File details

Details for the file pyreqwest-0.11.1-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: pyreqwest-0.11.1-cp312-cp312-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 4.1 MB
  • Tags: CPython 3.12, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyreqwest-0.11.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 366825b70d45f217502b72410ad88007b4dba85d51b430ac0c3d2d996e70b287
MD5 76e27d7e9d4a19b05bdde9f8d44c0cf0
BLAKE2b-256 d3f77590956822ef09a70a07176903bfec107439e54a48e73fe45fad251083af

See more details on using hashes here.

File details

Details for the file pyreqwest-0.11.1-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: pyreqwest-0.11.1-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyreqwest-0.11.1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 e1959d58c42b5fc2fa1318dcce192e83cab51321d94a6ea6f413d35ffe7f34dd
MD5 e92712745a093ed0c43cda3738c45c48
BLAKE2b-256 2ac4b8d7e85bd45de77aab71ce6d28d963ac5a4399cd9d9fa019ba9ac57a3e17

See more details on using hashes here.

File details

Details for the file pyreqwest-0.11.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: pyreqwest-0.11.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyreqwest-0.11.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ec6b8ee3ca1f2f6a50573ec0576a8be9e0f7d89a6ed12d8a01d7f44c7b3f0d24
MD5 e17ca65b2fc2128d0bfb7ed47e1d1122
BLAKE2b-256 83fd422ef92c22143b42a170cdd05714cadc9c765fd8ef811504bf1265f9561c

See more details on using hashes here.

File details

Details for the file pyreqwest-0.11.1-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: pyreqwest-0.11.1-cp311-cp311-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 4.4 MB
  • Tags: CPython 3.11, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyreqwest-0.11.1-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 27773bd46d28167210a0471f1ebf1fece4702e51d97e92e7fef0689f7942fe07
MD5 fdc2dabe01f050bdeef1d50ecb7ce199
BLAKE2b-256 83198979418c518dec6288eb3a9689e34976d05d39bdca57f2e4db68ae70af4c

See more details on using hashes here.

File details

Details for the file pyreqwest-0.11.1-cp311-cp311-musllinux_1_1_armv7l.whl.

File metadata

  • Download URL: pyreqwest-0.11.1-cp311-cp311-musllinux_1_1_armv7l.whl
  • Upload date:
  • Size: 3.7 MB
  • Tags: CPython 3.11, musllinux: musl 1.1+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyreqwest-0.11.1-cp311-cp311-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 823128e9a11e768a247a1af05719ffe0f9b34a7c14e0e51894578e9b38837289
MD5 66cdd3c60c17add908407a6290a0151c
BLAKE2b-256 954f748dcaebe381538bc241cd9b282a5f796ef08a9eb124379b312e792d28f1

See more details on using hashes here.

File details

Details for the file pyreqwest-0.11.1-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

  • Download URL: pyreqwest-0.11.1-cp311-cp311-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 4.1 MB
  • Tags: CPython 3.11, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyreqwest-0.11.1-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 45aafd0a39d29dde2d2cb8aa5877ac20731d0e98118a3bfdfd817f69d3ef6f24
MD5 ee53b8688f7af3b11236d92ef2bdded5
BLAKE2b-256 96f3842511957d79b547a7ef12cd64ea15c91d7c0d079a67e3076b2f44a035c9

See more details on using hashes here.

File details

Details for the file pyreqwest-0.11.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: pyreqwest-0.11.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 4.2 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyreqwest-0.11.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6bf47f564450f6de06debfc0b6fea53709e41991bd40cd8126e7ac2b313bee14
MD5 6b09f876a9d89236ac4b8faa19846149
BLAKE2b-256 2f4c4bb681ad5a14a7e33c5384b09acc618af3ce4c048a89b699cf2640ff1a0b

See more details on using hashes here.

File details

Details for the file pyreqwest-0.11.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: pyreqwest-0.11.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyreqwest-0.11.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b274f287a96b91432f0e70a794632146d760ec4d2cf5148bf99af4fd69a82caf
MD5 807f7b7a5eb1d0b991eb79ec8273a544
BLAKE2b-256 708ce121e331b8b1d57844e512dd052bf9a1ba1921414baaf02d18c9c354c2fc

See more details on using hashes here.

File details

Details for the file pyreqwest-0.11.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: pyreqwest-0.11.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyreqwest-0.11.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 16a95a22fc85feede1339637a43f1a60ee078ed8e758369d95d43333fd5de7d4
MD5 5cc78e569ed3b6023d9c5726f79fbd39
BLAKE2b-256 d30bc6192a7b92a43c7eb2c8314a3621b5dfa3ae482db89908a28d9451693928

See more details on using hashes here.

File details

Details for the file pyreqwest-0.11.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

  • Download URL: pyreqwest-0.11.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyreqwest-0.11.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 232dc0e8f19cb3247a22c0103a9b30c7cb236bb28472967c2da526f2f9b7f11c
MD5 d55c0aca5f2c9686e498fc0d1ed71a8a
BLAKE2b-256 d684b53545e877806190349976e6d801b8c0d3112042e483fe2577f090577258

See more details on using hashes here.

File details

Details for the file pyreqwest-0.11.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: pyreqwest-0.11.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 3.5 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyreqwest-0.11.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 074f160bf0beced52a8aa4adafe89df4511bb0790b84fd2ee45c05def8697468
MD5 cef529801baea71038c9d0fca4ffb4c8
BLAKE2b-256 72d0614cca03cd7fadd5037890909d5ec7031f26a5dc3eebf3c4a89aea9c0f82

See more details on using hashes here.

File details

Details for the file pyreqwest-0.11.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: pyreqwest-0.11.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyreqwest-0.11.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ff97646ec059d39d29f72f126a31174097e7a2130a0572d1944f779789c6c241
MD5 6337d3db34b76b620e4fec7eceb3f872
BLAKE2b-256 c7dcb10ce6b47fcebffa92b9b8754d840ab1978291de2d88a053442a38e45e0f

See more details on using hashes here.

File details

Details for the file pyreqwest-0.11.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

  • Download URL: pyreqwest-0.11.1-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.11, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyreqwest-0.11.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fb2b925d8471aa7a127091c22ae1de2123ec4d31847628137ba8517c718a4e30
MD5 528d5253161cae330afe52bf7e0f7756
BLAKE2b-256 f215a107e4ffaacd01aa14bb22a3e0e2706f885531f25fb90b4173f2e952c4f3

See more details on using hashes here.

File details

Details for the file pyreqwest-0.11.1-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: pyreqwest-0.11.1-cp311-cp311-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 4.1 MB
  • Tags: CPython 3.11, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.7 {"installer":{"name":"uv","version":"0.10.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyreqwest-0.11.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f18645b400c3bcf92e6b61aa60a11d8cd441e3c570284ca1207f290130bbba82
MD5 a52470ddc36e023270562b8246048c88
BLAKE2b-256 fc2a6ced16d9e0dd60f83443284eee9fe851c6376b865d2d4535ff2927e524ba

See more details on using hashes here.

Supported by

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