Skip to main content

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

Uploaded CPython 3.14Windows ARM64

pyreqwest-0.12.4-cp314-cp314-win_amd64.whl (3.8 MB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14musllinux: musl 1.1+ x86-64

pyreqwest-0.12.4-cp314-cp314-musllinux_1_1_armv7l.whl (3.6 MB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.1+ ARM64

pyreqwest-0.12.4-cp314-cp314-manylinux_2_28_ppc64le.whl (4.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ppc64le

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

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

pyreqwest-0.12.4-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

pyreqwest-0.12.4-cp314-cp314-macosx_11_0_arm64.whl (3.7 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13Windows ARM64

pyreqwest-0.12.4-cp313-cp313-win_amd64.whl (3.8 MB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.1+ x86-64

pyreqwest-0.12.4-cp313-cp313-musllinux_1_1_armv7l.whl (3.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

pyreqwest-0.12.4-cp313-cp313-manylinux_2_28_ppc64le.whl (4.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ppc64le

pyreqwest-0.12.4-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.12.4-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

pyreqwest-0.12.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

pyreqwest-0.12.4-cp313-cp313-macosx_11_0_arm64.whl (3.7 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows ARM64

pyreqwest-0.12.4-cp312-cp312-win_amd64.whl (3.8 MB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

pyreqwest-0.12.4-cp312-cp312-musllinux_1_1_armv7l.whl (3.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

pyreqwest-0.12.4-cp312-cp312-manylinux_2_28_ppc64le.whl (3.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ppc64le

pyreqwest-0.12.4-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.12.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

pyreqwest-0.12.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

pyreqwest-0.12.4-cp312-cp312-macosx_11_0_arm64.whl (3.7 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

pyreqwest-0.12.4-cp311-cp311-manylinux_2_28_ppc64le.whl (4.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ppc64le

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

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

pyreqwest-0.12.4-cp311-cp311-macosx_11_0_arm64.whl (3.7 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pyreqwest-0.12.4-cp311-cp311-macosx_10_12_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: pyreqwest-0.12.4.tar.gz
  • Upload date:
  • Size: 4.6 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","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.12.4.tar.gz
Algorithm Hash digest
SHA256 302d4f8ff0790069544f3f8b150c1424568af5d2e4be6580a9d1f767b4ebde07
MD5 39df653dab4b1af8903a8037df58167a
BLAKE2b-256 db122f32c605dcdc6bca0d01fb12205aaef1b19c29e8f8333fdfdf7ee2f7123c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.4-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","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.12.4-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 f3dd501ceb5e250b7aef8f23ea22c1114449d69556897d0519f58166b6da69bd
MD5 581386bfecdb6f5d9f93ad098b376718
BLAKE2b-256 ff9ee43d731203789d26f1607e29f1a139587c3fdadbfa8a19a369c2798dc61b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.4-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","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.12.4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 e8b4935ac63cdc1429cfb8d75a22dafbd2a2bb7510d8c42626359ea407163f1f
MD5 ccb25d1ac28c104b97a546f83ee4467f
BLAKE2b-256 59959c1e3718e8def0fb9356458cc89649a288ae8e71aa34adb667ac99a14219

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.4-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.12.3 {"installer":{"name":"uv","version":"0.12.3","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.12.4-cp314-cp314-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2d319ba7ba0582bbada6dff8811bbc17f59d4e0559a891a63ec3984c4ecf05f4
MD5 deee24701d7cdaabd9e0a9976877d338
BLAKE2b-256 9fa6f9d7eef5dad4d49b74eac972d4e6415757cfef33098c2c9d37c1a31df4c9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.4-cp314-cp314-musllinux_1_1_armv7l.whl
  • Upload date:
  • Size: 3.6 MB
  • Tags: CPython 3.14, musllinux: musl 1.1+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","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.12.4-cp314-cp314-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 0e4db16205d86384c0705fa735373f2e126c0eece89bb00ddfd1f5ef78e6658d
MD5 2498d05275e3148376400104444a4586
BLAKE2b-256 8b0db201d578c114a9c316200684e417149583d0da7f8826f0e512f4daaadcde

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.4-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.12.3 {"installer":{"name":"uv","version":"0.12.3","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.12.4-cp314-cp314-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 557ac493c306c03a7bbddcdea92a41f81de0cd23b015d90fdf37704056134765
MD5 db2b4984db882c0dbf4086f3228cb6b3
BLAKE2b-256 b3f26012159d5c1a46a278e936d5162e66760f9993583425f0dc39043aed4028

See more details on using hashes here.

File details

Details for the file pyreqwest-0.12.4-cp314-cp314-manylinux_2_28_ppc64le.whl.

File metadata

  • Download URL: pyreqwest-0.12.4-cp314-cp314-manylinux_2_28_ppc64le.whl
  • Upload date:
  • Size: 4.0 MB
  • Tags: CPython 3.14, manylinux: glibc 2.28+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","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.12.4-cp314-cp314-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 9ed6e314883ed9a15c7e9b8a46630185c7047cd0b6a90d83fb38464f185c0d81
MD5 46a64225ffc5a585594dc933116deba2
BLAKE2b-256 aa985abb48c23e3690e328bb11c7540695d0f1246868bc05347923c1b139bdbe

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.4-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.12.3 {"installer":{"name":"uv","version":"0.12.3","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.12.4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 32d79ad11366bb7ba1440d8d12740363284b3b14ab02ab0c408295e81d85fa94
MD5 64ad21864430f2dab9c2880881f37c99
BLAKE2b-256 fdd83a27d15f5155b4a533ea2c68e1da4d726268ff29cb4bc7017d83817b2103

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.4-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.12.3 {"installer":{"name":"uv","version":"0.12.3","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.12.4-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a8c2354d5a32a688eee086c951cfc418575ddc189b6f6a56eccf9d105c11d3fa
MD5 18e280a79b562f93fab4ea59b11a5483
BLAKE2b-256 bcab68e3532ec42b4556fbf86ca8ed7c21d9ec45e6b3a8eaec67f2718dcf41b8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.4-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.12.3 {"installer":{"name":"uv","version":"0.12.3","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.12.4-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d86e9fc5c59d8173504d393e514bed4d6053572464798bbe71b8c55aa35accf4
MD5 cd5e7342fc0c0e0f55f5a64a3b890a90
BLAKE2b-256 72323f53e6ad897619871c7fe031e757f46fb318468d8ab9f9fb83d7b52f7011

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.4-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","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.12.4-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7fe1323fd7c03ff460bb45b14c8c2e8bae279655ed26b2133f42bca18b5971fd
MD5 0ddcb6c6dc928925b49aff341d249ec7
BLAKE2b-256 1cd455328f646b33a56df7445c2ec648fb8a30aedd1ebe96e0ce3455cea183bd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.4-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.12.3 {"installer":{"name":"uv","version":"0.12.3","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.12.4-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 640c6b7c951e64ed458d3de7b64baff23d17f2f9dce1d6864e6fa9f3722a7e93
MD5 e85057d317ad60e741472a3188c88a8c
BLAKE2b-256 55fc807863943984fcadae3e594851942b246f89d9c01c25d12d7b9e26372713

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.4-cp314-cp314-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 3.7 MB
  • Tags: CPython 3.14, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","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.12.4-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 afd53b0e1e4fdb5160e8519c848409f483132c6e639664242c60bf091861e821
MD5 aa94197dd9dc429ee469cb5738e6da68
BLAKE2b-256 9b51333c49203767b681a7d551c4bdea7ae37c2b8ff7211de472f4c3a21bc37a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.4-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.12.3 {"installer":{"name":"uv","version":"0.12.3","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.12.4-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b277a7bb9387e2d3a0d18620d5f7dd4d75cad70217aff7077eb819a5a453d94c
MD5 2e8ea6b88f848afc16c05774f85a8132
BLAKE2b-256 3e2e66bbd06edbb92ca0d4f35b25b47d6aa05a1b439077ba1cb329da7a0f0eec

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.4-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.12.3 {"installer":{"name":"uv","version":"0.12.3","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.12.4-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 f3403b1eb61d4613df9acd257522bb1da280fc10b46d562854b1f32ea4ef2c62
MD5 27b0f43d13b12d231c12d6e2991e13a6
BLAKE2b-256 4e988244d98d4c279c65de0ec66f02a24f68869057bce342e460743294940529

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.4-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","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.12.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 bd7162787c3d9f52744f239871c55c25ff3e8a188e20a4f126ae8db1a004715e
MD5 9c6e996bc0619ce7a89abe7a2d9ee4ed
BLAKE2b-256 4d75db39114dea06b4767f2e8120af158497e245d56fee5d3d096969d5f49583

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.4-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.12.3 {"installer":{"name":"uv","version":"0.12.3","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.12.4-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e457fba4be682445fc9b6e1e4bf23d4c9ceb06504db537c44044f3390ecaf905
MD5 c15006b3b4d9f54389c97d661e0bb165
BLAKE2b-256 b58f33e92466513daea9314b29d8a88c1d35548a42e6fa0e9366f044c765dfd8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.4-cp313-cp313-musllinux_1_1_armv7l.whl
  • Upload date:
  • Size: 3.6 MB
  • Tags: CPython 3.13, musllinux: musl 1.1+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","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.12.4-cp313-cp313-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 824620cb5a8bb09f9eaaa3a03350aecab828402509a61f213c38eeab7e91acf2
MD5 7327487a4800a04f8dedfeb25f89503c
BLAKE2b-256 bfbc12653cc0bc5077f5cf6010c2def48651915c2e12b27f7e30212cd7ff7a00

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.4-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.12.3 {"installer":{"name":"uv","version":"0.12.3","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.12.4-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 48ccc6e6bd938b5b01732db75f7b3698f4ac6d93053413843c1c743314df9d05
MD5 6593748fc35fa93f530546bc4c9c32fc
BLAKE2b-256 7329b76d5491e50071e4d4edf13cb2ba7a24ab8a7fb1a926a3ca9225284df778

See more details on using hashes here.

File details

Details for the file pyreqwest-0.12.4-cp313-cp313-manylinux_2_28_ppc64le.whl.

File metadata

  • Download URL: pyreqwest-0.12.4-cp313-cp313-manylinux_2_28_ppc64le.whl
  • Upload date:
  • Size: 4.0 MB
  • Tags: CPython 3.13, manylinux: glibc 2.28+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","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.12.4-cp313-cp313-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 2f7d6eddea3f881c1627b699cf0c3aa2c5f362a884c14799775858f53fabf650
MD5 230a2d1f55dca783d4cc98c0fc1e5a44
BLAKE2b-256 709215bf992884a2aa04e62510e8fc990ddc8e0ea803ca7d53d1755d2a9c995b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.4-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.12.3 {"installer":{"name":"uv","version":"0.12.3","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.12.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2582de8c176d3814d96e2af33b9eb34ddc0b78d3652eab4ec28f1df1c9ccfe21
MD5 9185e1685bb6e295e0a13354678c4aad
BLAKE2b-256 bf64757226425d35280466c48b548f2e41b5ea555c37d1dd48bdec8063dd78f4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.4-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.12.3 {"installer":{"name":"uv","version":"0.12.3","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.12.4-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3ff5c5e70e32742ed2e6473580b901deb49d62634e7ca2fa373d47b779270657
MD5 32748956e19e86a84b30b468c4b0be66
BLAKE2b-256 0d797448b4c130b89331b7a2cc1522bfd282dc19048e03e68db7f2137022a01d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.4-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.12.3 {"installer":{"name":"uv","version":"0.12.3","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.12.4-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 311089d6eca54ef45061e6b1e4309262db2dab86707c2e1f1997f9bbbdfe2930
MD5 27957ed97add5f5c9f959af704804d69
BLAKE2b-256 c58da349ca7215498c269905d4cc588ad57998af4dcfe43dd90b4cc728e3cae0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","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.12.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 36a80307aa3c1fa23dd30cdcdd8c19df4c72e497b63ed78b706d692981dc4abf
MD5 d5b9800d8a3ac21af78b6034c81b5cc9
BLAKE2b-256 70e99f9ef2fd41a5dcca69d96f826cfb1c5c8f53afe9f98b8c2312d2deed518d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.4-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.12.3 {"installer":{"name":"uv","version":"0.12.3","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.12.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 65f224d915dc0cddc720ad2a97b3b753daa8e772074abef2b300dd6f864fe122
MD5 22a5d1825b91ceb0d6196c58f820fb9c
BLAKE2b-256 213492fec0eb1f60d01b1d9dc5b910c21446faecdb52e4864d4df0a923713f7a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.4-cp313-cp313-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 3.7 MB
  • Tags: CPython 3.13, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","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.12.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bcb17fdf6068e48dec0f13aa0899793d510720699a5881ca868d37c8a13f1d5b
MD5 a998a84a707ce9fb0d9c9416542ec11e
BLAKE2b-256 d94b1aaae81ceca5f7375cd2dc13c3cb5c812f013a7fd6e16fba23c6ebd1c67b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.4-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.12.3 {"installer":{"name":"uv","version":"0.12.3","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.12.4-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 565a220fff3de0889ee5b4a6534dd5e96f875ec7212865238c20c2e6ea6e7764
MD5 4c3d1cdb9e7be5159188b3be819b47a5
BLAKE2b-256 a2dcdaf53afbb85834e760d851aabe790d8fc4c0947a6bdec9abbb5bfd07685b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.4-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.12.3 {"installer":{"name":"uv","version":"0.12.3","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.12.4-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 d2e233d7386b6eb445ca92947c7d9b9b53e648e97979f81c5f90cfa7ad5e1b26
MD5 c10e0e57dd19bfa6d14d1b4f4bf03f20
BLAKE2b-256 74d8c35ca1feeeb9d3016723166e724857bb8be9344a78d592d58131f74d475c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.4-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","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.12.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 51de741a1192a93c5681548da5aa63211fa06ecc81b8b1245e982c886f50dd55
MD5 36bd9c3b56cf97180d8377a843871da1
BLAKE2b-256 e481c73b84ceda34a02647086aa1215e8a97c9432e33e9c7c252e55f054a23b0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.4-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.12.3 {"installer":{"name":"uv","version":"0.12.3","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.12.4-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 53d52a3a642b89b6cc194f268281238ebf86768a42a8265a6dd7f5417ecbfce3
MD5 aed557c55464d31bf5aea25cfa4c3d1f
BLAKE2b-256 fdf58d0dfac8dd01a0a89cb4b41f122c1b9800b0789fd1d82de2298688df072e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.4-cp312-cp312-musllinux_1_1_armv7l.whl
  • Upload date:
  • Size: 3.6 MB
  • Tags: CPython 3.12, musllinux: musl 1.1+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","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.12.4-cp312-cp312-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 bbcc8a2337ec874a94d9624135c128121c819dca99b1c7c91939b809b2aa0c1d
MD5 d63a51d4c4a8b1dca6e47d1096f47dc5
BLAKE2b-256 dd7279441e684299e0118ac4c7339c2f38afad462f592727b02b2d611aaa4cb9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.4-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.12.3 {"installer":{"name":"uv","version":"0.12.3","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.12.4-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 72dc5e6a053605aa57e9493554a7ee2a8bf91e3622f8d4ea5089b14e954f555c
MD5 1dc45d8340c9f5669a02531eeb5ff358
BLAKE2b-256 d77eb208d343736bc6d0f8aa7ec2d96b6a90cb3bff8379dd23a6501a90f142cb

See more details on using hashes here.

File details

Details for the file pyreqwest-0.12.4-cp312-cp312-manylinux_2_28_ppc64le.whl.

File metadata

  • Download URL: pyreqwest-0.12.4-cp312-cp312-manylinux_2_28_ppc64le.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.12, manylinux: glibc 2.28+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","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.12.4-cp312-cp312-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 e388a1b163f3dfa0c446aecdaa4e8f24776275dd081dd45dadb7b18c1a032b43
MD5 bb487197fa84c464245ad597c8db349f
BLAKE2b-256 86e65084ecc775e891507cb37829fc3fd91c617b2de97c61759bd658e0fee407

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.4-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.12.3 {"installer":{"name":"uv","version":"0.12.3","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.12.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 db06b5d7c87338202dde72e10946a388b00d34130fdf8bfccaf3f27fad992d3e
MD5 fdc8050c9bc33986dd73391a733450bd
BLAKE2b-256 3775dc69a22537ea13c1aa932a1093c2e53aec0b47cab3ef071c37ea0f39813d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.4-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.12.3 {"installer":{"name":"uv","version":"0.12.3","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.12.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1df8664d5af74b1bad7f229b2affba0fb2ef9ba5c8d17317f8e01c32203843ff
MD5 4bc73305d2f18b0bfe330a9e2250a94e
BLAKE2b-256 a2c1f4a552993792c3bb166a09cfc63a1c876cb3a7824e75a6847b8bcaaa5753

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.4-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.12.3 {"installer":{"name":"uv","version":"0.12.3","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.12.4-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 db6f64c169b16f0650b65fabd47881141aecd41c6761cae9aed1048b85d8c76b
MD5 c960b3b7ee6fe295dd244d2477798935
BLAKE2b-256 5885d5b2517a125386f131f356ca561e21336b9e53b75058a7863daf1099d81a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","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.12.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0e67821ca348cbe9e82eec1c212290471458e9b5f251bb8f074261fa5dfb2be0
MD5 976b4085f4b4d282b7e7a65b5848d90e
BLAKE2b-256 e185e1a357862537297cbd504e54e3954e7fc442c0cfa20af3d892813a9beee5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.4-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.12.3 {"installer":{"name":"uv","version":"0.12.3","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.12.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b2ba4ede1915246ed580c617d655f10a98eebc8808b37a48c1fb2bde81304dab
MD5 39c8c7b28a23d9cc05de576d0bbdb691
BLAKE2b-256 8f4c7a886bd20f9568610b9ccdcce26a527c70a1e160e1d2211316274ebac6da

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.4-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 3.7 MB
  • Tags: CPython 3.12, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","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.12.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 39427b56a1f2d7d570c3d036417308dd78923dba2a091b3f1735aa43f9c2e9bb
MD5 f2cc0070b2ef1a3a9d7454d7d20546e7
BLAKE2b-256 7827f96ba8b8e65d84fd60ee2cf5511ae72ab31e26acb86749e67d4aadc7eb4b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.4-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.12.3 {"installer":{"name":"uv","version":"0.12.3","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.12.4-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cd60d1527bfe9ec1ac82097d5e7606c46bf511cbeb387836541c6ece00dd9603
MD5 24134435d6a819f5e048356e38f00870
BLAKE2b-256 fa7b7566a57ce2ea65ceb61c4aa867bf4d53460c9a3a0276e01bea8b58aa4e04

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.4-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.12.3 {"installer":{"name":"uv","version":"0.12.3","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.12.4-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 7fd011cf517da2ff5fc2669d2fc334f856fc14aefcd63f811b540139fa32310d
MD5 4df8f30657bd8d1df2f3184694390bac
BLAKE2b-256 d362329d85fa531891daceca323ad6c583b894fc509046401ff50268c70ce486

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.4-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.12.3 {"installer":{"name":"uv","version":"0.12.3","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.12.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c4a0fe03c5bb48fa07551668d144eaee932fc410a88e523d66543c29d11b51ad
MD5 8f1c3e675898dbc6f1cd3c720b8c677a
BLAKE2b-256 16964171ded1ae3edc7d61dcb72dba447b962ab89f6b67c9ee8a0330c9a24fdd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.4-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.12.3 {"installer":{"name":"uv","version":"0.12.3","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.12.4-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 9ded072c8f86c594e91933c255d7d9c424d3690c304c1b9ee33e900e06820d4e
MD5 fbf490fe3165af101341d83ddf447116
BLAKE2b-256 4407b5fdab53c74b1ea58638ae4b2477e474d646588aceec5a114c289e321ef7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.4-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.12.3 {"installer":{"name":"uv","version":"0.12.3","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.12.4-cp311-cp311-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 1021fff12d5448c1052d83cfa7324598fd377c095937ff0f213178e2227f0c6d
MD5 f01b5faedf7ffe59984ae60c3fbcad7a
BLAKE2b-256 5cd005d738c11e24ce72526f2d04da54a5933b2c0eaf26a840ee0cbc74c9a781

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.4-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.12.3 {"installer":{"name":"uv","version":"0.12.3","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.12.4-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 52359354025964346f9f36715acbca8538e218bae6fa170764b8b6cd9b9b7f5a
MD5 afc389d342501577d00ee6e9f7a897d4
BLAKE2b-256 0afdc25bf0cefa6d2647546785d166238b38c54016e8e6c980f0166591e32fd2

See more details on using hashes here.

File details

Details for the file pyreqwest-0.12.4-cp311-cp311-manylinux_2_28_ppc64le.whl.

File metadata

  • Download URL: pyreqwest-0.12.4-cp311-cp311-manylinux_2_28_ppc64le.whl
  • Upload date:
  • Size: 4.0 MB
  • Tags: CPython 3.11, manylinux: glibc 2.28+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","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.12.4-cp311-cp311-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 52d280c4ad18a94bcc2dfac22a58908c19867323ec54669e8efd6c9ee3a8bf2c
MD5 0aa87727fb9719317970b31f14fd05c1
BLAKE2b-256 1465bc60e53972353fa07aecc6a1a478cdbb3751c9fbc7861cf6848a0eef4f20

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.4-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.12.3 {"installer":{"name":"uv","version":"0.12.3","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.12.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 682ea3511f3d0343a7fe2245f906bcacdefa54afacae12e4bbcd75cd1ccce319
MD5 c6138bd46bb2f4d5e95cfd14ebbd8f83
BLAKE2b-256 fad1393ed775d51626f0a89b67d3d7ee11c0c3d7dd76342c3f4b115a9faf2a0e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.4-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.12.3 {"installer":{"name":"uv","version":"0.12.3","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.12.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 aafbec5d8dff2a80f31e7acba67126c37752b05f4dcb62e43b8f2f825da308e9
MD5 646004ccc17f455c212205746acae04b
BLAKE2b-256 5070b246f53262f96fe3c0b439ef61d991b58ef9857eb1bf22b0b162b3080dfd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.4-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.12.3 {"installer":{"name":"uv","version":"0.12.3","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.12.4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 00ec7d38b95c22f9f5a25a330331599168dc08fbcbc4def259708635c1dc67ac
MD5 7f8126154354b421abb451bd3e38a08d
BLAKE2b-256 a373f0e201d687431bd039041b58c16a4f858d325ef0c536e1e4c83f5c50f9e2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.4-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.12.3 {"installer":{"name":"uv","version":"0.12.3","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.12.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 20ddc90cae15ced47bfb673c600e2770d64bdc1a47a080acc3900481c24dce1e
MD5 ecff32c13bf22a6f757de3e7189f859c
BLAKE2b-256 cab84f4f2e61f9f8df02c7cf786bf70edde3d15d00b233cbe0bf96661960cd84

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.4-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.12.3 {"installer":{"name":"uv","version":"0.12.3","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.12.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 44e51281001ef2e995af4d09473f7685c4822fee00b143ffacc04c714b2b0b4d
MD5 fcb25fdae7a8e5065f226c3b74d96db6
BLAKE2b-256 20449fead1a559c2c60e667be1082d30ffa4ffd8ade0d8be18f1380528ec9b6e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.4-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 3.7 MB
  • Tags: CPython 3.11, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","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.12.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 39e8195c706dcf84b9e559ee105b7cb2ff84da375ccaf43547f24b8c8d333c0c
MD5 88dbefe5699ecf314f0ff87252c35e5c
BLAKE2b-256 28e8104a9cfc918adcae70230438ccea8757d19db065da5257ecde917c192427

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.4-cp311-cp311-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.11, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.3 {"installer":{"name":"uv","version":"0.12.3","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.12.4-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 32eaca5e35047f7bb38290bee6be53e451accbda0cf7bcd16afc84221674c2f7
MD5 5a12e151fc6f42264368487b6a8023df
BLAKE2b-256 6e4f31de380b2294459631330b5636798ecd926c0c4f2dcf0da6ef7ddfb1806a

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

0.12.4 This release

53 files

0.12.3

53 files

0.12.2

53 files

0.12.1

49 files

0.12.0

53 files

0.11.8

53 files

0.11.7

53 files

0.11.6

53 files

0.11.5

53 files

0.11.4

53 files

0.11.3

53 files

0.11.2

53 files

0.11.1

53 files

0.11.0

53 files

0.10.1

53 files

0.10.0

53 files

0.9.0

53 files

0.8.1

53 files

0.8.0

53 files

0.7.0

53 files

0.6.0

53 files

0.5.1

53 files

0.5.0

53 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page