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

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.1+ ARM64

pyreqwest-0.11.7-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

pyreqwest-0.11.7-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.7-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.7-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.7-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (3.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

pyreqwest-0.11.7-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.7-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.7-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.7-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (3.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

pyreqwest-0.11.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

File metadata

  • Download URL: pyreqwest-0.11.7.tar.gz
  • Upload date:
  • Size: 4.6 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.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.7.tar.gz
Algorithm Hash digest
SHA256 04bc4aaef19a46ace00b5bb38eeee86128c3463dcd9c551e67ca9878a468cf97
MD5 4b4cf8714b65badaf4054a400479d11f
BLAKE2b-256 1373262e42286bcf8287e6d117cea0c28279f9c30f01814b36dcb39509058554

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.11.7-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.11.7 {"installer":{"name":"uv","version":"0.11.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.7-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 6344b8cee33aaa100f1851bfc0a8141193d26c088daa42a8064d3354e467565c
MD5 8364abe4acb7ae60feb3f1992af4d018
BLAKE2b-256 7f266dd3ab4c2dd4c6baad0fbf664dcb9bf753f5aa8b7e48b024780c612d8ab5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.11.7-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.11.7 {"installer":{"name":"uv","version":"0.11.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.7-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 75cc5f1491a7a077072038f8f91c86a4ba568db0737ef1dca49827394a9a181b
MD5 159d52dba3b72d3bce83f4bec32b99fd
BLAKE2b-256 979977de7046d1ea4d900efd40f2d7e15068ac72575280dfb36f05003862eb02

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.11.7-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.11.7 {"installer":{"name":"uv","version":"0.11.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.7-cp314-cp314-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 eccb2f7fb517ac7bf72ce5716d0f4f06517622b73fef272065b75345e6eadd48
MD5 9f11272af27ede80895a6d7c6bd5f5d1
BLAKE2b-256 bb4a80367ae8a42f04fa5ef1a70c065f6316d04767eb2b783a1467336b405b33

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.11.7-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.11.7 {"installer":{"name":"uv","version":"0.11.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.7-cp314-cp314-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 1b2b1c0c8d921ef25f8e3d028bc18aeeea44eb1ae14d208299d0ce5e70bd13a7
MD5 074a7e0f12da736ff6d6c4912e438301
BLAKE2b-256 e5ad314bb33a341cf4bba564dc8541a355c73e044e109212fb1b8023970ad802

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.11.7-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.11.7 {"installer":{"name":"uv","version":"0.11.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.7-cp314-cp314-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 f357f42962dedaa6476dffef95bbe5802bcb8b02816fbc61e1c9c71e16b5e551
MD5 0e68e96b7a55303fb43df8ebf30aea1c
BLAKE2b-256 f28027605e04e7dc90251976194726b82e7e6cc5d6e6e92fd711a246d1920707

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.11.7-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 4.1 MB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.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.7-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e1225f6796fe0c79c8fd6289e45b0489ba91d2d4d8c4f2703a6beeae568dfbe2
MD5 7a24befa5731abcacb1df8af5afeb6ac
BLAKE2b-256 9a6f51c85cdc989e706661b1d4298debf0e26260a8818f507914db95740eb741

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.11.7-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.11.7 {"installer":{"name":"uv","version":"0.11.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.7-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b3565976a0cddc889ce37a87224f3b8343dc6568d3706dfd94874c4571aa2a84
MD5 01a1fd23dbd8fd76e0eb62dca7767e5d
BLAKE2b-256 139f85b0e6d2fb6fe5a6fc0307233f9997330bc286471052e173b46e35003dad

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.11.7-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.11.7 {"installer":{"name":"uv","version":"0.11.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.7-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0d48a8c1f5c6e23f487e6acb8d9a5b19623c076e77fc0e381d40a80bb015f6eb
MD5 6dc0f314ab2dfcca280fed3771b70c2a
BLAKE2b-256 adb7bd13b597341832a022c43c005a23b2b19ea9fca1c18ab307ead98524f46a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.11.7-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.11.7 {"installer":{"name":"uv","version":"0.11.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.7-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b35c89f4b7f053eeea2c8db5ceac060a75e97c631f85dd54e862e05062c907e2
MD5 cc450ce2fffb094355228ca0b94c5de2
BLAKE2b-256 4d38dafe7514a50e05259be6d8627881310c4609d24e2d0a300a180f208fdf75

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.11.7-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.11.7 {"installer":{"name":"uv","version":"0.11.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.7-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0e3c8697943ba15aba6cb78e364556240833b091814f91e7dda7918a91d1aa3e
MD5 c095255b18d9bc0e2f02b74f3f5a3a05
BLAKE2b-256 5bc6061a8a63af075a62dc4dc1280d26ea29f9887d860c949d009d9eb623d9db

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.11.7-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.11.7 {"installer":{"name":"uv","version":"0.11.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.7-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c15dabee2eca7b4ecf52bfdfeabf5e8bfc238a6c4cd57716a5a00c7d6e83b387
MD5 98c096434d732ef4b622d07639295c3b
BLAKE2b-256 55b7717a6f900093cf395b64e38a3f4158651294d68a957ae6b74dd9aba9c98a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.11.7-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.11.7 {"installer":{"name":"uv","version":"0.11.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.7-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 65e9156a15a8d83b931a8b1e84db81fd58b91e1a2f1e43183d06cc2f09936da2
MD5 a3d4cdfe092dd3b7cbf40ef46fd8a340
BLAKE2b-256 cf3e28ee9abea2e7798400365d7c5e716670f15fff809c95e8bae765975ebcec

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.11.7-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.11.7 {"installer":{"name":"uv","version":"0.11.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.7-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 da82ab62fb744f597e40ede68698ffeebfaffa13d19264735e34cbf40aba3b3f
MD5 3ba1fc71a621d5db3af2643aad806d16
BLAKE2b-256 42cffeab3cc8c540419ebfd372614fe9dfe4ee9e5848b1718c3044dd7d1b90f0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.11.7-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.11.7 {"installer":{"name":"uv","version":"0.11.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.7-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 92082ab385995593adaae3d2b7897915686a0e69d035ffd01311266ba5c241ee
MD5 02560b6f910a5826a2adc720c38aeddb
BLAKE2b-256 5746090f70bc06803be12087f8ced6f449b8cfe24bd4bc566e6cd5ad3e210184

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.11.7-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.11.7 {"installer":{"name":"uv","version":"0.11.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.7-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 c260fb4b470cd01f935456c79a29a186b4d823b8bb9f849fd473228024efb866
MD5 545b4015235da2f0ff60e808adbf32d5
BLAKE2b-256 ec46c3576c90751eba3ad879481b84a11a2640aed56eae0b0d06e28f38bd136d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.11.7-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.11.7 {"installer":{"name":"uv","version":"0.11.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.7-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 9b3f431602cd2032dd90de546889b95121ec6aec3e785072e55992391b904683
MD5 89cb23a6b40ff7626e5d27e63ef3b14a
BLAKE2b-256 6db56b075a4295ae1de02f976a1c269e8e468f0023c7e023ebeb3ff2f61d301c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.11.7-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.11.7 {"installer":{"name":"uv","version":"0.11.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.7-cp313-cp313-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 99391089737d2bd883f1924b2ba9d4c537e068d1121b0a66fc37b8ee7cdd4396
MD5 d6079b3da87d97941f11bcab1629fb2a
BLAKE2b-256 2bb9470538b4d0b9993afafc7e2d9bf5f705539f249d19241027d61235c5ac2c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.11.7-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.11.7 {"installer":{"name":"uv","version":"0.11.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.7-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 c37ed6104570dd2c347612e7c64fe5a5609cbf4844913b020b822abbc658de42
MD5 90152cff541c9deba237fdffdbabe346
BLAKE2b-256 2ba69b4211f4b386676c08287eb6baec6dc29f9cfb5d052f47c3a5aec65928d6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.11.7-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.11.7 {"installer":{"name":"uv","version":"0.11.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.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b0860d3139c8fdfb91a1fe23b251f7a73ae0b1d1082818a87bb64cd3cea2372e
MD5 d2b6d22793a128b27539ea105b827060
BLAKE2b-256 cd13c94e1330ef34a76f2662d4cbfef908bfaf9ec97db2c01e4fe0e408deeef4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.11.7-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.11.7 {"installer":{"name":"uv","version":"0.11.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.7-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 64d64061265e2675555ef7406c12b5b57198690b74c3716fff63dad26e59917c
MD5 71cc99a58302b3a27c8ff3b4cf90aa6c
BLAKE2b-256 c13207b39b0bda060eaa1a8b2c03c9bead2d819cbc204f9b130ff1b990944bf9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.11.7-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.11.7 {"installer":{"name":"uv","version":"0.11.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.7-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e1d1cc3d8a6742086b4fdb192c257085b30932fcf8f6c62682c8806bc1616c36
MD5 38d1962eef6346f2c21649dc40cc8c4d
BLAKE2b-256 a61f38dbd8dbe0cddf8352d72e34b4b027ae480b3b1a60e62136cb7b6799b163

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.11.7-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.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.7-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3d2d9e516167c703a6f7d87b186151be6449e8f070f981c2645db412797cde48
MD5 21759a44a662318d611caf09b3bf17c4
BLAKE2b-256 6cee3d06eace362861f6506658517982ef5beccf672d6b4c6ef6adf40833a1cd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.11.7-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.11.7 {"installer":{"name":"uv","version":"0.11.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.7-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 56339f6e8d97cdfdbb18c3710cb5f46ac6407afc8adfc4d9cd5cb1bdcd3a26a6
MD5 d13bb5a5ebffc1eecaaebad79bc92d18
BLAKE2b-256 0fd651405a1f42b90e2ca153e9d365b9e8f645b7eb2063b20f2b773691007e42

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.11.7-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.11.7 {"installer":{"name":"uv","version":"0.11.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.7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b914e217a40a9c85ff3d64a1ff56876cb5fea6a7fa8e696b81fbb3eb03aeaa98
MD5 96301ffc5338eb6780236be7066b805f
BLAKE2b-256 60b7f69038a7a360f240dfc58eee1dbe3d8cb4fe1b692e1f3a888f1555e20263

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.11.7-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.11.7 {"installer":{"name":"uv","version":"0.11.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.7-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 45d3c69426aa9929d37d127fe8b98db5e1390437ad424fbf6eaee6777806a260
MD5 807f03a8ac9363d8e54acad9cec53c9c
BLAKE2b-256 f0b056a5b8a8f63b8ac6a27ea37834ef0f1cec961d8388719680ce11480bd13c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.11.7-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.11.7 {"installer":{"name":"uv","version":"0.11.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.7-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6e4915b541efef8d1f496f21e2dfd4ad2a42bb6da17c33fae8e9542e56ad3b25
MD5 4c97160a61e0995fe7dee9c0d115a6d1
BLAKE2b-256 b580ac9e1ca593c1a6dca3ec6d4dc7cd717b8e846462d6d9a3e470e32f56ece9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.11.7-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.11.7 {"installer":{"name":"uv","version":"0.11.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.7-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 3a9cd3bb78cbd8f553df9aac5b48295e03d276bb104af47c151807975e2c5a4e
MD5 599f14efe81fdf99d064e27ca3bf5a52
BLAKE2b-256 62935d4a4f97eaa0bd8491e16e5458da26660e1d30613dc977c2cf6eb1eb7c5e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.11.7-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.11.7 {"installer":{"name":"uv","version":"0.11.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.7-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c5ddc78980d304c82913613f2684c32ec1969b0deb8d05a35bfa91225dc33bfa
MD5 24e09d25e53ed9ba90b3525a1b641673
BLAKE2b-256 f1ba90dda656a305c5882f9d19e1c714be812118452b98f4db80fb1f98b1f703

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.11.7-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.11.7 {"installer":{"name":"uv","version":"0.11.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.7-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 49e2e5f853dbe886a64694fb8d4f3cb0f3e9678c31fadcc9e269016c983da1a1
MD5 6bbcd8f2594c43bc81062581f90e35bd
BLAKE2b-256 34ee40a135d9bc40c95c226a9a64faf025c7f39b7405f6609f975f78872cd9b6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.11.7-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.11.7 {"installer":{"name":"uv","version":"0.11.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.7-cp312-cp312-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 a0d88a75b4b650311134ff087982d557625c15470a9614ffbcd106d0c5919151
MD5 9665144d688f7528a42f5fbdafe04f33
BLAKE2b-256 9026dd2eb1e9c1441efb21358192c4de514c85d74f67792b04892b554cbb2bc5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.11.7-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.11.7 {"installer":{"name":"uv","version":"0.11.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.7-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 0346fa6fb4b4de41bbe9f69c50670edc843af23c0882a32ee4fe641feda0a4ba
MD5 f96c11cae9687bfcc5dff18480d6fb78
BLAKE2b-256 d1e0ec8c6616882e7c6bc7ee3e89e900bd40d19906812fe64e43fd73640814d8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.11.7-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.11.7 {"installer":{"name":"uv","version":"0.11.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.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ede1f28916fb2c5643ff89cf02c40a46e89f6780f01711fd2b6ee08c73b7b692
MD5 da75a3dde09b3a98c2ffaa8912347b9c
BLAKE2b-256 3aa8b0832908a6d2ad629609bec369fae106e78a17c9289c4b6e1ce728a6258a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.11.7-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.11.7 {"installer":{"name":"uv","version":"0.11.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.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c3b31033d7f99e42feb5c003bed7153f2968de0f46d6c75e8672ef80b2aaf147
MD5 20122e8a17f0de9d9e88cb55f4f4f525
BLAKE2b-256 82e57daa6d0dc56f7c588aa398f1bc89ef669e3a1890e4bdf705e3dcf830dd8e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.11.7-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.11.7 {"installer":{"name":"uv","version":"0.11.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.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 82943fb15b4e55457b32dd0c9c3e6405f5e18a89b42727e8dd092774e1d38448
MD5 fd622ef9692644b1dfeb92d4688a86cf
BLAKE2b-256 92cad4c8d498e0d14adf9449887565c62d76220d9f8a3c712c61f73618b8d571

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.11.7-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.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.7-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1aa187377d4d994c4db33bbd6569d5e594b68a182d50936200faf28c4a2c7581
MD5 6fa3c1fa9a2be26e4a01b1fc28db9324
BLAKE2b-256 f7ba5656d9c8ca5d9aac93eafe9c2a6ce8b556acbad0ce2bf285bbb1f7f3c23a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.11.7-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.11.7 {"installer":{"name":"uv","version":"0.11.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.7-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f6c2a93628081b16e6937b436308dafc45ff7b38e034bddea8924e8ea46155ab
MD5 91ba53c4dd7ccdbf38cadf4cdcc283a8
BLAKE2b-256 942ef1316022f31bd3aa13d7f5c823d1cc4d045665b667e1f60fae728cc19920

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.11.7-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.11.7 {"installer":{"name":"uv","version":"0.11.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.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ab78296da0f124f7429bf3cf3d3f1a681f3e974ba137d2f5c7df904ed29338a6
MD5 e5c13aefcf0a4b91d63d93398005970e
BLAKE2b-256 b2706c80e0d800ddaa37ea17757c29f7a81d6301568a65fcae3a0567121ded0f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.11.7-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.11.7 {"installer":{"name":"uv","version":"0.11.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.7-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fa17e5eff769dac19898f3a06aead11add274442e946c2da8c973843ec95186e
MD5 89d90340f736b7fdca9c13fc9a14c080
BLAKE2b-256 2558e305fa8df38c9ad7ca14a127b099215a1dacf6f890b5a6e27993ea21bcc0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.11.7-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.11.7 {"installer":{"name":"uv","version":"0.11.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.7-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7e8006ec4d8a47897e025a2ee2624ab88668eaa5e7c1d01c0e852c7f1b90b5b6
MD5 ac33bdd0aad404d7ffce7fe8e668117a
BLAKE2b-256 32d24b36414db49cfea9c27c26eca9b6dcd9c13f8b1fcc73a0ecf3134de534c1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.11.7-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.11.7 {"installer":{"name":"uv","version":"0.11.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.7-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 e182d76c91daf08b12a506e2b6b41c784e4b644c0259e41304ad2e91372226c1
MD5 ef7a9dd898089693cfc6e30a727c7a75
BLAKE2b-256 91fd329801df3d7a44ed3fda133d368d88b2c9f53b5afcb386eb3fa725a4b858

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.11.7-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.11.7 {"installer":{"name":"uv","version":"0.11.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.7-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b6704482f5d499e6ef9da465b0c6ba5ea3eb55b21cc28cc9865429a69f344205
MD5 053306e250a72b26b7c5b431d0b0d4d9
BLAKE2b-256 033bb1c4261efd8028693e2cc7459448c7f10db1e352e1a06176845cd3cd2f16

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.11.7-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.11.7 {"installer":{"name":"uv","version":"0.11.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.7-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 555e9f8708c1294be3b9e51c29c2f4cd4fdb37eb292be40b1c13984f488796ee
MD5 ff08b104fce9b6f210cf8b38e444e3c0
BLAKE2b-256 44723e75f672b22a1000746f18136439bc67d254abcd82b7b32816f3b272144b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.11.7-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.11.7 {"installer":{"name":"uv","version":"0.11.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.7-cp311-cp311-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 01ac913d9d14a927cfeddeeff4257a4f339eac0ea13c6c231478729b1b4a87dc
MD5 e8775a31e54a24e1767b6f835710c277
BLAKE2b-256 dcd7ea85255d39ff8ad27867a1f0494788a6b63f992d5ab3fb64440ca2877b73

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.11.7-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.11.7 {"installer":{"name":"uv","version":"0.11.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.7-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 96c9f20d3181c9bb0f80a20b40bb6eb400f77f7035bda722b5f00989e21ebdf7
MD5 5372747697e21e2f444899777498a29f
BLAKE2b-256 19f812b3f6633b63bfb9c64efd53038c047c223320d76304db1bde3adae8c7c8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.11.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 4.1 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.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.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9b0e6ff3d1514c9b105f1846d923cb41c98244b46d7ed11d96bbaee971f8098f
MD5 653a0b64d8eccf6d24bad53c89b4999c
BLAKE2b-256 7c51b04e763f8f9df2cc786cb89f58cba190ab9650a4135ff988459c808f91e0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.11.7-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.11.7 {"installer":{"name":"uv","version":"0.11.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.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b194480b00df7e801d39bb6e22075d9a4f5277b05ded900be20ae8f5b2b4cd84
MD5 134d70e9a956611e1da05a50930b00b5
BLAKE2b-256 7c87554d634fd1cb6a5aea379a28f78684833b5d2490599106eda3c100ae69db

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.11.7-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.11.7 {"installer":{"name":"uv","version":"0.11.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.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5a2a8963112e3e1e27d57a794b759df0d0e36e297f51a0b339909f3791d5aacf
MD5 48c7008c6e845b2838101e59daf62259
BLAKE2b-256 312d84f77304ff4429d3c2f32da8cbfc179f5a80642e17520e07d17274db9f45

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.11.7-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.11.7 {"installer":{"name":"uv","version":"0.11.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.7-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 29fec333394d2da0dbe43c5f633d54cb99ace23e453c3facc3141b6d2a614a6e
MD5 4c04ad0a64f6638d571c9c1d88ba88fd
BLAKE2b-256 8bd5ba580879af0b811b7f63f99f979f88c5f7c04abb6158157babffbea3f7a0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.11.7-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.11.7 {"installer":{"name":"uv","version":"0.11.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.7-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1849f48c7dfc1e50d93471beae0417fa8dd29c1971e2b6dc0c7e51c2a1e520e5
MD5 01efbf203d38c9555445f7b4fc0a46d2
BLAKE2b-256 7a395213daa97f10275ff713d1f1dec52c65b0c2caf448f4347573f4b91a8171

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.11.7-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.11.7 {"installer":{"name":"uv","version":"0.11.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.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b6d5c577f791f7250f9e02a56140dbbc7f52b20b9354d822f290bb5f5641bd40
MD5 a2e66a9bc318fe5681395ddc9c562c66
BLAKE2b-256 efc112dae652c694835bb0c16948ca86f3dfa91d5258790fdfb2ea50d711a307

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.11.7-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.11.7 {"installer":{"name":"uv","version":"0.11.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.7-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ca387eeb8139a4a74b77df18b991182fe71169e14cfdfea82d8b339a9152639d
MD5 341d27f64002c2da7e6cfa9fc9b6f0c8
BLAKE2b-256 e46e14243704a37dd10c07b6f968b8751d22ddc2feb54964dc6c3aa3f6f52c09

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.11.7-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.11.7 {"installer":{"name":"uv","version":"0.11.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.7-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 177ded1f5b2c5dfbd1a014b51102bd2a8d4a1852fb403e8624f2e70f9e863856
MD5 e4e4f310e062ec06ce4a7c2831ce1d0a
BLAKE2b-256 b1d6c61d816f7c14813d2af8325687d3377f8169fd9a90769ff5cbdcc559cce7

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