Skip to main content

Powerful and fast Rust based HTTP client

Project description

logo


pyreqwest - Powerful and fast Rust based HTTP client. Built on top of and inspired by reqwest.

Why

  • No reinvention of the wheel - built on top of widely used reqwest and other Rust HTTP crates
  • Secure and fast - no C-extension code, no Python code/dependencies, no unsafe code
  • Ergonomic and easy to use - similar API as in reqwest, fully type-annotated
  • Testing ergonomics - mocking included, can also connect into ASGI apps

Using this is a good choice when:

  • You care about throughput and latency, especially in high concurrency scenarios
  • You want a single solution to serve all your HTTP client needs

This is not a good choice when:

  • You want a pure Python solution allowing debugging of the HTTP client internals
  • You use alternative Python implementations or Python version older than 3.11

Features

  • High performance, see notes and benchmarks
  • Asynchronous and synchronous HTTP clients
  • Customizable via middlewares and custom JSON serializers
  • Ergonomic as reqwest
  • HTTP/1.1 and HTTP/2 support (also HTTP/3 when it stabilizes)
  • Mocking and testing utilities (can also connect to ASGI apps)
  • Fully type-safe with Python type hints
  • Full test coverage
  • Free threading, see notes

Standard HTTP features you would expect

  • HTTPS support (using rustls)
  • Request and response body streaming
  • Connection pooling
  • JSON, URLs, Headers, Cookies etc. (all serializers in Rust)
  • Automatic decompression (zstd, gzip, brotli, deflate)
  • Automatic response decoding (charset detection)
  • Multipart form support
  • Proxy support
  • Redirects
  • Timeouts
  • Authentication (Basic, Bearer)
  • Cookie management

Quickstart

# uv add pyreqwest

from pyreqwest.client import ClientBuilder, SyncClientBuilder

async def example_async():
    async with ClientBuilder().error_for_status(True).build() as client:
        response = await client.get("https://httpbun.com/get").query({"q": "val"}).build().send()
        print(await response.json())        

def example_sync():
    with SyncClientBuilder().error_for_status(True).build() as client:
        print(client.get("https://httpbun.com/get").query({"q": "val"}).build().send().json())

Context manager usage is optional, but recommended. Also close() methods are available.

Documentation

See docs

