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
  • 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.9.0.tar.gz (3.0 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.9.0-cp314-cp314-win_arm64.whl (3.7 MB view details)

Uploaded CPython 3.14Windows ARM64

pyreqwest-0.9.0-cp314-cp314-win_amd64.whl (4.0 MB view details)

Uploaded CPython 3.14Windows x86-64

pyreqwest-0.9.0-cp314-cp314-musllinux_1_1_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.1+ ARMv7l

pyreqwest-0.9.0-cp314-cp314-musllinux_1_1_aarch64.whl (4.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ ARM64

pyreqwest-0.9.0-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.9.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

pyreqwest-0.9.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (3.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

pyreqwest-0.9.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

pyreqwest-0.9.0-cp314-cp314-macosx_11_0_arm64.whl (3.8 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pyreqwest-0.9.0-cp314-cp314-macosx_10_12_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

pyreqwest-0.9.0-cp313-cp313-win_arm64.whl (3.8 MB view details)

Uploaded CPython 3.13Windows ARM64

pyreqwest-0.9.0-cp313-cp313-win_amd64.whl (4.0 MB view details)

Uploaded CPython 3.13Windows x86-64

pyreqwest-0.9.0-cp313-cp313-musllinux_1_1_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.1+ ARMv7l

pyreqwest-0.9.0-cp313-cp313-musllinux_1_1_aarch64.whl (4.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

pyreqwest-0.9.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

pyreqwest-0.9.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (3.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

pyreqwest-0.9.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

pyreqwest-0.9.0-cp313-cp313-macosx_11_0_arm64.whl (3.8 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pyreqwest-0.9.0-cp313-cp313-macosx_10_12_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

pyreqwest-0.9.0-cp312-cp312-win_arm64.whl (3.8 MB view details)

Uploaded CPython 3.12Windows ARM64

pyreqwest-0.9.0-cp312-cp312-win_amd64.whl (4.0 MB view details)

Uploaded CPython 3.12Windows x86-64

pyreqwest-0.9.0-cp312-cp312-musllinux_1_1_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.1+ ARMv7l

pyreqwest-0.9.0-cp312-cp312-musllinux_1_1_aarch64.whl (4.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

pyreqwest-0.9.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

pyreqwest-0.9.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (3.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

pyreqwest-0.9.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

pyreqwest-0.9.0-cp312-cp312-macosx_11_0_arm64.whl (3.8 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pyreqwest-0.9.0-cp312-cp312-macosx_10_12_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

pyreqwest-0.9.0-cp311-cp311-win_arm64.whl (3.8 MB view details)

Uploaded CPython 3.11Windows ARM64

pyreqwest-0.9.0-cp311-cp311-win_amd64.whl (4.0 MB view details)

Uploaded CPython 3.11Windows x86-64

pyreqwest-0.9.0-cp311-cp311-musllinux_1_1_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.1+ ARMv7l

pyreqwest-0.9.0-cp311-cp311-musllinux_1_1_aarch64.whl (4.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

pyreqwest-0.9.0-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.9.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

pyreqwest-0.9.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (3.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

pyreqwest-0.9.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

pyreqwest-0.9.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

pyreqwest-0.9.0-cp311-cp311-macosx_11_0_arm64.whl (3.8 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pyreqwest-0.9.0-cp311-cp311-macosx_10_12_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: pyreqwest-0.9.0.tar.gz
  • Upload date:
  • Size: 3.0 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.22 {"installer":{"name":"uv","version":"0.9.22","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.9.0.tar.gz
Algorithm Hash digest
SHA256 1cac532b625d177f7f6f53150cb94fdca8052a5315386487056651d90625ea37
MD5 a4d69cd7174c182050a1b7189ad9e0e4
BLAKE2b-256 8e202bf524758179355e30ffa6208f7475389cc0abda39e194978f3bb5e3b6e2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.9.0-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 3.7 MB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.22 {"installer":{"name":"uv","version":"0.9.22","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.9.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 1cedf97689522d8a3eeb611a0b86d0597f524c6983ea5dd7d18cfd67f9687fcd
MD5 fa13a57e9cdab08e6a2a72b36239de4e
BLAKE2b-256 c62a453bcfd3a7dacfcb7dd7bd9d5325a7a268acbccb4a0eac0bc1117652c809

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.9.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 4.0 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.22 {"installer":{"name":"uv","version":"0.9.22","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.9.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 c090d0de0710d42d7e17f0574f3cfdc5b83bf8cf4a04a67c8e4327bb1830666b
MD5 0991565c12e2434a75804b3f48045d18
BLAKE2b-256 529b8710c3ed6a72598c388b8bbc144fc80fdfce9ea8442e440f71f74809c967

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.9.0-cp314-cp314-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 4.3 MB
  • Tags: CPython 3.14, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.22 {"installer":{"name":"uv","version":"0.9.22","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.9.0-cp314-cp314-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 085f35512cda4628e1d05742d990b368a4ca3f61806f99ad8091c39d56aa72f0
MD5 14b7539424812cec577df76423c2ff45
BLAKE2b-256 2996668bdd914ee5420637601604f662ae8ea5fdcc59035e1e5df2276ab9fe83

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.9.0-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.9.22 {"installer":{"name":"uv","version":"0.9.22","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.9.0-cp314-cp314-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 d0282791215a638e2159e9bf2b1897d9630c4e76064001d5d3818d5eeb954645
MD5 edf153668656506fe259b5c1e4440de6
BLAKE2b-256 af7e6c6b59e14f8c995b29f37e10c7c9342db7353b9fe2a7ef69ab49bddaa994

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.9.0-cp314-cp314-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 4.0 MB
  • Tags: CPython 3.14, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.22 {"installer":{"name":"uv","version":"0.9.22","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.9.0-cp314-cp314-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 6fe9558ee23434841ce07d2e0ecc6fd8cc156b3481a71ef123e62818b82c8381
MD5 c5cf4d6c3b1597e0e7dfdd49f53577bc
BLAKE2b-256 0352693f1a91aa174a8a0d37a16b55560f371814b04a26c1523f875e798b5c88

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.9.0-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.9.22 {"installer":{"name":"uv","version":"0.9.22","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.9.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 78abbcc71b741cd16ef8950e755925637812342c8c2185c4ad8438941b488672
MD5 8169c9c500265a2af33671fd46c37c66
BLAKE2b-256 75b74e81a0c5c8e29651bbe990750f3bbe7749890e005acce15fde0007bcaf3c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.9.0-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.9.22 {"installer":{"name":"uv","version":"0.9.22","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.9.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e46512093c7137714fc6bab31be4a1f19a51667cbc507ad0f12e18183b8f7a57
MD5 444c810e7cb7d2675a01b8cf2d8ff303
BLAKE2b-256 a4d23d464c98add82957ffed434faf641ca53b4a1f623c5692642f463a5655da

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.9.0-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.9.22 {"installer":{"name":"uv","version":"0.9.22","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.9.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 aada753cbd7747eee972acc7d30f939377b49c9e9aa32b1772e329c4042c5a16
MD5 34e95f5b69836405160489f1ca2244c0
BLAKE2b-256 45858da219c01470645cfe2b63191a2d4181a974905e3533c5d0b7d36930efa3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.9.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 3.7 MB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.22 {"installer":{"name":"uv","version":"0.9.22","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.9.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d6e7366a07788ec86598bc352117f2488b325d173d48eb5e098b48f4ba88423e
MD5 89c6386a535dac706eed707883ec507c
BLAKE2b-256 9b12ab969e723c0408ae5d54837a7a68e80b6fdae4300dad76ec44f8a9d09619

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.9.0-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.9.22 {"installer":{"name":"uv","version":"0.9.22","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.9.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 10983975f1e8a1c9f6b7454fd8ae2b26f32f501b8b1f5df3fc148daa9236bdaf
MD5 8cc22da94a158745f7059f428f6ae7da
BLAKE2b-256 cfa0cd2deb1bd15f4a97eba724023b35199029f8c72adad2ffd6947cdab65c1a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.9.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.22 {"installer":{"name":"uv","version":"0.9.22","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.9.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 586812515010a6356f34ab4713fd87872e7af1f58fc59eef9ba1f7366855ad01
MD5 d0b5fb98bbc7070fc68895a012e6a895
BLAKE2b-256 a9e116a4a6eb7d21c93e2a43476af868883f2caedfded99ce87c50d7f4505a38

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.9.0-cp314-cp314-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 3.14, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.22 {"installer":{"name":"uv","version":"0.9.22","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.9.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0410a279cc9dda760b45538866d39690236b2fdadc958b74c8e95c54a4d68827
MD5 057b3b12e35f58cff6b88e093eb23ff2
BLAKE2b-256 f72bd095d29f5422293ca70c759bc4189b0139fcd0bb5f5dd57886a94a8d8a09

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.9.0-cp314-cp314-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 4.0 MB
  • Tags: CPython 3.14, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.22 {"installer":{"name":"uv","version":"0.9.22","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.9.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 dbc0aa910c3aa74bdb5d5fad5626a13269a272d7c33b95e68d4a445ffd87d9a3
MD5 e1d697997f1c6d06b390ea8b8d2f905d
BLAKE2b-256 2c88384a384437e75f0340170d3be5d47d997de973e048d788bb8e529fdc0415

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.9.0-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.22 {"installer":{"name":"uv","version":"0.9.22","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.9.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 60a0e69cdebfc94849cbfcb84506bda0d535561e23648b2ccd73662ba2b07fd9
MD5 6d49ac7f105541ba4db6c9d7ee039447
BLAKE2b-256 9f25695cd3c176b59038914704c667de07785dcdea442d8a0653aad6261cb915

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.9.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 4.0 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.22 {"installer":{"name":"uv","version":"0.9.22","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.9.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 391be782fa92317277e32fe1094a9efe7678a0d73888b32d7fcf3c4ecbcfdb89
MD5 cc3aabdef9ca7e7e46ce4dd8c92815a1
BLAKE2b-256 1d5117cecdfc9f64877e133980e826030212bec9b3c87dc0be573b96b4a7b254

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.9.0-cp313-cp313-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 4.3 MB
  • Tags: CPython 3.13, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.22 {"installer":{"name":"uv","version":"0.9.22","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.9.0-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 712219bfcec2390ca210e128115a10c4a5f5648d6f412beeb0a8341f5d157846
MD5 4fdd448d4cc71cb58c3d9a3be2e38649
BLAKE2b-256 ef4d926cfc6b178c2e3beaa7fe0334b6ad69493e2da018287b04de8c2cc7e3e4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.9.0-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.9.22 {"installer":{"name":"uv","version":"0.9.22","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.9.0-cp313-cp313-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 2f2c28691b88ace3326e1497881b30eb93f68fb4945759a0a2d36544be2663af
MD5 2b896d4d16298eebece775f7cbc5a474
BLAKE2b-256 ee2ee260839fd4f252b2b259558ddba97081e578d126dfcd18f7ac2579784522

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.9.0-cp313-cp313-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 4.0 MB
  • Tags: CPython 3.13, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.22 {"installer":{"name":"uv","version":"0.9.22","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.9.0-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 50a9f9c886238a0942f1cce316bcc8f2a4ffa9ce4e60456f63753d3f42adbd0c
MD5 5006e0c743c0a1c3c55346212231c642
BLAKE2b-256 5efa4e9e8f4065a4d463fad3d8539724f6b4f18c3915d14ff328436404ddc92b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.9.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 4.1 MB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.22 {"installer":{"name":"uv","version":"0.9.22","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.9.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fb7955d8687504c7f6698b0b118aa1b55d5eadb00df7708fa0371d870b53d7df
MD5 5382df52b86c4f8d6ac2c12eda7d3f4c
BLAKE2b-256 414b36a6017d13987b700a282cd6603100ba18c7b83928d71973c664e0de9300

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.9.0-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.9.22 {"installer":{"name":"uv","version":"0.9.22","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.9.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 93b0ba2dd9a1c11beaa55805728972807fe6fcf0a225c04a33962c84826cc4aa
MD5 7b6f8d155b0c21808d2596c8df99b2bf
BLAKE2b-256 abeab8cef72b299164184b6ab7d8ba37ae7e67163a7dda4360c64ad6dcd74573

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.9.0-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.9.22 {"installer":{"name":"uv","version":"0.9.22","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.9.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a9cc95876bb17e4723b70dfcf1b69fee4c4fb5f4c90db7639afc41dc53d85b9f
MD5 835e2edd02b8214556e1927e71c0b0ab
BLAKE2b-256 784b75cf4105fbd741574414406cf16b624920b6fd62761bf651a816c8432a00

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.9.0-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.9.22 {"installer":{"name":"uv","version":"0.9.22","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.9.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7a94ec851aaa1bd54f16050e2f11614a39d642a4fb369aad1e526ef05a7cd43d
MD5 9a9ab3a78e1647a8b8ebdb80152d2093
BLAKE2b-256 1f16148f6d846743f1aa762301bcf3b52280e6972b7bfe85014a1cfaaa73d9c6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.9.0-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.9.22 {"installer":{"name":"uv","version":"0.9.22","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.9.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e9230c586635bcd6c012fbc378cf864ba66e989dfd3526c738c25882b7a1cdda
MD5 a135c511fc8f046340eb698b6ba3d197
BLAKE2b-256 83ebbf20e8f699a7e3b40e77e0fbced725eafe2fed6023b8e9df1e5e5607c42c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.9.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.22 {"installer":{"name":"uv","version":"0.9.22","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.9.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ba51ac501e27d1b375aa0974f84fd53aec75005b64bd994b7872e3a93f5cf8f3
MD5 82651e27d7e4addafd3cd71550ede977
BLAKE2b-256 0f1f559c1d1d1a1329abfea43e8506866a3495007792c8ddef02a633960f4f97

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.9.0-cp313-cp313-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 3.13, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.22 {"installer":{"name":"uv","version":"0.9.22","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.9.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fd0bff204cbb85da2b8ab2faba955ea417d7f2aec7876b9034f9d65abfbcb70e
MD5 6e36b1995f4c05520acc098b3e1e380c
BLAKE2b-256 786c7aebceaa6a5f8539e0f059d8336819c446016de40fe1cffde45c3864f757

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.9.0-cp313-cp313-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 4.0 MB
  • Tags: CPython 3.13, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.22 {"installer":{"name":"uv","version":"0.9.22","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.9.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2c35ccd42b9cea5fa12dc7f3709915fef98411042a4b23dfdafeb7616c99777d
MD5 7b099ef644f938b351d070ea2ede5fbf
BLAKE2b-256 68aa0aa2bb5c6d2ab026b65a04dcf5622a6c2d3d43d4812b4a76025646955625

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.9.0-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.22 {"installer":{"name":"uv","version":"0.9.22","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.9.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 0d4b279380bdf31296850525bfdd4be3d6442b53e0b0e5b43593da444d96f25e
MD5 b21e06064cdba4824a7f2cc4e0feee4d
BLAKE2b-256 6853e0c26bce50ce249b19311b1845ad9d4d82e86d33dd9a04ec49997cda4834

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.9.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 4.0 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.22 {"installer":{"name":"uv","version":"0.9.22","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.9.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f2740a06b405b1e58a9ca487ffd01ad068506882b49f868a20a63d14a8696881
MD5 5527333ef52ebec78828cd83e856e83d
BLAKE2b-256 c38aedd33d1664089edbf3e63171a78939a41b84c7b3363d6a33ef2cafbfc930

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.9.0-cp312-cp312-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 4.3 MB
  • Tags: CPython 3.12, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.22 {"installer":{"name":"uv","version":"0.9.22","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.9.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 0ccc43c116fdf28a8fd1d04e3d18834c19bb4ebc4e72ea0642ffc36cfc0a5836
MD5 8ac82f6f9ceb4507d9ed4be48fb1e4fb
BLAKE2b-256 e4ea1c862724e27bba56e9d9c6f19f630c66d67312ea8e57812a3c80415f7af3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.9.0-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.9.22 {"installer":{"name":"uv","version":"0.9.22","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.9.0-cp312-cp312-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 3a82f73c3ca28bcf4e3b13e5ae3f218c9a9ee83e92c7db8eaf98f7c9270d8ee0
MD5 31be18296423958e55902e2103bed765
BLAKE2b-256 298a9f73c330cdcfd709ad13996f5233c3bf434a557d23925a81cd39f59d4e16

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.9.0-cp312-cp312-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 4.0 MB
  • Tags: CPython 3.12, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.22 {"installer":{"name":"uv","version":"0.9.22","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.9.0-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 62fc0ca6d98330efba33f616f5090ed53de267c2a387463fb34b197db32bc258
MD5 9c24738517923a703e24bd5a161a763e
BLAKE2b-256 f18e3c3516a12e84d17ee40487325c7c0a6059d408c97ce4008b1838e1c2052a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.9.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 4.1 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.22 {"installer":{"name":"uv","version":"0.9.22","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.9.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5adaf16e8c30aae4e25b6e012470e7d9d53aa512cc25fb8799c13f29904db28f
MD5 e3f703145ca3082b231d20e74de117ab
BLAKE2b-256 4106bac25c763bb67f29e34d1882fbcc5cdc5c1215233d9f9edef69e0b8fe57d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.9.0-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.9.22 {"installer":{"name":"uv","version":"0.9.22","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.9.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8295f67a8797f0b41001322c418a3c928f28796e81a7fda4c542738908525124
MD5 bcefaaefa55ec9b476c9eb9304b6e993
BLAKE2b-256 458ae42494d6746908cc2c73890c74126b176d990616203b73d91624f0aefdad

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.9.0-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.9.22 {"installer":{"name":"uv","version":"0.9.22","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.9.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bf06dd15c8173bb92005cb41f094751e96c9d2def200727db857019f04b297bd
MD5 acfee317d59e65244093d1660905d0e5
BLAKE2b-256 9061cf69bc07b47cc2f4a3191f5c7fa36bb45937002f77b1af311486d9aa9840

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.9.0-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.9.22 {"installer":{"name":"uv","version":"0.9.22","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.9.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9aac3dceed03ebd2bea1d5b1b7aa6562bad56bc9f7caee7e0e42f3ed3c7f9c10
MD5 fa060b5a18e5826267a300c872ad0042
BLAKE2b-256 a694af93d80f6f16804ad40b26b472885201b1b6f8b370aee416294baa07cbb4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.9.0-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.9.22 {"installer":{"name":"uv","version":"0.9.22","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.9.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ccf1567b24e82a06fb8f117d52cb8980c7d3aa41ea8daa041043f075f3d2ef07
MD5 3f5f23e39d95007645599e439007911f
BLAKE2b-256 31df7c0b8858ca52908ba106d6cfda5ece3ed7d2d0ff4f93514d829678e8ec8d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.9.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.22 {"installer":{"name":"uv","version":"0.9.22","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.9.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 26242f158ea49b05889615d593989e37cffd275fb1f01e2483ce52ae7ebc3aae
MD5 20246b27fa33ac53a2573adf065694ed
BLAKE2b-256 e3877884d1899855f6b76b84685d5346292accbc83305d77c6aa4093fa5a7986

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.9.0-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 3.12, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.22 {"installer":{"name":"uv","version":"0.9.22","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.9.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 559994b1fafcd44b5075c5bbd1bd552c107d917b1936d8746a304e201425e9cc
MD5 7696525fd052991ce7261440a65a4552
BLAKE2b-256 ea16e90e8bc25134593204f743c7a4a2ee01046d9ccd42eb469e0e5e0e3e23c0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.9.0-cp312-cp312-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 4.0 MB
  • Tags: CPython 3.12, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.22 {"installer":{"name":"uv","version":"0.9.22","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.9.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b18c09878e427f32e2242078fe78c8d686e6701fbed96a74a31e91931526241b
MD5 e751149e96fe820529ef118c5c05e038
BLAKE2b-256 b51995d906e1953d0899774ba5dd4ec3c263fe573bfd01814e6afe8cd904c440

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.9.0-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.22 {"installer":{"name":"uv","version":"0.9.22","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.9.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 2cb6c2a9211fb4e8e56ee2ef1530e87224c98aa176d17304204fd1e7748656f9
MD5 09a2b62e7681acea2c670bdc6dcd7321
BLAKE2b-256 14798790857faa511e2441227420157b4a94fd823a367e1af66000f6c9963fca

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.9.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 4.0 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.22 {"installer":{"name":"uv","version":"0.9.22","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.9.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 0922f32d9342adcf800856b3939e39e23ff18872efde68d28bfecafb5ceb3159
MD5 b497cd53761619017771051df2dc453c
BLAKE2b-256 b5f58193108acf8fde3e08a6c067369cf464363236180897136ec94e9dc02766

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.9.0-cp311-cp311-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 4.3 MB
  • Tags: CPython 3.11, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.22 {"installer":{"name":"uv","version":"0.9.22","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.9.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 fb19023689cd1426761e26d746a3a20c2408b537848d9bc958bb4247257c070b
MD5 61cfe95f7b8f3cb84bdd965476ab133a
BLAKE2b-256 2830a62c395e1b9cb9fab4af92a6483a51780b7abac54d521e2cba7aa07b24af

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.9.0-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.9.22 {"installer":{"name":"uv","version":"0.9.22","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.9.0-cp311-cp311-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 495de3868022234507f813c848045bc2ce406562b8a89ebf9993ba49a6f344c5
MD5 597301160506ba6382d99ae8368c8cb4
BLAKE2b-256 1c9edbeebe5ccee6eb2d53c37c00e6ba4b3a9814f6d2d05cad5ee8ef454df4b8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.9.0-cp311-cp311-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 4.0 MB
  • Tags: CPython 3.11, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.22 {"installer":{"name":"uv","version":"0.9.22","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.9.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 c54a620d670bd41dddf862f9fd04c8e9ad8633b94b4b65a2afc289361aeea3da
MD5 6e2b721ec07f54f35d66e23104b0360c
BLAKE2b-256 006c6f4ebbd29586fbd4fe8c8599ebb2c012eac0d973c03ccdb1ba4e199e8d11

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.9.0-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.9.22 {"installer":{"name":"uv","version":"0.9.22","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.9.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ecf56230aaa52630485700ecb2f83cadbce84c3dd6595d3d25b735b5432622d9
MD5 44775fa3865c0d0a23e76cffd4cc25b7
BLAKE2b-256 6f389f31355a7fe35847f6b7c5e87d3d8045c3c0a6338e3b4ea91ccda2647341

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.9.0-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.9.22 {"installer":{"name":"uv","version":"0.9.22","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.9.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 dd696c793e3d267bf4fe96d53be3d9ca896464e3395736f85bc7083335fc4635
MD5 b0df0c05bfcdde12220b3b0a20560eec
BLAKE2b-256 bcf99c809b35e4c118e0621aac089100248b70a66b42ba099a18dcf15660f74f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.9.0-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.9.22 {"installer":{"name":"uv","version":"0.9.22","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.9.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 37d6178910dcce90a9383abac419ff17e11653de85856d98f95516a2a63612d6
MD5 2bc86ad2466455d3715e1c94da78791d
BLAKE2b-256 8b2251f9667ab45a1205c274ae1f6db99380df8241647f31016e7232431a3e83

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.9.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 3.7 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.22 {"installer":{"name":"uv","version":"0.9.22","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.9.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 32d497871c0594c5eb2388dadc2b68965e410b7afd9524889d7182fd784207a3
MD5 644580f5fcefb4b8498244e41908381f
BLAKE2b-256 9622a3f12700848fd94194843d73a0e029fe1da8d94b25d5dd78e23f8b9d1661

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.9.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.22 {"installer":{"name":"uv","version":"0.9.22","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.9.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 acda5f32e4b136d162f5c02a32457e56d49dcf5ca927b20d68e061448e2100e9
MD5 42c4c701f9439a9e21aa2b45f5024a91
BLAKE2b-256 656aa275a70c7ed9eecb352eb08d4a43d4e741eb732c702faceaa05a3fa4d146

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.9.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.22 {"installer":{"name":"uv","version":"0.9.22","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.9.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a4b79f94319fbaa20bacbdd46e0fa29cfea50ba881862b42d67cb40a191f4f93
MD5 29072f3085cf677b224c7cccbc347bac
BLAKE2b-256 0d9988d6d42d7995d9f00c5c8acdd6b034c1623e710f017846be19494d0b629d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.9.0-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 3.11, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.22 {"installer":{"name":"uv","version":"0.9.22","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.9.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7a324b595a182c8d5c50a2a01c8d25e0f4a09f1b1e4b7ae6338db642a0168f67
MD5 2cd066040783ccad0f5cfa5fb93fdda8
BLAKE2b-256 8c0ec6b0bd95f35cc871db26189082b8da1ec11ee86f9d4886732932947665d4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.9.0-cp311-cp311-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 4.0 MB
  • Tags: CPython 3.11, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.22 {"installer":{"name":"uv","version":"0.9.22","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.9.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0da24dc491c0550b6c449ee7be5cf52d5e2af40042e631926e58a5a02bd57809
MD5 f41fd5651870cb6b3354bf4963d978d6
BLAKE2b-256 a6ecf1023a38b9d263709b8b7c4d6ee1ccc482dd601ae2f27cfcc6ac61429632

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