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

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.14manylinux: glibc 2.28+ ppc64le

pyreqwest-0.12.2-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.2-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.2-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.2-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.2-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.2-cp314-cp314-macosx_11_0_arm64.whl (3.8 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ppc64le

pyreqwest-0.12.2-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.2-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.2-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.2-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.2-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.2-cp313-cp313-macosx_11_0_arm64.whl (3.8 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.28+ ppc64le

pyreqwest-0.12.2-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.2-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.2-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.2-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.2-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.2-cp312-cp312-macosx_11_0_arm64.whl (3.8 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.28+ ppc64le

pyreqwest-0.12.2-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.2-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.2-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.2-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.2-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.2-cp311-cp311-macosx_11_0_arm64.whl (3.8 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

File details

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

File metadata

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

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.2-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.11.31 {"installer":{"name":"uv","version":"0.11.31","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"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.2-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 3225be18c34240fcdeae8564520dfc67035b0b88cb5673b6021fc03d6479a3ee
MD5 9f01ef348f9da8e97f4cd0476611935b
BLAKE2b-256 cc0dbe18e8b026e91b5e61960e28bec61b075855cc2cb450736c6e6e87989d66

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.2-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.11.31 {"installer":{"name":"uv","version":"0.11.31","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"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.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 2776076c8531d992071684d2396cee039ca8154b5c4b3ba98559a1ebe3ff9cdd
MD5 7d9b87305951a54a582196790f6cadf5
BLAKE2b-256 58533ae4ebb9954e58719f1d62c0e43cdfb5e037c22efeab595ad26cdff6e8a1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.2-cp314-cp314-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 4.4 MB
  • Tags: CPython 3.14, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"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.2-cp314-cp314-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d4724824dbacb3925208ee7595207781a85b140ff80c6e69a97295a9cc8818da
MD5 89b65d33ed06e84b3b970a541c4df209
BLAKE2b-256 2ca61a4f5b3549ed55e0397cbf464dadbfa9cad66fdeb6c41f7032a311fb4025

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.2-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.11.31 {"installer":{"name":"uv","version":"0.11.31","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"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.2-cp314-cp314-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 75194baa573556fbd88b6f9ca5d9d2c90f7acb706eee804d0734fff116813cf7
MD5 e0cded7564c0e5c8f45826c3888db273
BLAKE2b-256 9f2aa17e842f8384a99eb3ca44797e5183db332c67d749582956d18581a8f6a6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.2-cp314-cp314-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 4.1 MB
  • Tags: CPython 3.14, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"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.2-cp314-cp314-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 2a284310080422fa07464ab542e7745293f930f0b32fda9e1dc4278d0784204d
MD5 134f6ca4ce2ff6e7457acd5c836b2488
BLAKE2b-256 5dbadb7ff73b356a538afc1969933c971de51723db02af404aa8caa018299c22

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.2-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.11.31 {"installer":{"name":"uv","version":"0.11.31","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"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.2-cp314-cp314-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 039c2ab87a379055a5bd01b3ba30655dce92d10715db276dd02529cd11e604ee
MD5 ced51f35fbf5bdbd222e320643ed5918
BLAKE2b-256 7f50dbfa79b5d24814eddaf95fd333a471c5c5ea7d5b10da644a40fe544f1646

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 4.1 MB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"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.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 51034d40e03cb841627c60aa2dd6b81ed6160aaf3e11f659fece789e8ad948ba
MD5 d74c8a3598bc0ed11b723d0a8a22eafb
BLAKE2b-256 b22aa33c9df76aa4e3521ee838b814bb88902ba25496620e18ea935f10c23867

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.2-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"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.2-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2a1810b020906f0170dd34997fbc0c931657e48d77f65cecdaf9fb781850ab18
MD5 d974c6638b3a9e7ed56e9b6c199dfe7c
BLAKE2b-256 57abaff33df706f5578bba377908887e4584afef10910ad08455fa2807df2d7a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.2-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"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.2-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 043a5b6bdd416a4d1b0bebad52ce7992acb6e28135731e6b45985f26819dbae8
MD5 038f57addc37f7ef968f17468d499beb
BLAKE2b-256 12734d9e261ce5e3d1a8a74bb3a14ee417bb44b179612181d4a0a585e34896a5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.2-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.11.31 {"installer":{"name":"uv","version":"0.11.31","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"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.2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 54ef669874d1a87a222ab1e2d355c11990f9ed154957f318fede28b218d91c79
MD5 d26f6a3741648d584cce6641191b6278
BLAKE2b-256 991d60496635adbebfa98f8bd8a78f547007f87660746da0c63854dc9fac90cd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"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.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5ca59e580ead334559486171c50800f3505302ed1b54e1f58814733f34dd1b92
MD5 4ed7306263db2287c9b472eb7d39326f
BLAKE2b-256 50cb7d6e9a75ce26b8f33cb3e77fbe6d7dd1139affc7bebfa1a018098596932a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.2-cp314-cp314-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 3.14, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"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.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d9ed36c29d7e0559745a9dfa4b78890862d9e0f0cadbf65f0dae308a46017c84
MD5 119c120a6e8a9d888566a307b647451e
BLAKE2b-256 0f3b0436c5a11d68d7273cd761a9b74c22503a25c0c2f0e84040c73d3d252af9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.2-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.11.31 {"installer":{"name":"uv","version":"0.11.31","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"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.2-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e640e11c64a79c6058ab3b392d693de6a6ec43ac07037248ff9985d809e658f7
MD5 5835bca829c68f1e53dceccda009b853
BLAKE2b-256 c9225ead22c3ec85c6eeceab97e4abf03446995c823bba61786b25167a09ed9f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.2-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.11.31 {"installer":{"name":"uv","version":"0.11.31","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"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.2-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 f0b8c7bd54b2bd0e2a2f631e3b6c5b149786a9e81fde2080455eb047fee71e37
MD5 37ce234d28b74af9fd1e0d2744a84e50
BLAKE2b-256 9a84fde3edf1e09d825e640eac4056bf2dba8f52bdb8cdbcef00d885d1966875

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.2-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.11.31 {"installer":{"name":"uv","version":"0.11.31","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"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.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 bc7831b52c4ee41b64719de0250e7da88fae934165a6feac69070483b9cb626b
MD5 e4eacc864e1076c55d4da09b08dde00f
BLAKE2b-256 1b2d79b0bd5c5d4c7f7841a9707ad7f8daa01c1e2ed83861492707c0ba25aae8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.2-cp313-cp313-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 4.4 MB
  • Tags: CPython 3.13, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"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.2-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 44f2284ad1514f913d230bbbb0ef23da168933cc930e2f25985254cbc268636e
MD5 7dab5d0d736d722240a242374a46d3c3
BLAKE2b-256 5bc9603d3fb64908bf32ab8faf5f0aee9eb4352afc435a8dae610c52ca3ec48f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.2-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.11.31 {"installer":{"name":"uv","version":"0.11.31","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"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.2-cp313-cp313-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 f79c34b45070706e53e776cccf440e30f388a4106c575d1476f54a285403e260
MD5 cff99852400e9e36faf0c826db17a748
BLAKE2b-256 7a8cb8afbafd8a7419e505fbf2099e9bd23501404d11513fddcc4f4cbe5772ea

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.2-cp313-cp313-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 4.1 MB
  • Tags: CPython 3.13, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"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.2-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 8ac890bb5408662b6c17ba4beb65d37e8fee029151003af5b1689dd98dc8f998
MD5 375331c427a3bb0d924c5ab582bd0daa
BLAKE2b-256 f2ff9b74fc1f617aebb2ff058f15892563d4ce38ee2c0e1eca1b95eda101325c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.2-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.11.31 {"installer":{"name":"uv","version":"0.11.31","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"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.2-cp313-cp313-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 fdfe786d298119cac0ce4cb298b0b00045e408cc8f94039c1176d545ae7ece11
MD5 fff23a8cbe5e60b4828961ea3f7fb79e
BLAKE2b-256 330269f538933d8baa40b60e9118e6140f5d4861dd41d3840f5725b04405b7b9

See more details on using hashes here.

File details

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

File metadata

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

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"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.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f2e02c75e2a09ea1ac40f51bf3e875fb92a796ac96fd29e933ad36f0bed78864
MD5 8ac0f74dcd706eb4a0a66c83bcc8668d
BLAKE2b-256 8f25ee20766695aa6c169b5999024b081b45889729f47e0df8c20d53685e3876

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"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.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 419e03a1714cb0cc40d887102199958b4ee31cc0bf160d1f83f41e73b9113ec9
MD5 41355b6d9a398356f62446d39a4e5e0d
BLAKE2b-256 2d622cac74ae1b4d7ae63d1ec2cbf56943c0dea30034b6ed8bc73f208cc7d6ab

See more details on using hashes here.

File details

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

File metadata

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

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"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.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 462de959d46e17bc7a7eccde57443cf8f6e3a183ff6a98052a436a4574c60763
MD5 3117a20b93529e93f367b222b39d9d6f
BLAKE2b-256 f973d11ec8dfac60dfff0491b6d96b7469437dde3e939bcfbee80948f38a1c86

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.2-cp313-cp313-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 3.13, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"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.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5d36d842d783042775d9b2435c477feb4bf4a07876af597c5fd610431a747fd8
MD5 1900f28657776396cca7a9442a780a30
BLAKE2b-256 59fb0cb8d7413bef4bf1a3056cf8ac5835c6dbe295f675ceba970c0a4fbbec75

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.2-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.11.31 {"installer":{"name":"uv","version":"0.11.31","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"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.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d468c1a8823eef056baeec2df0d0032d89b2344daec4a935a4c57c0bd5897a77
MD5 42ceb11f4dc56a5d68c27005959ae483
BLAKE2b-256 59e6fe35dfac5f80f90f52fa8bae9082900eceb7352d842889713f7fe3b4d917

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.2-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.11.31 {"installer":{"name":"uv","version":"0.11.31","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"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.2-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 ba0b9aced26789f06ce2679edf0fd4b088ee55d7b34959fc9cc211dc64ba1f5d
MD5 85fbd77cb89193ad5fc599a3dec64f47
BLAKE2b-256 f5f3c9a0fb1d4001fa562934de54a02aa2a6586fdc76bdc8f059ab56682f4e0b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.2-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.11.31 {"installer":{"name":"uv","version":"0.11.31","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"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.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 5ab761dd0af0148fcbf35a843899d1a0121e9e921240a1f1ce9e606386aa9a9a
MD5 37023298dba598b9c9e30447af978255
BLAKE2b-256 fbfd7f78a118711ab50941d9bc5c8054f2b565b70b08fec5a05c7ee93509bd6c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.2-cp312-cp312-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 4.4 MB
  • Tags: CPython 3.12, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"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.2-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e23b6994935768d4fa98798a940054ce9bda542f81a684f87db8c357efe9aded
MD5 1064064497e26b42fe0a4bb9be0429cc
BLAKE2b-256 5754900b5ef9e565a31e0c292aaf2e20a5c5183351106612d39f1a8e72f08bc3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.2-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.11.31 {"installer":{"name":"uv","version":"0.11.31","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"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.2-cp312-cp312-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 233a419c0483721f630dfc919c746a51ef8150456e7f04b2cacdbf0ea5540fb4
MD5 766768a7d914ccd47e91e0f7a7f23768
BLAKE2b-256 cfaa9ed84da64ed705b86ab75d731a9057c53ca30abc76578ec5c4d75eaba742

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.2-cp312-cp312-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 4.1 MB
  • Tags: CPython 3.12, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"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.2-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 8e6b701631948f9a887f99eacbeb53785f5b45d65d5fbd0db7714e58cfbda7c6
MD5 f6b4976e4f3f7e56865c9f642b372f81
BLAKE2b-256 8441149026f91d19ba003a44aaf5323e15eec7b50f4f8e6a027b21c52c7a19ed

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.2-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.11.31 {"installer":{"name":"uv","version":"0.11.31","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"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.2-cp312-cp312-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 06b5e53b20a5cbe1b927e8b8b5a5285e24119e519a83a654b6f62a26793febce
MD5 f4322a6b6391ff1aa41141f6c5f50a5d
BLAKE2b-256 969d599c8c315112dc4f73e8f598b0f7830afbe95c42977b86b8aef27ff0474b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.2-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.11.31 {"installer":{"name":"uv","version":"0.11.31","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"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.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bb482316789d194437ef9286fd25be4357a59be032dd16b382da5ef459b1ae47
MD5 9fd425212a0b7c6ee8563e1c1142e82c
BLAKE2b-256 c1098205d0c0234b7cafd84d43321bd27e922a9a0b85b71e6fad83b2108b0855

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"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.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5e905ee845e9507eaac938a8f401505c1e79fcb739aac7dede2669391a9c6fbc
MD5 0a70b45e80b411f56246e60f6152a7d0
BLAKE2b-256 726969be0f74ed194abdad39b73eebf61dd095a7f4b448e62466b2d23b7dbdfd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"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.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 dfc721c60608a04a061ec23399eabe80f4569d968f8af12a60c669dd5af37f51
MD5 b926790a0fad5a768855fb981a731cdb
BLAKE2b-256 4dd1ae102b6df8a23bc845a75cce8fa5048ba771a66a243f20d145f1ce41c3af

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.2-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.11.31 {"installer":{"name":"uv","version":"0.11.31","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"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.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 19c6f5008debca794132c73c794f98dfee328ac399c7c6bb61bde1899af610be
MD5 0b00dc88e96f96cdec53882a42984199
BLAKE2b-256 8c3de9b9b9e2846b6d193faf7c4e9340dafb023a66664712d7a9e8f03785b02b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"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.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 33130403e9f5e807d933cc8cfec20efc96e616c584c0840d60f1bbb9d81b8f13
MD5 0bcd23cdc2647192fbd33c67a9ceb5c8
BLAKE2b-256 f16b1a6236f5774197047be47f48a3839c5b26e3d9e87542c01d1cb020f5cdf0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.2-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 3.12, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"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.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 270aa5eebc2a278493eafc0955e9b1792a874fb849d55329bfd505ce097e52a5
MD5 baebb5ba50dc74dcf94a6b607633d653
BLAKE2b-256 1e0c113c3759a6872d043a50a3882490a7d4759dea1686fc1e2be00a916a0e83

See more details on using hashes here.

File details

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

File metadata

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

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.2-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.11.31 {"installer":{"name":"uv","version":"0.11.31","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"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.2-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 b29c564e62970ac17eef5da0aa54e2427f5679fd0f1d4a797f0334b04c8b4623
MD5 739b1929c4ab287cedbf89b690c3d5e1
BLAKE2b-256 4b7290998f08ba45066753feca7f182f130c8360ff11e0cfa91ac2941829eef8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"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.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 944a41d0479fb70ddf4353ae1d8c51cecebd5b71b86f953893e1e4a617a18f17
MD5 9b6bcd0095592859dfbdb616b14d3858
BLAKE2b-256 2555dcbf7f078732b0b4b63eb12e159b2733edd6160a3d0d6292ba3f5b317cdc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.2-cp311-cp311-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 4.4 MB
  • Tags: CPython 3.11, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"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.2-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 5bb7c873c40f4a6fa7ecfb5b53d02c2a795b1df3bda89880597b287bacc2759d
MD5 c4de4e25a7ee760c87a6151af8dd4ead
BLAKE2b-256 7244cbd0272a45a4d5e44b5fca41dd6ba7aa77d06833cd8fc706c5d77cf62a38

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.2-cp311-cp311-musllinux_1_1_armv7l.whl
  • Upload date:
  • Size: 3.7 MB
  • Tags: CPython 3.11, musllinux: musl 1.1+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"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.2-cp311-cp311-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 ac7115ac1087cb1ab76644ac80e6e6a0d5d4bd20caf0190580078ca52c5ac10c
MD5 95635694e68b096a3581018faee88aa5
BLAKE2b-256 17ee1c8da1ce2be6a5c816b0da703320272aff1419aef432e97afa0097212e21

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.2-cp311-cp311-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 4.1 MB
  • Tags: CPython 3.11, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"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.2-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 eb172cc5afdf948ef3ab93defd6e02e1645205b5b3ae960f810567a4e20f2be9
MD5 7e16572719a5b7748724f923561cc619
BLAKE2b-256 06b4756dc9cf06c3f648f0d7b7c4abdea85d373323d42ddae3b9224ff67ac76f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.2-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.11.31 {"installer":{"name":"uv","version":"0.11.31","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"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.2-cp311-cp311-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 17f8820a00ee44b1b07f721cad9885cef7456c285299f80454987124b95045e3
MD5 fdb0989cf27dbbece1f492d4f608a821
BLAKE2b-256 9cb4e0b951598d8c7f069e0e6e360903a0e6f3184f3a843d2f8e846f746a6b46

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 4.1 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"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.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 78c4f03065c6d83edb14399dafbc6f8564cafcf76fc6654f4af24c00f4672c45
MD5 00dc2d53d2b9e52cc70b876d71a3fff1
BLAKE2b-256 7fe04a7635dcb6d65f1172009a3afaae31cdfa89485b6a56d3f585f63d973b2e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"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.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7355282ed9bec211165dc9689072fedc33dab6338b3ec20d8b751c48f1033b58
MD5 730fb2b200c85d24319c6987f5b8aaa2
BLAKE2b-256 b6a2cba78126a10201217d2cc8be1b10aca2331ee2690ffd0e583157491f5baa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"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.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 baca7ab494413564d4bcd7547e7b5aeb5870def9d0168e47fd05d3fe6c1385ef
MD5 2fe8e16f8380b1742bdeca1d74ef2768
BLAKE2b-256 29b47d5111e440680f9bec77cea9e30deff5f0d606c5188d9f3a5988b362e87e

See more details on using hashes here.

File details

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

File metadata

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

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"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.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f07307c04935adf5adb3cc30e3773a604505af2b0fd71bffcc0ac104af15b5e9
MD5 4265ec23285651c3d21107ff92ac09c9
BLAKE2b-256 9ad29eaeb746a0e844ca2d6cdd94e4828526b3fea322702b7e8a234170204f57

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.2-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 3.11, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"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.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a25dde481b1c858e3bb121d06a51f15beb9ace28078ba86b9d85b63da8304c3b
MD5 494b3a9fbba995da19545a4ffa3f5644
BLAKE2b-256 2e63f3009b39243ae2ef6ee03f401460b766196d912c0543d8ebef7baba7d565

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.12.2-cp311-cp311-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 4.0 MB
  • Tags: CPython 3.11, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"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.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e26d82508df0d7f07a58a9571fd7b6f88150f0f5d248013fc691020bbcacb568
MD5 f6c0892b3e9a51b435db340a7f76b735
BLAKE2b-256 9a99eace76ddcac1f0ec139d73c717d93dd204c1fdbf0bd3900f5f9e9808a68b

See more details on using hashes here.

Release history Release notifications | RSS feed

0.12.4

53 files

0.12.3

53 files

This release

0.12.2 This release

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