See examples

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.5.1.tar.gz (2.0 MB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

pyreqwest-0.5.1-cp314-cp314-win_arm64.whl (3.2 MB view details)

Uploaded CPython 3.14Windows ARM64

pyreqwest-0.5.1-cp314-cp314-win_amd64.whl (3.4 MB view details)

Uploaded CPython 3.14Windows x86-64

pyreqwest-0.5.1-cp314-cp314-musllinux_1_1_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ x86-64

pyreqwest-0.5.1-cp314-cp314-musllinux_1_1_armv7l.whl (3.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ ARMv7l

pyreqwest-0.5.1-cp314-cp314-musllinux_1_1_aarch64.whl (3.4 MB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ ARM64

pyreqwest-0.5.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

pyreqwest-0.5.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

pyreqwest-0.5.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

pyreqwest-0.5.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

pyreqwest-0.5.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

pyreqwest-0.5.1-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl (3.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.12+ i686

pyreqwest-0.5.1-cp314-cp314-macosx_11_0_arm64.whl (3.0 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pyreqwest-0.5.1-cp314-cp314-macosx_10_12_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

pyreqwest-0.5.1-cp313-cp313-win_arm64.whl (3.2 MB view details)

Uploaded CPython 3.13Windows ARM64

pyreqwest-0.5.1-cp313-cp313-win_amd64.whl (3.4 MB view details)

Uploaded CPython 3.13Windows x86-64

pyreqwest-0.5.1-cp313-cp313-musllinux_1_1_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ x86-64

pyreqwest-0.5.1-cp313-cp313-musllinux_1_1_armv7l.whl (3.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARMv7l

pyreqwest-0.5.1-cp313-cp313-musllinux_1_1_aarch64.whl (3.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

pyreqwest-0.5.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

pyreqwest-0.5.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

pyreqwest-0.5.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

pyreqwest-0.5.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

pyreqwest-0.5.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

pyreqwest-0.5.1-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl (3.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.12+ i686

pyreqwest-0.5.1-cp313-cp313-macosx_11_0_arm64.whl (3.0 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pyreqwest-0.5.1-cp313-cp313-macosx_10_12_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

pyreqwest-0.5.1-cp312-cp312-win_arm64.whl (3.2 MB view details)

Uploaded CPython 3.12Windows ARM64

pyreqwest-0.5.1-cp312-cp312-win_amd64.whl (3.4 MB view details)

Uploaded CPython 3.12Windows x86-64

pyreqwest-0.5.1-cp312-cp312-musllinux_1_1_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

pyreqwest-0.5.1-cp312-cp312-musllinux_1_1_armv7l.whl (3.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARMv7l

pyreqwest-0.5.1-cp312-cp312-musllinux_1_1_aarch64.whl (3.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

pyreqwest-0.5.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

pyreqwest-0.5.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

pyreqwest-0.5.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

pyreqwest-0.5.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

pyreqwest-0.5.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

pyreqwest-0.5.1-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl (3.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.12+ i686

pyreqwest-0.5.1-cp312-cp312-macosx_11_0_arm64.whl (3.0 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pyreqwest-0.5.1-cp312-cp312-macosx_10_12_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

pyreqwest-0.5.1-cp311-cp311-win_arm64.whl (3.2 MB view details)

Uploaded CPython 3.11Windows ARM64

pyreqwest-0.5.1-cp311-cp311-win_amd64.whl (3.4 MB view details)

Uploaded CPython 3.11Windows x86-64

pyreqwest-0.5.1-cp311-cp311-musllinux_1_1_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

pyreqwest-0.5.1-cp311-cp311-musllinux_1_1_armv7l.whl (3.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARMv7l

pyreqwest-0.5.1-cp311-cp311-musllinux_1_1_aarch64.whl (3.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

pyreqwest-0.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pyreqwest-0.5.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

pyreqwest-0.5.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

pyreqwest-0.5.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

pyreqwest-0.5.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

pyreqwest-0.5.1-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl (3.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.12+ i686

pyreqwest-0.5.1-cp311-cp311-macosx_11_0_arm64.whl (3.0 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pyreqwest-0.5.1-cp311-cp311-macosx_10_12_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: pyreqwest-0.5.1.tar.gz
  • Upload date:
  • Size: 2.0 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.17 {"installer":{"name":"uv","version":"0.9.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyreqwest-0.5.1.tar.gz
Algorithm Hash digest
SHA256 cdfb6129e11732258fd2702e48b477f058294bf68821048c453b05029a542ce4
MD5 192bc198d96446478352ab9914d319c9
BLAKE2b-256 a46bc9426644dc9a7ca7234e7ef57df6011ccfa874b385e5667465aebfbb8830

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.5.1-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.17 {"installer":{"name":"uv","version":"0.9.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyreqwest-0.5.1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 80e62db84ec4559694f92167b725d843cac28d559e8fddea2c1c19446de65669
MD5 7df0c6d86f70f8c25a6a0bb1df57e4ba
BLAKE2b-256 228a8799df7c7610a33d19d16d0da1777a16f4128abbcd80b38e9366a9391fdc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.5.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.17 {"installer":{"name":"uv","version":"0.9.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyreqwest-0.5.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 745daa0d4e03b519f33c0a6c6eb0f061189792946af1a5c43a3f7e8b88c63425
MD5 c9611f5c65e1142de3dd0b1c07133aa2
BLAKE2b-256 5e8c3a866c84a0357e24a54946ce98ad48ee9cd826e8474fee14ce8ea31c0b29

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.5.1-cp314-cp314-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 3.5 MB
  • Tags: CPython 3.14, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.17 {"installer":{"name":"uv","version":"0.9.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyreqwest-0.5.1-cp314-cp314-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d8b20ae5857c33bc8d595d4888f44056c1d527813da90a87abc38fb19993c22b
MD5 a936c4b104e3e812448b15419c3fd08d
BLAKE2b-256 42e819dbf6bb00561ef2ed018d46c85449d9cedf274b470ed8717c3989604f43

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.5.1-cp314-cp314-musllinux_1_1_armv7l.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.14, musllinux: musl 1.1+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.17 {"installer":{"name":"uv","version":"0.9.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyreqwest-0.5.1-cp314-cp314-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 7cd88d6eb35137d18866727f954f9cb0eb3b0fd2e9e37b77c81528edba0e56a0
MD5 40a1f304b37e15100b2e828b0215126c
BLAKE2b-256 eaf39598041626b1af9f29005f619bbd94ff9890c8eebec3948f99dfe13a699b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.5.1-cp314-cp314-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.14, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.17 {"installer":{"name":"uv","version":"0.9.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyreqwest-0.5.1-cp314-cp314-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 796226decda8b0211bdf8b0f2a766744067a7a70aad2bd1b2df30c8f8e61b79c
MD5 08def55bd43afbb1a3b62da66de0c67a
BLAKE2b-256 94de5432b9574f654a9e41bcc13f8b4574484336b4fd3fb6e61a1567447198d2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.5.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.17 {"installer":{"name":"uv","version":"0.9.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyreqwest-0.5.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6e8a0e5cf0a12dbf8c87c25da1bb53a9aa86be7bd2dcbb9b418372155518c691
MD5 a76f696c5bd6659cce2d92f961ac466c
BLAKE2b-256 d58518fc97dd6c0d59340eaa6c69f16ea8291dcea056a53df5b478a4e040ecfb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.5.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.17 {"installer":{"name":"uv","version":"0.9.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyreqwest-0.5.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2d207e982c8f273305a670889a93b78eb3c1451b3245fcc752990f23d10c85a7
MD5 185d0aba54fcbfc7e055bc664d139070
BLAKE2b-256 38e299b233ab6fd98bc8a1d1753d91f73a69c3b69a134c0a7b28f4d84b508bc0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.5.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 3.5 MB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.17 {"installer":{"name":"uv","version":"0.9.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyreqwest-0.5.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 dbc2cd5c6b0668be19e8d6017ded7523e54ca16bc9096f7c2425f98e022f01fb
MD5 3806689f27d2eea509af9a700656e744
BLAKE2b-256 9cadd74a4e4486b41a75fa2a783c35e6238d8d6910af16bb45bb77fef955ab1f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.5.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.17 {"installer":{"name":"uv","version":"0.9.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyreqwest-0.5.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 94895202f2c8951925bfcf91d115db0ddc5ab55a070725eb350c9d8e26f951df
MD5 069188e2c3256c0e88bba01d891904e3
BLAKE2b-256 9cb600ed0488a22106600aec9445ef5d2543531b4e4dc2e21a8dce5177ac27d8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.5.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.17 {"installer":{"name":"uv","version":"0.9.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyreqwest-0.5.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d9da817aacb980646843f547006b669d7345123619c779d365c0615a37fc5e90
MD5 8cb7994b83e1c6f57c7aa7c402237373
BLAKE2b-256 d1b5855faaf6a2de15115d0454a3d39c8d73f1ef1e9f2deda99add4ee0b268a2

See more details on using hashes here.

File details

Details for the file pyreqwest-0.5.1-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

  • Download URL: pyreqwest-0.5.1-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.14, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.17 {"installer":{"name":"uv","version":"0.9.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyreqwest-0.5.1-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 ac26effb6fc30c8e8a37adfebb9742136f4ce8b72fd36c21049a7c75d8d1da7b
MD5 9db3988f6c4f140205accdab1a97eaf3
BLAKE2b-256 31f307deedf787304c2a5a82547bba3643aaff44b35ba05ef794c198478c5b57

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.5.1-cp314-cp314-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.14, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.17 {"installer":{"name":"uv","version":"0.9.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyreqwest-0.5.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a9f4e02c00cd97e355942a977771156d727ea4256af75c3890dfd69c725e7ac7
MD5 9c0eece48d3f31d32c0e9dae000dede9
BLAKE2b-256 141d33596c5763f7c97f419ad09a93fabf96177e15376f3656dc08c0e2c1805e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.5.1-cp314-cp314-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.14, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.17 {"installer":{"name":"uv","version":"0.9.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyreqwest-0.5.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b24bb8bbce5c8026139eb448dc962114bbd4b269a9e90c60d0b645e2a74656a3
MD5 570d54583f9a12bd7025ce7fde9bb126
BLAKE2b-256 368b5fa9412aa4e96bbd508878c834754b05065bea4842ad455ef8275db9b2a3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.5.1-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.17 {"installer":{"name":"uv","version":"0.9.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyreqwest-0.5.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 8d97d2f93c30b858310240d9bd38345790be6cb50351e19e3b646f8d61b72c78
MD5 27ad5c477d571b3ecc4dcb9765235740
BLAKE2b-256 65f98e253c5b6dd337caa069d9fc7df030a23f87c34bdc88493716862a027d02

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.5.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.17 {"installer":{"name":"uv","version":"0.9.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyreqwest-0.5.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 9050a14737baecd909bf556a0b423728d4fc450ba058c4d6e9f85679c7781334
MD5 59c58062171c8f238d39efc002d884c1
BLAKE2b-256 5c6c295cbe3acc903244db3fe7a13ac8b2d05d4b3a55f715f429e2e6de5ba50a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.5.1-cp313-cp313-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 3.5 MB
  • Tags: CPython 3.13, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.17 {"installer":{"name":"uv","version":"0.9.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyreqwest-0.5.1-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 5564d2b76d97572292381755c2cfb3552d2109b9728d02720e632c14e2a8ad7c
MD5 45b138256d6134afa4bb649ec49e1119
BLAKE2b-256 bb541fa8d646ce91382438e5dfa3a3572af1f2acfaa58499f13dc9af4d8ef226

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.5.1-cp313-cp313-musllinux_1_1_armv7l.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.13, musllinux: musl 1.1+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.17 {"installer":{"name":"uv","version":"0.9.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyreqwest-0.5.1-cp313-cp313-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 895a0edafc0f4e1b734786c32e8624e1e5d3411fc2673c04eb7606444826279c
MD5 fa04513d73366bdc51b8006b3706b0f0
BLAKE2b-256 e30a625a3957e4269b5eadc640bb5656346fc2c6914a024511a031ba295c34b8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.5.1-cp313-cp313-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.13, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.17 {"installer":{"name":"uv","version":"0.9.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyreqwest-0.5.1-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 5417e67261147a556cbcdc7ae370acbadb938709e047235f4823320ba6ef7b72
MD5 484814f80dff1b9577525e0ba2e2c21f
BLAKE2b-256 05aece7e091529c482e88038ba95b50088fd0065311e414cbcb32ea0b986a81d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.5.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.17 {"installer":{"name":"uv","version":"0.9.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyreqwest-0.5.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bdd917b48663669a6226a67223dfbec2c73f3f9ccaca48e78b8a2eb801611756
MD5 c1817dcec60404144051445bd343b80d
BLAKE2b-256 8e191656cc4ebc30c4e1248ddc21d9fddc7896d36d777e99c8b6d74f0afa1e94

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.5.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.17 {"installer":{"name":"uv","version":"0.9.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyreqwest-0.5.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 23c43fc695b399c002038451fc8adf5dfe9ff9360a6cbcea77b74431e655fb81
MD5 28db4507dfe7914cf5805807a7d8c1ab
BLAKE2b-256 ca26094033dc0fc781e6b6ecab077a721e251c685b28a79cb2250ea4ad5cc8bc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.5.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 3.5 MB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.17 {"installer":{"name":"uv","version":"0.9.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyreqwest-0.5.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1a2d98176f93a5e7083688a4f67854f50b985b68077b528c6c463cb73a64d33d
MD5 2476e55ff29332c3fc20747444f04e9c
BLAKE2b-256 d730350d7f167e8680cfe9779f621208f7a7901ddf82478932f8684362de23da

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.5.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.17 {"installer":{"name":"uv","version":"0.9.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyreqwest-0.5.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e22131b6832b8f81d0e62291302a41fd693226c75877591767c48a175b5471f2
MD5 dc617805ae8b7aa3fafc395474cf73c2
BLAKE2b-256 c091676103704754801ff58990ba2386b02920e8b3dcda1dbbb371120740ac45

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.5.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.17 {"installer":{"name":"uv","version":"0.9.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyreqwest-0.5.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 70a5b7aaa91e2a17241fa0f166cd71784722660317e26bf520138671cb377f05
MD5 168f114075c2bb6ceb38df55588d485a
BLAKE2b-256 974a4d0fb3515ddf05e89fddbe32520eda20f2ea536fcf33ab773200ab50c72b

See more details on using hashes here.

File details

Details for the file pyreqwest-0.5.1-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

  • Download URL: pyreqwest-0.5.1-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.13, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.17 {"installer":{"name":"uv","version":"0.9.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyreqwest-0.5.1-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 bc94ad9001dd421247a6030c808891974028498391c4969f01e2605be317fc3a
MD5 a4d2cdfeb4b38e1939093f7dd7337237
BLAKE2b-256 018bc4b4c911b8d850582fd20b6f0e17c369d1288bdea1e2561d7d73a56c8664

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.5.1-cp313-cp313-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.13, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.17 {"installer":{"name":"uv","version":"0.9.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyreqwest-0.5.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3506fb11a881ac907d256e7c71121e717b64762eda5c200c2b3ec7c6793ce260
MD5 36b770b87ea42834a7e95dccec568199
BLAKE2b-256 a75541f9acda68315fee437997c912366d98b7e4c593d2be2735c4881e64e5a9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.5.1-cp313-cp313-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.13, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.17 {"installer":{"name":"uv","version":"0.9.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyreqwest-0.5.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 193e3f7471782a3b5dfa1aeac2669ebdc6b909cf5e855c0426a699d8fc31b4d9
MD5 050505b280ebe7a9169b460d743196b2
BLAKE2b-256 8b9185ef6439364f5f634d81c5595b726196da114fb39ddb3091e14d9d5312e5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.5.1-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.17 {"installer":{"name":"uv","version":"0.9.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyreqwest-0.5.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 5a9c4c578a157ccdd17bcb2afe9487cc0fb6af6a5264176a6a6ac031fc132fd8
MD5 606f6099039ae64a4bbdadb0f26ad3da
BLAKE2b-256 4cace0da2c300e0672a32f9b1448c5dfa9882db917fb9a927cc7905a9fdc7698

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.5.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.17 {"installer":{"name":"uv","version":"0.9.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyreqwest-0.5.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 96c776b477dc8802213bdb044f93262d1299dbae3d86205fe69ceb8c68099573
MD5 da5f4a562e2e81ea2154abd0a063fc12
BLAKE2b-256 53b717ad1b57c5e1c62ef552715e739f269676066c3db0661bb19acd57d0bc1e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.5.1-cp312-cp312-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 3.5 MB
  • Tags: CPython 3.12, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.17 {"installer":{"name":"uv","version":"0.9.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyreqwest-0.5.1-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6a9935ee3cf51f4994d9dbf5bc27e339ba56e271368945f6edabfbab140d171f
MD5 e31ec94ea5d9df93198b4816f32e8dde
BLAKE2b-256 056269fb75f21a9841c91f3575116953843915e918fb443a4b8bf15051f99565

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.5.1-cp312-cp312-musllinux_1_1_armv7l.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.12, musllinux: musl 1.1+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.17 {"installer":{"name":"uv","version":"0.9.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyreqwest-0.5.1-cp312-cp312-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 6cc95ec7a970f5e4714ab47bec071074e931605112ec0c40b1e669e06db974d7
MD5 545d208a76e6f2aa98f711d351af52d4
BLAKE2b-256 ffa33be3c7ebfda67d05a5b3ff8ae4fa15ee6fae2eff6e5008baf3b84ded19dc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.5.1-cp312-cp312-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.12, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.17 {"installer":{"name":"uv","version":"0.9.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyreqwest-0.5.1-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 9fa4beffd17e1fea29941c7a529e276cc0b3635797b8e7eea5b1f3b923e7eb56
MD5 921816159dd3a237b121f7221aae4f3d
BLAKE2b-256 fd452bfc5fa99d649d5a54235515a0fa58c400d5f0d5c1b255a7cd9b2abee836

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.5.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.17 {"installer":{"name":"uv","version":"0.9.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyreqwest-0.5.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 af4bbd801a1bb9be3cdc02dbe080a54251c959a995ca38d6fa69870ab9fed186
MD5 0fcb390c309194956529a98538bc77b6
BLAKE2b-256 571e015e1e433b845e5aac660c6a257a2a273a07973b4c7aebc17462d0a38ca3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.5.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.17 {"installer":{"name":"uv","version":"0.9.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyreqwest-0.5.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a4adc9db37141732b5e1a81b8d0d83e30e46bbf0d052732d72800abd03d6a2eb
MD5 cae9ac811d7b6a4887a1303699304a2b
BLAKE2b-256 5e3958a0b21fddab867bfefa2f6501f4f824b062c7ebeb6e9190a4f5f8f95ad3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.5.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 3.5 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.17 {"installer":{"name":"uv","version":"0.9.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyreqwest-0.5.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 95e5071f7818c9048bc8170a1d379373c0ee388ac337ba2135211d7fbf565db3
MD5 a79c69c0bf9e1a0d58c5d520876beed5
BLAKE2b-256 011b445eb57d02996aaa6ce02b9644afb7d85d280ed96b21ff24c0114c7dd1a9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.5.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.17 {"installer":{"name":"uv","version":"0.9.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyreqwest-0.5.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b4ad5628da5dd4c0a8d997f955722f869067012efbd1c4d1de64af2fc98e8b49
MD5 d2f2ac9ef46d8d9a291ef039af809229
BLAKE2b-256 b7662e3e404d8de060fea0bdcb708ff3432d7d3000761f8d39282b310a41bd88

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.5.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.17 {"installer":{"name":"uv","version":"0.9.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyreqwest-0.5.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b5901da90d5a4a87de96ae830d4f503ad47c899f8eaff81817488ad365e9d127
MD5 2cbd7ee97c1e845a7a096a4be9d1c490
BLAKE2b-256 95f2d263976ab512ba2babc43209edc96846f567e704a785aa49e561ea637f10

See more details on using hashes here.

File details

Details for the file pyreqwest-0.5.1-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

  • Download URL: pyreqwest-0.5.1-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.12, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.17 {"installer":{"name":"uv","version":"0.9.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyreqwest-0.5.1-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 951b1a3c629860926d1870beda8b0ea278b9d70881e9a9423bb1c73052e11d41
MD5 c9e8c5c6b568d61f733c0f8b48e35ddc
BLAKE2b-256 d2d8a33f55ed5a8dd311a3fc2d064f38fafb050cf82c8cadbff5301bac4f6979

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.5.1-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.12, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.17 {"installer":{"name":"uv","version":"0.9.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyreqwest-0.5.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4ec581fce5a3b54c15930466817c73d4d161f3e627aaf865881f43ee487cb2ae
MD5 4061f17f44ae66006fbf19f3da58a1ed
BLAKE2b-256 96ea05c2c810137ca00bd2535bc6c59b61dffd7c688f6cd376f0b81084dd1469

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.5.1-cp312-cp312-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.12, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.17 {"installer":{"name":"uv","version":"0.9.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyreqwest-0.5.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e8f716443f584ff9e897fe8cb5bec7dacea5b16070e84bf4e41d538c3763a807
MD5 ddee33f49fd2956782a1c6549fc6e224
BLAKE2b-256 44d89c363949024dafe6f2529b6b507b2e21c5d52325be0a5f228a1e5e78afa5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.5.1-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.17 {"installer":{"name":"uv","version":"0.9.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyreqwest-0.5.1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 1f1a6a765443e8a03403b0394d314d47853c740f5f3eeb48a2b6f190e2e2246b
MD5 76be0ec49ac4139c09602eb94195ead9
BLAKE2b-256 e7fab8b103c4d7f8ec569b8acafb205211c94476c7066af5e0ca498c7bc3dbbd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.5.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.17 {"installer":{"name":"uv","version":"0.9.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyreqwest-0.5.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 58f2ac12fc3c60f9442b6d1d244671aa46ec8226f13a0649056d7a797820ccfc
MD5 a926d0f92e930e9e4344e5d26a858039
BLAKE2b-256 0d2a95973fa675dc299a386ec7b7aa93a65dea21eeefbc7cd3f0d650ae714dff

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.5.1-cp311-cp311-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 3.5 MB
  • Tags: CPython 3.11, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.17 {"installer":{"name":"uv","version":"0.9.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyreqwest-0.5.1-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 ae2967af598ba13ba3de690abce2fa0921f6f1082d78a353c269566dfd0dfc50
MD5 d5c5a75c2211014c9656d425694fcee0
BLAKE2b-256 af6c183fba5504b453c4e810aca6b1a11b261745d0e0d76ee0cda3ef617a14c1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.5.1-cp311-cp311-musllinux_1_1_armv7l.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.11, musllinux: musl 1.1+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.17 {"installer":{"name":"uv","version":"0.9.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyreqwest-0.5.1-cp311-cp311-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 c6f8a1dc9641bca4f7ccc0b0aaa2506ffa5bf45c6cee4220662cb44d97d2d851
MD5 15d68fa3795eb3d92d324583a2e34396
BLAKE2b-256 5aacbc9ff1de8f33cbc2c9c4623475bc48eda55d7be27c00c9b97503edfbce3a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.5.1-cp311-cp311-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.11, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.17 {"installer":{"name":"uv","version":"0.9.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyreqwest-0.5.1-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 feb8846fd21893e75f24df0f55193be068d7f80c99cae8d5efd0000eccdd590e
MD5 af5ee5a1fdb9a06eb96fcf02954815d0
BLAKE2b-256 720ffae7d497093d703c045f0f02c36bd86b5257914eaef17d17d9367858e1cd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.17 {"installer":{"name":"uv","version":"0.9.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyreqwest-0.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c836291d3214d730bc6031b230dbfd734b13667bf851bb0145eee5f6eeddda6a
MD5 bb5cfb3168b159bac0458f35e98ddee7
BLAKE2b-256 8b52d38a1ae5916680a72e02664b13cff4628ab61f0184b82a253a9937f5827c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.5.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.17 {"installer":{"name":"uv","version":"0.9.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyreqwest-0.5.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9b687f732d22112faae222065c2fad4ac77407668ae282de8e51ed64d9996d87
MD5 7d87edab07e769a7d02988282ad514f0
BLAKE2b-256 af8d360de8b6359cb2784094e6b573026111e9797593b48ab1f6b6f7c4079895

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.5.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 3.5 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.17 {"installer":{"name":"uv","version":"0.9.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyreqwest-0.5.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 97daded8f9b8f3a9c4036dfd3f5af6d95b280f3cdcbd5f51375e08ffdbdf1c51
MD5 d151a085ec59d3e074324e89697c3344
BLAKE2b-256 e0721e724673e474b33d61d29154563b967a413ed259908412c428db01adf187

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.5.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.17 {"installer":{"name":"uv","version":"0.9.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyreqwest-0.5.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4e5b3b0a8f6c9084db86dce2241c2c4c7e21f1843409419ba1776444c999ffd4
MD5 9c9b8e778006b640c906545347818a0a
BLAKE2b-256 1c83d6e1a2c5ecbc0cea31ef603030ac1823e7023331042b8b2f9dec71359b5c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.5.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.17 {"installer":{"name":"uv","version":"0.9.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyreqwest-0.5.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 00e2bd8e2cd7a74309fed898b9863c528c9a4f831c9d0da68fe928234ed84a09
MD5 0b5ce6b1d2191b16853217b37b4fd575
BLAKE2b-256 7fa5014b10a4d16f538b8076c03e45c1ee94c8c74b2a3da024e249676f66c39e

See more details on using hashes here.

File details

Details for the file pyreqwest-0.5.1-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

  • Download URL: pyreqwest-0.5.1-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.11, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.17 {"installer":{"name":"uv","version":"0.9.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyreqwest-0.5.1-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 51a269fdb05e711fc531ebccf8bfd41bb43cf7fc00611c1ed6cc6543e18f6376
MD5 32788495fcef3f7170b9257616c32cef
BLAKE2b-256 371bfeffc204e179bb1579d57093d9f28bcf3e58351c0b64a5468d33e760230d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.5.1-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 3.0 MB
  • Tags: CPython 3.11, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.17 {"installer":{"name":"uv","version":"0.9.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyreqwest-0.5.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 70d1da556655af49b7008f05ecc4dc2741f3b8aad7435fdc8d2fe267a8c4cde1
MD5 728767afd8fa071d9cd622f7a433f7ae
BLAKE2b-256 4aa1f524dcf3457cc7dd595aa0be3471b5e5f685cc95040cfef8f9707a022783

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pyreqwest-0.5.1-cp311-cp311-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.11, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.17 {"installer":{"name":"uv","version":"0.9.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pyreqwest-0.5.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 be0e4eba52d23ac213e3e1f69e2568cf35b830ea72e06fdb2e492a305844ec7f
MD5 06b09e7c992616bb0a25812fadc5f1dd
BLAKE2b-256 9babcf7a77229c99c072a213e7a639ae85fd9aafaabc352d355cea9602746b47

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page