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

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

pyreqwest-0.12.3-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.3-cp314-cp314-musllinux_1_1_armv7l.whl (3.6 MB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.14manylinux: glibc 2.28+ ppc64le

pyreqwest-0.12.3-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.3-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.3-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.3-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.3-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.3-cp314-cp314-macosx_11_0_arm64.whl (3.7 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

pyreqwest-0.12.3-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.3-cp313-cp313-musllinux_1_1_armv7l.whl (3.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ppc64le

pyreqwest-0.12.3-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.3-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.3-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.3-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.3-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.3-cp313-cp313-macosx_11_0_arm64.whl (3.7 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

pyreqwest-0.12.3-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.3-cp312-cp312-musllinux_1_1_armv7l.whl (3.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.28+ ppc64le

pyreqwest-0.12.3-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.3-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.3-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.3-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.3-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.3-cp312-cp312-macosx_11_0_arm64.whl (3.7 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.28+ ppc64le

pyreqwest-0.12.3-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.3-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.3-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.3-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.3-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.3-cp311-cp311-macosx_11_0_arm64.whl (3.7 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

File metadata

  • Download URL: pyreqwest-0.12.3.tar.gz
  • Upload date:
  • Size: 4.6 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"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.3.tar.gz
Algorithm Hash digest
SHA256 c756fc4897d0367dd594dd24b884d935e43959171c44241a33e26ff8e98aaef2
MD5 34922f496dd7b1f2de1cb619e39ad7a1
BLAKE2b-256 713a86445f2ca0f21c5978edeca0d4d7044ca9d43c4714088b52883015162865

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.3-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.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"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.3-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 4db15992b4c33e926be9c3757bd75a5185afae87fb01a0e9c21ed0a034df62f8
MD5 055926be9aa81e0eabfd881f578043b7
BLAKE2b-256 90e3c6e15a4d371f0b8da09e799103f43b0ec512845208a1753c1a44c1fdbeb0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.3-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.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"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.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 add698cccf5c6d7f0a6492a20715e0a891e6834a4dc4ba827ff6b06ae05abf38
MD5 0f50319501b415cc9ab713da03c75efe
BLAKE2b-256 e85d66eb0236e90a3feb1dd9446d05c77756936ed303a0d572f8980bd0a6a8c5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.3-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.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"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.3-cp314-cp314-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 8c6183fdcf62738e295f6e7a009258d2636232c92e66579e522c2968d2625b85
MD5 6ca63dd71cd49a3edabdd4a5b6b43413
BLAKE2b-256 50b51a616004176ee686d0806ae2f97a7cf0228b254e59290e544cc1b03ad85f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.3-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.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"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.3-cp314-cp314-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 d7c72b0f8e5a3ef392fa9999620749cb6713578338437f39a27d66c0e1e68dab
MD5 76a57bc31decaa879bc2ff4ee20c7543
BLAKE2b-256 4a959e6e33972c664e653d63412cbe37eaffc114a48d59186e9cf9c583f801ae

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.3-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.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"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.3-cp314-cp314-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 c5e14a18c621eaf2526033f0a13cafbe1c4d2309b5754a7b47a9231f32f42a69
MD5 03ca7d865e4356dcfbbe3caace5a6f55
BLAKE2b-256 597e14fccc9087f75d0676a32016762b5e2fc94878b7320c5588345c0b365f7c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.3-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.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"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.3-cp314-cp314-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 107eba0a2a005afddd10a9542b8eb4b82f917b7894ba3611d8c8002d1d3a4b9f
MD5 b81ee5bd55ffba50b1649c9f6b23810d
BLAKE2b-256 08666e4dfe91059d419ee2627c30d1977cf6f1bbf22c63657edf603d98cc35ae

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.3-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.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"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.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f20bdabe5fed71cf3927afa482c53827869fd92fb0bc5bf58649f1fcd689d372
MD5 f81402955fb067d552e7a548d3d9eea6
BLAKE2b-256 3cad24ae45391115f4109f51cbfabf6a4e2b6cbc258ab674aee37ad89c482bcd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.3-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.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"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.3-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a859013b0d3a28d47103fded49eb352e441a88807a8dd692c01a0704f2992fc9
MD5 3db4143b356da1452955afd7483ef32e
BLAKE2b-256 2f60764ef9b0922134827e02e19acedb887eb04d11cc08ff78d49a544b240bfa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.3-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.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"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.3-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 215a038941010bdf6cee7bff1c4d7e9bc29d85c0817115ba5314e22a5e562417
MD5 a59acfb379513cc699f6784ad6d3e944
BLAKE2b-256 bc1d72d1435f5a95c557a629d82fe4c28ff4560ff83394f128ba7f4cb54c55a4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.3-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.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"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.3-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1789f5c5ad0d3aeaa4421f5a600292fcd16f2120ffba0fc63bac87d9f8fd0027
MD5 35ca165fc5bd4562850174398638995f
BLAKE2b-256 349b2b008f29cf8b5779dfadc68b018b749da8f85d25310038c6e7299d6963bc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.3-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.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"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.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1809b0525225a531630603631b56a0ccf3cc35215bfffcbd3008a9ba3b25e62e
MD5 c942a07bdb12128ec8706956b7a6bc52
BLAKE2b-256 abd22ac4fda87ac49f46b14a245c3316bee5333b9d564b8264c304d96e6d6b24

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.3-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.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"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.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ddb419656c0ba1183c4a72dd389b487fd442c275c2935c2cee90dccb06c5da03
MD5 63428e57edb10346bad450485f103b2e
BLAKE2b-256 ad88251e4dfacb68786c81eac812c746b002ebf3d3666e1ac5059b83def6459c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.3-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.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"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.3-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 586ae10ddfc5f79dddc514f9be04cd599890ec8ea5d5443f33fc052ab5bcfc8c
MD5 3042749355e31e18e4117cac412995d7
BLAKE2b-256 917326fc5984a0942ca44eb07321a0abba6720a786ff22b95750f15a99e1d882

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.3-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.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"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.3-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 043f9c1eac0c81c524a0d14174e38dbb78beb56e458bace857de3f4487ddc6c9
MD5 2898db76ae4359f6b614f6f950166a13
BLAKE2b-256 189d22c08ecca60661855d0b3ca454c8dab2f632884bca7d887dc13c6f2cf756

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.3-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.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"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.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 71e21047c2f9da21f179332f957a216bd8411491a8cfbcdde5973bf0bac2aa39
MD5 383be9b922b29a24033a87095fe73ae0
BLAKE2b-256 a2f9def871e7e4ff3c303d1feeec44027995af5e104c1c9c32e6ffaab3fc746b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.3-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.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"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.3-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 74c8c72c852d4d26f62b265b90df853abd4eb2e4da8922f44c7496f09c58c2a4
MD5 66faed55bb347d10e9a69ebaac09a854
BLAKE2b-256 99478879c3f07964576bcd70a016e3f0b24989dffa0a4f4b467607ab7b825187

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.3-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.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"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.3-cp313-cp313-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 aa4fa9faf4fca8b6e11a962f65118997d718c0071934bd29610d56d330167858
MD5 6bd7acc4a30b291c03a1f9ce81781202
BLAKE2b-256 87379a2b578762967fa91139f477acc87ae1c2f61a44744b6fd66bc793662d08

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.3-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.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"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.3-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 416b849bffd3d555eb2477f27165452b93d555ed012558a91088d56d3334d5eb
MD5 01cc6076c4ff4defc2d69814b727a08f
BLAKE2b-256 74282ca4a17f9a5dd321c480c154f56dadcaf68518397d289ef48686d7e5005e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.3-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.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"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.3-cp313-cp313-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 c9719b0cf0590fe61d6b6da50cbe0255ac43b888cc76626e9c6490100ce4be24
MD5 bfd77a0b016df1fa3a2f56882aaa1897
BLAKE2b-256 15ad1d87ba82e9d3cde89dffc673191c68d8ddfa1273968cf8db13afac9685bd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.3-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.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"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.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 25cc0dbe1eeaa78ce586ebb89fc072f23734d3133474f310055cea17daac2f3f
MD5 c64f0901af2ea0eb1e1313b045499e7b
BLAKE2b-256 ba70236a19eae29673397af7faa2975ee5b979da739d7ada5fc474a0db48f45d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.3-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.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"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.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 842523bf8c67b34789f54c3f07ce4b3ede56ced92fdf9c02ba89b78f32e58ed3
MD5 3b101c9bb46926c82cdef875772415f5
BLAKE2b-256 ff81fdbec25d8c3c7893f85f0896aaa9488dcf2358d6d1343b9ed19cbb12052c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.3-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.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"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.3-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d22da15cb02308d6df116a879ec797374c072ead2153ee964dbb6ac220fbff5d
MD5 dd5d60f3707ba2666c7673f8528eab88
BLAKE2b-256 149a4ec6076c413e463e3e5ba6430fc7c0895c26c6664236cbd22e7c94c51f9e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.3-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.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"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.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b25f8249d7f2dd8e375a28c02bd09373a3a913fa42056d77510bfd77351eabdd
MD5 0cf1a866b6e6e409841bc71a2b11d8b7
BLAKE2b-256 ea9d9b2564a2d9942d1ef116b92aaa3c7662108623326a524077490615232e73

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.3-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.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"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.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 17571fd2920cb77d17761444041a586f847f28f7784cb5b5d5bbab33959c2e76
MD5 a18456a4695a45311abb25af00d2acfb
BLAKE2b-256 89ab4960a9dde399326cd246c72a4b3bc48d705b630ecbae0baf5130597a8612

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.3-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.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"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.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 015eafa20623c2f4d48722f052d97abd662aaadce6e3437f47f6bb3c1e722198
MD5 0dc172f1ffbc0b0db272afe043a90b50
BLAKE2b-256 2e2833d9f42b74c1ed6ede7e46a5aa8a56013b3778742e4f6876517b1780aab4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.3-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.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"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.3-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7b478794db25d953f448a6695ba776ed981cd9e904fd030fb5bde3120b2c449c
MD5 b4e67813ce8a9bb382b988c5ebe03ccb
BLAKE2b-256 556f271aba88394ebfe062db51b269395f239ce6c8d16b20128db3d4fac58cc2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.3-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.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"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.3-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 c67c8165147f32903af38c2e56ecb20ef49d16296b0bd10858ba6f27613ad466
MD5 d93348bda8109969f10d75d62bcdd45f
BLAKE2b-256 8a38d4f049a13980fd3fa440bb3b4a1b95cc0038ad9de190f7e3f0ca2724924c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.3-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.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"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.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7c3684fa7ae87da7090391775a7a1d97e3ac5c831328ff25c26576b280186508
MD5 ced7210bda4738bfc63b33f5323ad881
BLAKE2b-256 01c6a8f22fdd0ba6016046f460ba2bd23a41935a4f9d2b71ee968eb51f26f44c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.3-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.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"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.3-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 98d4558854c49437f61a78348665e93ef21011b76eb1588ae614ab25b1df259b
MD5 54e6f8dbe7f69f1a4f25e2cff90437b6
BLAKE2b-256 f41b66239ee2a8737be73cd6133d939d840d5bb7db647020e0277abef59aea3a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.3-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.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"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.3-cp312-cp312-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 ab1f75122be728b4572707898b17e68b31d37e53d4333db7d77e07248f06035e
MD5 dffd58adee0815b383b93120a286daff
BLAKE2b-256 c2f35111d641e4dbdfbec25d41ec14fc962215abb9148d532737550a0207ddcc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.3-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.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"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.3-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 ec64189dd57072ce55dc7ad1a0dcac84d34400e63a14b574d984eda0e51a180d
MD5 d66392a0a7fdc92cd2951a81ad7d887f
BLAKE2b-256 bb6b89827659d822a072a8e55a24830368f3c0b8932386b6345d3fe9ee1c0cbc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.3-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.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"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.3-cp312-cp312-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 fb9611107f239ad40ae50bcf6e9d25dadc3e65f68b64c7e9c1cd2b1c9cbf3734
MD5 b4f8add29e632cc5dba6c966e55aa6e8
BLAKE2b-256 2685c31fb690603603352bf4219b6e29745243c890ddaff2e884ddec921e37b2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.3-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.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"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.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 31b1bf02a9260de637ef6b43fbd0ec5c85f0b10c34793cfb92cef31ba3dd3f89
MD5 b4a49151e2ba254066a650681eda0957
BLAKE2b-256 74236aee4c59466836103674134832a32bd45efcd5764054a134bf4a5dd0ec20

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.3-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.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"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.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c45714c7c535312559763060064fd8bb02961a10f5597e0950a60002905d70ab
MD5 506eb79f078ca1fcb2953624e33ee768
BLAKE2b-256 1c645275e500699ff895c4badc187ce3996c417fa9d60caf3184c3bd2e050725

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.3-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.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"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.3-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3d1a7f70b3d4a8b7a846ad4cd123f631a7433e68e364ba9516648c0236370fdc
MD5 77e2915895f4d9f905e908d9ed665a22
BLAKE2b-256 3088526800d65dad5bf5be588d1b2f671deefdeb6853bc23712b9163610daf66

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.3-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.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"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.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 650d6be34e367c58f64aa46fca083262443b5a219a0fdcfcaa71fcecc4f23d1f
MD5 9e28527ca1ba9acce111c0f8ee01efe3
BLAKE2b-256 51454fb0b294ccfadfc091fac5d47c556215555fc5ec1ebb4f19b9f5eb9122c3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.3-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.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"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.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b93713e1d0df67878f8125eab77727570d9870f0923bc9478087da524430c9a5
MD5 a1ce518c6a61d1d9f613597b274d6d28
BLAKE2b-256 83fb6562d7f1d1aea3f1398d767d498685c1db6ee812c132910dc04139a1e067

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.3-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.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"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.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 167970ff32797a6d7638506c911e983a515ea835b29c1ef61f09020950a68738
MD5 f4ed8d479d5ec6e57dabffcefd0b8b90
BLAKE2b-256 2490790e5b76400baa9fd14779700ee4099093b638d9f5c4d6c0ab09e8c38fae

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.3-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.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"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.3-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3c77fcd5385a97bfe19867543763a96e4d0bc571adc27d4040c22f9f5bb2cce3
MD5 2ce5efbd469f03c7ae8e497756cd1347
BLAKE2b-256 eb279373d0c2c1bb5fae3c7470a90cbf9f93b5eb5ccb75c39cf9af5ff1369991

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.3-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.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"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.3-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 eaf1f9266e86356471fefd1e55a4d34692f7ab8b9cbddb8c08f9b7729a1fe1da
MD5 9661539fadccea1726943e929ba05aa2
BLAKE2b-256 7fdf6cadda012e7a8b1168060faa138b83a8a8b952c27f6ab326780af4581efa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.3-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.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"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.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 acba739c89eebe316bdecf47c1b400b6aec1037f31c0cbd56352b2676feef883
MD5 fec79f3c65340bdeeca778d8b0005a72
BLAKE2b-256 0635c182e347c87bcccda2aa07ec0408ad56d4ef4f41e7bc82a17cbe97411221

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.3-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.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"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.3-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b96adfd37b1e184422217e33725ca9472850b9826cfca76675b2695b8974d5d4
MD5 7dd6bfc0cfa3679362b388bf8e4e3b99
BLAKE2b-256 06fc2da04d16b598c82af971ffa61669bfc3da444f0a20071f8c9462eef78bc2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.3-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.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"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.3-cp311-cp311-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 002e5540deb0106872a07b14faa8428dbd226edb319320cefcaceb9d65e1da85
MD5 ada90136fb863ae56a6d1b556ef2f3a2
BLAKE2b-256 357063a9340fc5c1ea24c6b3d4555ed3cc19ca261e83be30392b7d578f433bda

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.3-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.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"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.3-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 d49b06a34a5b8f41ee4624ad3758f40ddf6eb697f9b97514a77a5f1814293fb4
MD5 1a8b933bd6d16b75328639678b843e55
BLAKE2b-256 37f929de6fd871c93c4e43749b5587d7d5f10ab78fc1f45a324678e599fcb364

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.3-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.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"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.3-cp311-cp311-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 7762a4db473a806768df8034251f026a365a40f5cc15916a44180764c44cc293
MD5 c25217775244f9d11bb2481cce29a028
BLAKE2b-256 898180250089a01a9b8f95cd8e26fb3812456a1de34ecc218bb793228e9918ac

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.3-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.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"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.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2c40fa9f8ab74333436652d4aa9fa9e58672f6eca191301479cefad919b80952
MD5 397615cfa9762f43b7629fe8e44a908a
BLAKE2b-256 ab622beea572f51450ca2eb0d61f6fbc2d69149aacbb3f8b8513ef3ec61a9fb7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.3-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.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"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.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a6270460793ff82673ee760588fa1e52d781cca570d14cb79c59d1f8d61d1bdd
MD5 1b0bf06755a33cc86ffc4fdbc9b90236
BLAKE2b-256 cd4e3868daefb722851985b35abae621a1df33d46752405a2327c1abe9f4a6b9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.3-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.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"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.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 951514b11313729154f6af34ea28927ba85c82064bdf937528df5bfce12c01fa
MD5 b34b8692cdc7c3c3e275891e5c1e0889
BLAKE2b-256 85f390b1276faf332a09fb8cf1426f912d5f766ed88ce2291ac69d2124884212

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.3-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.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"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.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a9490ab4874e3e72a957d74d09db9d2226590846fe6f6648080a8202ec7ffd74
MD5 d39d67c8fde88d0e0337dd3efb2875ee
BLAKE2b-256 db83bef3253ed0a9535f35a028d59c44985cab5d9d0a59c3b5a54990b11e21a7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.3-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.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"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.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 27c44f2a8d7822913ac6cec4a3705d0acad3be4766f3b7d80ba55f689561fa84
MD5 0f56b23039f220cb8b4ca2bdd26d582a
BLAKE2b-256 454a67c33d380f231b6918c3fb6fa55c70609106ed613f6b4a84540778262556

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.3-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.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"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.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aeecccc7fc07c8ed40149847dc6ddb19771480705e5c21224faf4843a1c4f3ed
MD5 644c27ea77d5c17f0b6ce43439307dfe
BLAKE2b-256 50e738548f93377708ee9b81d85bd48394a395fc93ba7c0f42820a8784deb8f2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.3-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.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"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.3-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 559780c1d91dcf3c8f6a9ad01311e47fce9082e703f0d4ecf74d6c1fc3a8f3f1
MD5 10b870f40d988da0514f28454327f5d7
BLAKE2b-256 78bd1def29ba15a5b65e434e1acf9877c635439325879c997fb09f2ad4991ebd

See more details on using hashes here.

Release history Release notifications | RSS feed

0.12.4

53 files

This release

0.12.3 This release

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