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.6.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.6-cp314-cp314-win_arm64.whl (3.9 MB view details)

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

pyreqwest-0.11.6-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.6-cp314-cp314-musllinux_1_1_armv7l.whl (3.7 MB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.1+ ARM64

pyreqwest-0.11.6-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.6-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.6-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.6-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.6-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.6-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.6-cp314-cp314-macosx_11_0_arm64.whl (3.9 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

pyreqwest-0.11.6-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.6-cp313-cp313-musllinux_1_1_armv7l.whl (3.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

pyreqwest-0.11.6-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.6-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.6-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.6-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.6-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.6-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.6-cp313-cp313-macosx_11_0_arm64.whl (3.9 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

pyreqwest-0.11.6-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.6-cp312-cp312-musllinux_1_1_armv7l.whl (3.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

pyreqwest-0.11.6-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.6-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.6-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.6-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.6-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.6-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.6-cp312-cp312-macosx_11_0_arm64.whl (3.9 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

pyreqwest-0.11.6-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.6-cp311-cp311-musllinux_1_1_armv7l.whl (3.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

pyreqwest-0.11.6-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.6-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.6-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.6-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.6-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.6-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.6-cp311-cp311-macosx_11_0_arm64.whl (3.9 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pyreqwest-0.11.6-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.6.tar.gz.

File metadata

  • Download URL: pyreqwest-0.11.6.tar.gz
  • Upload date:
  • Size: 4.6 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.9 {"installer":{"name":"uv","version":"0.10.9","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.6.tar.gz
Algorithm Hash digest
SHA256 a24f425c8d73bc5605ff5bb48b67d7af1cb111bbfbc6dbeeea0a1b9346b151e1
MD5 57885db31a4ca124d586530af077a3b7
BLAKE2b-256 6abdbefe523f701dd3d95c24c6eea287b8b3ca567fe5f00edebef25344db2c91

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.11.6-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.9 {"installer":{"name":"uv","version":"0.10.9","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.6-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 60c16e9782849b97899960aaf748707b9246595daa331948a500c2bbcbdbb23f
MD5 37bf4032c642c791071f8664a2a2d324
BLAKE2b-256 868c0e814db83149c7f6ca044cefc83d50957bb879831fdfcfdcf6337fbe29ef

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.11.6-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.9 {"installer":{"name":"uv","version":"0.10.9","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.6-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 00a57c8ba8b57b96ddbf483d741656e8af390cb95c18f3da65925e8a62914b1a
MD5 c0adedd8d6228430d5f20dd3503ffafd
BLAKE2b-256 72cc1701d4201d959347ca1cc5e882d8435668b7588f6a9e1d654b74139fefd3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.11.6-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.9 {"installer":{"name":"uv","version":"0.10.9","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.6-cp314-cp314-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6e2b001def06fafd4fc9e3f85cbf66414e3c603331201cca11a873a08662f7dc
MD5 15ac99e4a5dbe322eb4b12e14b8cc933
BLAKE2b-256 6e1bfb375159bc2bd8e9891279f4aa6f048ce57c253234e7df7857994874bc01

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.11.6-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.9 {"installer":{"name":"uv","version":"0.10.9","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.6-cp314-cp314-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 4fb7db661e6c966080554682ddc768a9f9afe5e0fa96386f7848c82ae4be457c
MD5 4873196ce74a33433b74dd80f23ad3ed
BLAKE2b-256 e6373bed01df5e16af60a0d9fd9c0fb500a3dd84fb06884a2047457f267a5aaf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.11.6-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.9 {"installer":{"name":"uv","version":"0.10.9","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.6-cp314-cp314-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 3b13382052a6a618666e15b018d2e9e3f2ff276c5ef8a2bd045c41c07eb16e39
MD5 b84276c1150a49bd91d5a3da04468006
BLAKE2b-256 1346fca0751320307098940bb8c1411aefe630d624ec56170211fc774e572be2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.11.6-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.9 {"installer":{"name":"uv","version":"0.10.9","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.6-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b8cae283f21b198baa0746d96defed588916a2f3ee54132ada6324b81aa9d298
MD5 80799f934093d7c3c4207877fd15c546
BLAKE2b-256 90f50ba7e06ad79945f0e8b4128dd7b80f4f97a2c20ee7f38fb277ba571f1484

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.11.6-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.9 {"installer":{"name":"uv","version":"0.10.9","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.6-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3e187c1fdbfdac247ff42a67f2af6b07cc8deace85fb6b5b91244ebfe10d2b52
MD5 ab60a79288e39831257930638aec644a
BLAKE2b-256 40dfb1c488897bfa5668ffa87d77e13456fb1ded05f744959ac8e0d5087e4276

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.11.6-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.9 {"installer":{"name":"uv","version":"0.10.9","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.6-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8d3c338a710dbb48f1cbc703c84f37b525983fc8e2d0ced1c92b981956d2c8d5
MD5 404ba52619dc966002e5d8d103e999c1
BLAKE2b-256 3880222dee23ddd5c17ccee45a1bfe64a349aa467975b16f1ebc47916fc57dff

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.11.6-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.9 {"installer":{"name":"uv","version":"0.10.9","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.6-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 13f8db5f9a037fdfc8a305779e0bfa63a1c7319e45547b2dfa495eeb607c8607
MD5 06133219a7ea55667a8f99e03111ad64
BLAKE2b-256 4974295c6de5190c17e70401537a0094eed5feac0de8677596b967d8a495a5cf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.11.6-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.9 {"installer":{"name":"uv","version":"0.10.9","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.6-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 45ae800a3921e03642c29b40a3c5f0a36d33ee7b496d7d0f09dc6d7af80baf12
MD5 52428fc13ce9d44c79f94a893aa34732
BLAKE2b-256 a7f36ef47ba251fe6a4f9f8ec2efa0874168faf2a3d730856012d13edd15e81f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.11.6-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.9 {"installer":{"name":"uv","version":"0.10.9","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.6-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9d8efdc2796998b74d7b1598f4e3b8cffe9550aff4bbaa81120d6be9c768b747
MD5 0f3cdab140186f2676a6935eb0679234
BLAKE2b-256 41a60105432d594a1cc791a4a6b8ffab6fe15e4316b5725bc60d549c6b6df045

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.11.6-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.9 {"installer":{"name":"uv","version":"0.10.9","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.6-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f843c4915610c5c323b8c8effbf476bc32cf372a3a0e3513c36296f96310c090
MD5 7ad392c1bd2e7821d9fe17c116fd6867
BLAKE2b-256 ec8d83faf15db2711cd64b55a7e9eda974ea58b8189669c022857390ff6afc4d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.11.6-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.9 {"installer":{"name":"uv","version":"0.10.9","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.6-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5bf227428878a285278916c1e199aa43bc384037a083ebfb2047fc360bb96f13
MD5 b9bed5d015a35d42c451df12396984bc
BLAKE2b-256 60a913239ec5b22dd724b57a791f2a8e9ae97d25c51320fe3f24af7a474b2bee

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.11.6-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.9 {"installer":{"name":"uv","version":"0.10.9","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.6-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 f5b42c64735dda86d4767fb41bb6250bc1c9ef7140a382af16a3e6a68bfd63b9
MD5 b0c6d6fc5ead6ef5cefa75b5640a4a4d
BLAKE2b-256 ebd99dd348f307ee58ee0a1f23b0ef0aab8e01120f4edc3706788e60788fffe8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.11.6-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.9 {"installer":{"name":"uv","version":"0.10.9","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.6-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 40fe110b814f4c2b16661c88680e9a84e2dfa4875a72c5d39f79de0b7f6d1934
MD5 c15b71a6679233f291b1f2f3d4a53202
BLAKE2b-256 76c8d62f9ab98b740d6cbe1f9015ad2792f404e9fdcbcd00cb53b3f634d6a3f2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.11.6-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.9 {"installer":{"name":"uv","version":"0.10.9","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.6-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 3f875a3771f68b6b3462b6ca886ef093881b06719d04c834d2a168c57223c926
MD5 28614fcd20c45fa7d933d15d8b7a35f1
BLAKE2b-256 1f0a75cb53c78d910ae96f6e7932d55cecdfc5f6c2bc7e3759c9ffef339c33ed

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.11.6-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.9 {"installer":{"name":"uv","version":"0.10.9","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.6-cp313-cp313-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 139e6457ae71ac92f6bdb624995b851778ac2e4e3b3c430f18ccb49c9d31474b
MD5 6242f75c79d2a4086914753b418b3736
BLAKE2b-256 3ba251227c7292127e016111a85eb602d7f6a29d64d14fdf669a2b9325f2bd87

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.11.6-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.9 {"installer":{"name":"uv","version":"0.10.9","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.6-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 579273a18dca305e592059ddca5ec0480d98b5dc205d1fa94d3b57bc80cae19a
MD5 2066666c76b454b70bfc25bee9b849b6
BLAKE2b-256 dfd28f9c2c6710ef753184737faa25b441c0826eae02e6d99c112d23b806a567

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.11.6-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.9 {"installer":{"name":"uv","version":"0.10.9","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.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 26bf756eefedc576a9a07a6d864301f60884b9b13c1e1633bcf38720f8737f65
MD5 adfc91590560ad37d9206ce6150d9489
BLAKE2b-256 397224cf2b0efcc9e0a4e12227978818664cdd86004ca0ae072baacc177f5039

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.11.6-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.9 {"installer":{"name":"uv","version":"0.10.9","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.6-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 42bb5a87ba859bb0d539dc2305488fc945ad5ffa289afd4d0342aa3278bb978f
MD5 50093f1a0302530e20676594de68a70b
BLAKE2b-256 c49b436d005ee494e0ceb2b262620426c6e903d628953e9b521b2321e6c783e5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.11.6-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.9 {"installer":{"name":"uv","version":"0.10.9","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.6-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b77b0b0122b8b95c180090d4a160b7125e43c0821c6cd3b7afc648f5a01c17d1
MD5 61175b0edfe01f4675fcfa16aa2420dd
BLAKE2b-256 30b10dbb14a71c82a0da3a751eb39006d6221679b2ce067eb694e3c23bfaac48

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.11.6-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.9 {"installer":{"name":"uv","version":"0.10.9","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.6-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f1717cc7aba817edf9b57bc1ccdb5490fd8ffc9fad58bf3abff2569405afb91b
MD5 e22dfb4d3d2cba38418746ac856513c0
BLAKE2b-256 b9b1c6b042989600083b25586cebdeaeefffbda7f509a7c516df85108c92e3e2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.11.6-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.9 {"installer":{"name":"uv","version":"0.10.9","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.6-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 648835de39c6fbe6318cb88b472b5797f7f41652194eebd83ea325004b04f335
MD5 6f9df3403c0cc537f38c2b30181f0b3d
BLAKE2b-256 5acc561774893f562a899acf051ff2206261786989571b35fdecd41e5754e1d2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.11.6-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.9 {"installer":{"name":"uv","version":"0.10.9","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.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f0b9e076616460ee639937786bde87aa3cc6ff5157e94d911063d7933db814e5
MD5 46308267d8b419420f0174c40a982642
BLAKE2b-256 04ae548e9973011bee7687fc67fa75e1834b90cb73e9338d00a3d310e4f8d24c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.11.6-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.9 {"installer":{"name":"uv","version":"0.10.9","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.6-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 247d9a096d2a6ecca741708806bad6ddb7ca87b4062b0568ed121f070378fd7d
MD5 29a5f2862f961bc77ceaaafc7129a228
BLAKE2b-256 c13ed547add21bf4c6d56ec8463663f271571ac97167e8813c24f39a8285393e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.11.6-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.9 {"installer":{"name":"uv","version":"0.10.9","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.6-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4d45f0925df265832489361a9e3784f4eb14ef524d89db5d3d1aea36a5d98a06
MD5 35e099679397d8077fa0c7af5e12a68b
BLAKE2b-256 24c61dba61078dfc0a6e22a1fd1443cbdc8c4415b6783ef1f6406c053013907a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.11.6-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.9 {"installer":{"name":"uv","version":"0.10.9","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.6-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 f161103e46b3dc4ef07a5a3facbd9df033c8770d4b6cea43fbc823350506be1a
MD5 57cd2f430b7813a0d704b0241936ceb4
BLAKE2b-256 fd47b089e727ef8160ac1c1addf2f7e3c54ae1371ab9dfc737b7385ae9ad7ae4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.11.6-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.9 {"installer":{"name":"uv","version":"0.10.9","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.6-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b58992e69c2dc7cfe9b858534300ab969f253e4d6d8892e2289b3853b8cbbe5c
MD5 d294f247f0e1c68ab459310b27b45ed0
BLAKE2b-256 50132368b60a0f410605689d99768793f78d304377e881c62decba6ff8304afe

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.11.6-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.9 {"installer":{"name":"uv","version":"0.10.9","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.6-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 bf1dc4e736b06f7a71f8f45cdd2eb73d16cbff149c3b42a7c205704a4b0d5f14
MD5 f5a02837719e1b25e75ddcffd0b0de43
BLAKE2b-256 8c944fbad2948cd34cc6db6c4b5ccdb14660e770d4c38b585f445cbb4d492d35

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.11.6-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.9 {"installer":{"name":"uv","version":"0.10.9","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.6-cp312-cp312-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 1519dc09b7ee2b9c11de78f28fcdd2c1e4538a76c74c6d9478a725e778ab43ef
MD5 02da08bfbbcdf85dc8e8fcae25efb584
BLAKE2b-256 49f4b8e771fd5fc5986bfe8ec2040fe5fb0225176916352735bd9d1e60c0a1d4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.11.6-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.9 {"installer":{"name":"uv","version":"0.10.9","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.6-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 fd2a1b188c3be43344c3f1fa4b9b78a29cef5d3ec5cafd706e50a228a2c5725f
MD5 8c037cbe413c1e0c7626ae27981c64d6
BLAKE2b-256 7dfeaa7fe60ccd8a96fb96fa1241a05fb09829acf4e28e2579a539d56d8c623c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.11.6-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.9 {"installer":{"name":"uv","version":"0.10.9","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.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 14538a81d784527126f23295ef04157c982f1e780efd3d252b0dd7ed9ff6f0ef
MD5 91b51d85cf3cc8f5a225ea4983937a0e
BLAKE2b-256 6dd9da563427e7aee49560003ca60716309f207ff2dbc4238a74a3be7beda1b8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.11.6-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.9 {"installer":{"name":"uv","version":"0.10.9","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.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9ab9e67fdb7fc8371e8c906b6770eb5f00c4e053d0e5661ec1193344ecdb3fac
MD5 65fceec8ba34e8fbf62cf0d7872348e6
BLAKE2b-256 8b6f3d95f8634a770d693989468c3e703f93a943e14edaecca7b80d2c35a2c56

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.11.6-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.9 {"installer":{"name":"uv","version":"0.10.9","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.6-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d33f3b765f493d2b2ea4da7bfe97fab30beac02ee4a5c7c6e8f19cb4cf96e8d4
MD5 d4c3d114014083254b671924bdb61adc
BLAKE2b-256 5516536f36f8298145e7f611d692b6f5c0f1059a00480356b6f001c91962de4e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.11.6-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.9 {"installer":{"name":"uv","version":"0.10.9","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.6-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 df2f122b60d4344f6e893303adad3ca79a4c1a1c6f7b27b2ab354a89efc5e8d1
MD5 384ac013cba0c00641bd5f30c7aa46d6
BLAKE2b-256 4daa5e6ad69fc63882f139f4aae65178becacef352cadc907bf84554ff9d74ae

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.11.6-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.9 {"installer":{"name":"uv","version":"0.10.9","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.6-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 77c0d088856918bdb9fe49f25a35d5f5fcfb988ef6a1d6257a45da38cc67c10a
MD5 2f159dc5731b95ad61a9f22adc26b1af
BLAKE2b-256 f27c68ddc57eb7b2ca840a1610356bd29ffaf20b1ca15b0323bb934dffa6b4ee

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.11.6-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.9 {"installer":{"name":"uv","version":"0.10.9","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.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 41ad05b701fd9885d5ad61afad0b96ea55739ad1e3e5dbeaaedebd695a88907f
MD5 cc394c2a268bcb6429aaec2eb985ee05
BLAKE2b-256 3e18bd4945f2fd11fc4553de1b712c2af8f64347884470db8b59080f14b91648

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.11.6-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.9 {"installer":{"name":"uv","version":"0.10.9","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.6-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4a02bc8bad970a4de181633748208d891488da04bf1798ab4397b8e5ff47cae9
MD5 ced606ca03cecadd51ddd38b91d28d7b
BLAKE2b-256 32806481f17eda2a0458dc3a8f6af327292687ef2a8bf9d72292190fb878efa7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.11.6-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.9 {"installer":{"name":"uv","version":"0.10.9","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.6-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6bb2ea635e3a9197c27e5ba5378c238aed9aa5572c1f2da385ebdd5a3a2ec5d8
MD5 309460b9a9be857b59b1537bb0664cb5
BLAKE2b-256 b4a6c521f80ce478ed2f76989c81e8cdb3a02593212e702082b278ecc7359766

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.11.6-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.9 {"installer":{"name":"uv","version":"0.10.9","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.6-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 79b152b961a92733c409e2b7fe2b27e7c1a5f16f28f64cabec15bbdd56e3b9e3
MD5 ece04fc1f536a433f96cba0b05d3a7bf
BLAKE2b-256 b25403897bbfc80ffe691f2be1221c3ac6517a21b739e1af882faabc71accf84

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.11.6-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.9 {"installer":{"name":"uv","version":"0.10.9","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.6-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c8097b06b2e42d8c48cb7b05702f5d11bb89459447741efdd1cca7623467527e
MD5 3ce300df47017f68c102c649936162ae
BLAKE2b-256 0ab692410eac7d1fa85f73b17f41c32d15134c2aac1e96aea9cfbfb76ee666d8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.11.6-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.9 {"installer":{"name":"uv","version":"0.10.9","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.6-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 827fae9e3c6070a49588e4c4ca476fb5a96d5ff0805fc6c40668ebb39523c17c
MD5 be0bf1880f5679a63aa8bb21014bd5af
BLAKE2b-256 a32ac3904771840932e7607c26a73ff333e410fcfd53b07ae465ab7af3797c99

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.11.6-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.9 {"installer":{"name":"uv","version":"0.10.9","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.6-cp311-cp311-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 40df755be406160e2d9d4ee2ddf3e0dc1064ccabfc4470567274c92ce236c165
MD5 4cce6a88753c6bd236fdbe93a4428075
BLAKE2b-256 085570df5e6e2ec0f9c04f634d7944bb88ed75a62ee9ba0fb1e724b879f639b1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.11.6-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.9 {"installer":{"name":"uv","version":"0.10.9","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.6-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 97bdc9de0d5ddc18f002315afc190919f4ac3fe9a0a43dd555f8839c7f87d163
MD5 8d260c69617c6b75797936c187113cc4
BLAKE2b-256 b129779b249aeafa85661055062bbcb023382ed06c6ac6aa7e53ee31f0821011

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.11.6-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.9 {"installer":{"name":"uv","version":"0.10.9","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.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bd5ca6c006e2a6255392d6c1309289cc3925f72881cf8aed355a1c6b1bd6bb7a
MD5 3a183b3c0b7036645270ab00c3d68384
BLAKE2b-256 ac2137e1b671aba144a0c3430a853f35f2fdf57d199081a9330e1845e95f7da1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.11.6-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.9 {"installer":{"name":"uv","version":"0.10.9","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.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4330db27a3245832f93f7e567a0fabef617f9b2de10c7c474f5456855558cb97
MD5 5e50e41a1de6e2639b2b0283b3bd3948
BLAKE2b-256 121b40a437565c8f18433c96fb357b61bb406b3ccf9a93b8621ebb652640110b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.11.6-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.9 {"installer":{"name":"uv","version":"0.10.9","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.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7088c88d1fa3993556c240bc52fdf30b3d93dd219423ed0ee6836bb69a4ccd3a
MD5 103013683077c129c425fd8bb51c2429
BLAKE2b-256 bec9b6a303657da28e42a2bd9c9eb119f980fc4c6022b58096fd69d2e139c4e4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.11.6-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.9 {"installer":{"name":"uv","version":"0.10.9","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.6-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 267767fa50b3b045f1413782806968775d10d32db3c091865d159f9aed774e58
MD5 327c291976add0ddc267193c0ef1b829
BLAKE2b-256 89955be45f20d573bf53bfe00eb5ba6bd1e7da49e664f4925dc9f99941b5a495

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.11.6-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.9 {"installer":{"name":"uv","version":"0.10.9","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.6-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7bd3e5ca60e48dcd98902d0e0f7a44dcccf244ada3954868d52b86d0d87c352a
MD5 70814e0bd42c7eaeb930b11a4c32dc9a
BLAKE2b-256 708af3fbaf6b41d3e5c8698245cb6b2d4bb5e698f14a0e514808208492464f97

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.11.6-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.9 {"installer":{"name":"uv","version":"0.10.9","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.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2753c82c599753cf96375372a6c71c8adebefddedd71c55650f665038a64887a
MD5 0e03b9aa48726ce17b961e0a6bb3bbfd
BLAKE2b-256 f8b8d55d75f0e47f53c22dced5fabf39e347dcdb67a26ba0c5242fb13cc7026f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.11.6-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.9 {"installer":{"name":"uv","version":"0.10.9","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.6-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b4c8d129ae8d11e6e0ff8552c526a5e297ec75412dc90b9201471c026cd507c6
MD5 8fabfdff4ce4285d60d5e9ee293c2a98
BLAKE2b-256 2a6635e53442479bb419e253ccad4d18c2cd9133b007af13b73159e287473c65

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.11.6-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.9 {"installer":{"name":"uv","version":"0.10.9","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.6-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 68258aca0eb542e02b58039fe0f7e32c8561e1c60ba653383bd7a6336f334825
MD5 87819398313083eb8a2fbc4d468f5269
BLAKE2b-256 f7e4f0ea698768f7592c7437c7ad8e941aecd3b7138452ac3b79bb351821072c

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