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.0.tar.gz (1.9 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.0-cp314-cp314-win_arm64.whl (3.1 MB view details)

Uploaded CPython 3.14Windows ARM64

pyreqwest-0.5.0-cp314-cp314-win_amd64.whl (3.3 MB view details)

Uploaded CPython 3.14Windows x86-64

pyreqwest-0.5.0-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.0-cp314-cp314-musllinux_1_1_armv7l.whl (3.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ ARMv7l

pyreqwest-0.5.0-cp314-cp314-musllinux_1_1_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ ARM64

pyreqwest-0.5.0-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.0-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.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

pyreqwest-0.5.0-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.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

pyreqwest-0.5.0-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.0-cp314-cp314-macosx_11_0_arm64.whl (3.0 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

pyreqwest-0.5.0-cp313-cp313-win_arm64.whl (3.1 MB view details)

Uploaded CPython 3.13Windows ARM64

pyreqwest-0.5.0-cp313-cp313-win_amd64.whl (3.3 MB view details)

Uploaded CPython 3.13Windows x86-64

pyreqwest-0.5.0-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.0-cp313-cp313-musllinux_1_1_armv7l.whl (3.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARMv7l

pyreqwest-0.5.0-cp313-cp313-musllinux_1_1_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

pyreqwest-0.5.0-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.0-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.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

pyreqwest-0.5.0-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.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

pyreqwest-0.5.0-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl (3.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

pyreqwest-0.5.0-cp312-cp312-win_arm64.whl (3.1 MB view details)

Uploaded CPython 3.12Windows ARM64

pyreqwest-0.5.0-cp312-cp312-win_amd64.whl (3.3 MB view details)

Uploaded CPython 3.12Windows x86-64

pyreqwest-0.5.0-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.0-cp312-cp312-musllinux_1_1_armv7l.whl (3.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARMv7l

pyreqwest-0.5.0-cp312-cp312-musllinux_1_1_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

pyreqwest-0.5.0-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.0-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.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

pyreqwest-0.5.0-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.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

pyreqwest-0.5.0-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl (3.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

pyreqwest-0.5.0-cp311-cp311-win_arm64.whl (3.1 MB view details)

Uploaded CPython 3.11Windows ARM64

pyreqwest-0.5.0-cp311-cp311-win_amd64.whl (3.3 MB view details)

Uploaded CPython 3.11Windows x86-64

pyreqwest-0.5.0-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.0-cp311-cp311-musllinux_1_1_armv7l.whl (3.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARMv7l

pyreqwest-0.5.0-cp311-cp311-musllinux_1_1_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

pyreqwest-0.5.0-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.0-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.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (3.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

pyreqwest-0.5.0-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.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

pyreqwest-0.5.0-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.0-cp311-cp311-macosx_11_0_arm64.whl (3.0 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pyreqwest-0.5.0-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.0.tar.gz.

File metadata

  • Download URL: pyreqwest-0.5.0.tar.gz
  • Upload date:
  • Size: 1.9 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.2

File hashes

Hashes for pyreqwest-0.5.0.tar.gz
Algorithm Hash digest
SHA256 560f0cd90b5d830c3ddfdc22481f76a7af26decc50b5396f7998e526cb3dfb3b
MD5 6b7cbc95ac62119ec99071431209fbc9
BLAKE2b-256 ce87a51aad78a5fc93dd5f4751f8a37a41b5bd978c8894e8a5e6e044fe69e32f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyreqwest-0.5.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 4bea808bc06975d6f2d71f7a9ffbdc8a512e2e95c00d8d52f438fddccb05ff9c
MD5 24e1e09a65d5fe6f876bf1ffe9e45fc6
BLAKE2b-256 243974383d3ca7bc05486f1076cde1f6e741cc47ded45e62e253dd851263f7ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyreqwest-0.5.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 5f013ee0b9cb1c6300a51aee5693b86acb10cb126602a872916afbf66288464e
MD5 130d1aa91b486435223b9105c9f74b8e
BLAKE2b-256 c842ed91a4dcef4932bb5bbce825e481dd787d140503e8f0f2f550d45d641b7f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyreqwest-0.5.0-cp314-cp314-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 23cbf16a63bfe58c0aae71eafe9b5005f56e9fa250ab4114e1c8bb3f2262c3d6
MD5 880a8f98d14c6b1951c4808b1249d7c9
BLAKE2b-256 63cc6ce1ad21392a08edfc06fb7bdb5a6cd5b9cf16b9deab7f16ddee02dfd3df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyreqwest-0.5.0-cp314-cp314-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 40b9f45a2c6ac41e0c43f00d9f3edf3c6cbd168c225dfc7fafc25fb62e0696de
MD5 d122ee3fe36092572eac67889f1f178b
BLAKE2b-256 a4e253d57f321dd74e2b52eee8f8fd886fa7f2348fce418f9b80f73dbd9caefb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyreqwest-0.5.0-cp314-cp314-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 1a51e36cfbb753db649fbf6aa7887e114a14ca9c9fbd93f25594c7cc7c2c42e0
MD5 825390cf71f85b56082a52d6b35d54d7
BLAKE2b-256 26c5b54e23b299a4d5f51d1639c8afb2ae334eef6a527408bcf412a0d20aa4b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyreqwest-0.5.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c5357d4dc75221d6a060ecff5a0ec26650ba4575f87258274091078d4f0f1276
MD5 ca85a2b9619d1fed8bf73451bb3b41e9
BLAKE2b-256 be8ee1e9bb9fea3ad652e42322433a80b2f31f75251672fb968bb2d1a60d06c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyreqwest-0.5.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cf8eedf02eb0fe760a34ee400955e03f939d1d49ed76ee3d522b8c5de01cf997
MD5 2524d4f875de6fb48583db7d6e3ba067
BLAKE2b-256 37cce326c0d620d70a503a5fbe82adadf944bb588a789eab820c44c609daeffa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyreqwest-0.5.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d4b5653d0e7494292d7d0b3feabe7f2015f0ed4329a2b383347edbddf6485c52
MD5 ee8a23fd34c377a4a8c3c926b75e323d
BLAKE2b-256 5215a94880ec48b5af7df6701dacbb047a4f65cb87c937f88e34f9d878a6e186

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyreqwest-0.5.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2bb06e34a8d05b3677edb6fbb36d05e8450485d5ac16f2319035516cb5afc0b4
MD5 98a82bd4f261f9fe16fc343b789fb677
BLAKE2b-256 fdea9845f06bc7b736a133747afe261878e8a5def1f6160748068ba468b7ee9d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyreqwest-0.5.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 03977eba1956964604d332b197fc60cc548dba810a9ac73834a6f59b327f8a12
MD5 f35365b8bcd5343b9cee90b8714d84d2
BLAKE2b-256 5fcd33a2d3cd41c17350ba07b82414c94ada4434b4292f3014cd9c044279a537

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyreqwest-0.5.0-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 631c368d272e89bf1fb09cc3f2472f0681a9d517fbc42b99c74edfa4672851a8
MD5 1ef66e0a07497fef6bc474c4c19a5c02
BLAKE2b-256 4cec2efcf37796e7061c562aac0ea4861f378c0e2492c24ef976ad19ca4a3903

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyreqwest-0.5.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8ba74453053cc71a41c8b5e415d983e758b5cd95558f4fef0e5902ff6e3a2f8e
MD5 25932c167d4ed889781f09c0f3f07840
BLAKE2b-256 a0b9da965f8ab2c5985ff5054726519eca9e5f80042651c57a8082699e59f4f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyreqwest-0.5.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 344881c711ccc529062088ddb582ebc75d8882d53428a817df5d3bd6e7628896
MD5 876989033bc74854755ae889bb6474fe
BLAKE2b-256 46251e04bd392e177bf3138ed74e60faa35cc6c8ce22adbcd837d188c2e9c7f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyreqwest-0.5.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 9fb9c83451b6d2294604bd52d3444e76d1ac0cefdccb2f3f25468435c882a0dc
MD5 bf4e13a6e32c37701c5a8a41c8cdc4eb
BLAKE2b-256 192111ad3a2cdb501d1b6b5dae10d68234907168094c8fe3a2363a025fb56c13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyreqwest-0.5.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 7784f4fff167f5e68e956105d3613b92920897e01225d09ecd88e5fdce636dd6
MD5 432f050fb9f7acff20aa3572e94a6d9d
BLAKE2b-256 0903881c92370b6b52d9fa3bc99a1737bf062cc9a2951cc52e1f50b906be1b9c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyreqwest-0.5.0-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 1d65cdb0c0382b9b169afc69869114c1345a198b196969247b77a191df7f436b
MD5 61a422445e5c14d0a6dc57284378494f
BLAKE2b-256 50f49bde0eca3ab7ad9b0dea802d162ef206af43b2429c3c4abaecc553bf609b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyreqwest-0.5.0-cp313-cp313-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 3a511b7406274e11cf3f586b8f53678a35bd94da2e5e06e87593099d2b8ad0db
MD5 92db43a3de951360247f63a3e4744ea9
BLAKE2b-256 1f83de3bf38fa3d2644ca1f810345538bc55971521b062187f1bc9958de705fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyreqwest-0.5.0-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 59a914068f4d2195b75b58f3145c64cc48ac6c9316cf8584fcdb27ec836b7c5d
MD5 0a3969cb3aa3c007739761658e446e0b
BLAKE2b-256 2cb11465252e126b4c4f9541088666e58eac8d045ed70c3b7df63c5e59f29b80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyreqwest-0.5.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2f3c1929b8a69812e6214ebeaff71e6381f317618101f2728fa2630231dd453f
MD5 d4ddb9e68f1dfe4d7b7ff4c7f535330f
BLAKE2b-256 77f732648e180a487ec26851c038d8c7f4dd22b592cf63a65da229ef2d2eb5c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyreqwest-0.5.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c7efd839efb67b0972b1ed1f8f3b47bb68a3e7ac5123925e7fe012c2372e9525
MD5 7bb47caba6fb564884d0e8f610e71ba0
BLAKE2b-256 644db40e02e77e0f03edbaf05d23684de3d403c880df00f68431afae4f6d8974

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyreqwest-0.5.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d00b86fbc4c0d966da5a1826e53ff86c15aec6cbba36bd9e5a922a0ada7c2ce5
MD5 5a5054801b198b8c8b384b27e050c255
BLAKE2b-256 abb7edd044613dff7f31877dbef1275db299e58a1e4a493cab2da90253f8877e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyreqwest-0.5.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 afd8da71edb50beeb715e0e1d4731b3f0aad6c93d146650072e25a862a424d2a
MD5 2362735bc4ef7d30a65fa4d75f622e30
BLAKE2b-256 359312f67364bba2278f1074c782bd2a36dae9fad3ebd17520fbd5744a81131c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyreqwest-0.5.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 034bfb0e747e45a7675a08362a2ae015795c98fda3b1aa5b0b696ad4da8c66ef
MD5 7ac1867cdf413adde439e28c4fcc6ac8
BLAKE2b-256 dcd87155fb4e5a0b7ded84a2f4a534a752ee23ece6fe8a611ca3d57187b183e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyreqwest-0.5.0-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 9359af75eea7d70f9f5c19c71904d89484b6d21e7da187a89a41ee2c88ca68ab
MD5 d9a1fdef7b00435435f2ea6414c3431a
BLAKE2b-256 b5fa722baa0c476bd327b605fc3817e570426dc6a0f89eb9f9bed2f2cd9d971c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyreqwest-0.5.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 49b719611fe0f12794875a36a7eed116d7142f1d8a137fcb1b7db48a2ee01710
MD5 9b13a98b25e8275357486d4db3914752
BLAKE2b-256 0599a78dd2a570c2089cd41337d17affb5c7d1f0605dbdcf6d61d4450cb7bb87

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyreqwest-0.5.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ec3aeae76aabb4e7deee1d8d32619132f57f073763f00b7ea8b781fc8a0382fc
MD5 07607e95577d0bb1a3b621b2cb19c7e5
BLAKE2b-256 b61cc1d3e1046a26de76802da3726b8eea6804a8f103262366a8c938e0c6955f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyreqwest-0.5.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 65798dc84a123d856170700bccbf9c7db2066a6d4522243acb00c9f4b1716205
MD5 d909ec55514097f75f8bc54851bec424
BLAKE2b-256 ec664cb209105075665d539b3ddc5eea8ac69a2259eac8757a8f22fa1c951466

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyreqwest-0.5.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 8f7d9c350e0cf595ca8d3c55d84dc767e95ac47f7ee4c6b4205d21f8f9799729
MD5 4509dd01e2a764c5a20ffbbce61102f8
BLAKE2b-256 cd80468d20d529369efc9cbb2c4115185152f5edacf3db13f169123b8aa423ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyreqwest-0.5.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d26e1fa6f89a68dedeaebd4d7c5b6e36c527fa8e6710ec715aa9ef45944d8abd
MD5 497ce8cec98768e0e62396654abd3856
BLAKE2b-256 d6ff9f3f4b505744103151d5d55e440769568e957a7ce097c8dc26b25c2bd45c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyreqwest-0.5.0-cp312-cp312-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 90eeb5f90f3dca668714725d9712689d5547dfb7c2d60e4a5c9694d70e2eea29
MD5 ed238a7867309d6d8aeee5308a1fab70
BLAKE2b-256 91cb7daa074db2deed43512669f34dbcc9ab0edd69fc3648a0fde1e45949b191

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyreqwest-0.5.0-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 29e6a71c15651dcf14a43cd9a6a620e597e9bf943254ce162a35ac1441a8c573
MD5 69dc29fa756360007e3a8ef10b871418
BLAKE2b-256 67d7b948e5627f6ca0c4e2010b8721434c26dce4f5dfd0df9a785a4cd78ea9f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyreqwest-0.5.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a65cfdbdf242ee37ae445c9a5d4f05b8a7559681168bc2d4299a6e85117e7a59
MD5 bc80b7589ef0f851f4c70df5514de578
BLAKE2b-256 d54e879be1ace839d0786a109d199beea7331a970caf9ad775f3420b41ab00bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyreqwest-0.5.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 82a97cbfa4c970b208dbc6e0d1a5191f3b45c4bac65e3458add428a6fe598c53
MD5 b167982d5054e8a830726809b47c9def
BLAKE2b-256 eaa0fd87dcff2b89a35da68b5b1104c9785ba3bd3fd6e43cc50ca727f1804dd2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyreqwest-0.5.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 87634892e7899cabc56cda30586a3c56a56ce5e22c91f442f9b69b0f05b5c293
MD5 ac7758d9975452209ae65cb329354620
BLAKE2b-256 decbb46246980187b83fda84a6e81e83947a31a1d906afac27b3d499f26b43b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyreqwest-0.5.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 eaccd863d35633ab9433975586cf15d86310ce09511fd61275f4d4e9fbe67745
MD5 88a01ddf03ac757e539d675b783e9d58
BLAKE2b-256 a27b8d0d581e469342c5001e4dd261faa1a340c7c63b760276ecb048915c1ed0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyreqwest-0.5.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 02e9f119532817f3a2b7cb08d09eefc3ac559c4702e708508f00185603c4eb68
MD5 9dbe7c5a5bee4c3edc6031bd19cd9648
BLAKE2b-256 35ecc9f59ab6df354f84fd7a50fa39dca2e4dcb5ad184ea62e9d03629ee99cc5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyreqwest-0.5.0-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 862339a62b647e32e43788fe22edd2ab0f87a9b6b270e8b9a2febd825295bca3
MD5 6c84d84ecf826906364313c495d6db63
BLAKE2b-256 77d3e9f99009f37e34b32da6d8998f6cff46934b957c31d9659c7b5910a862ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyreqwest-0.5.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 771f37943ee202e8891def88329b4d6cd45975fe3ae32153af41a93b87f3bdf1
MD5 9099b3c73b4b74fc58d1399ef31092a6
BLAKE2b-256 a37aaa00aafa05b884091ffbeef4938b953e107a3e4cfdc2a9ad635a5cf13461

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyreqwest-0.5.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8b9d41fc9ce3c00fca193434c0210ccfaae9e93b97ca4818ed7bf3a70ef0c9d4
MD5 e76a54b55ca0fc0a7d5cefb3d466ae5d
BLAKE2b-256 0f53c269f7cf00f73bd203d5b74d56f0b54e3441a9ea005a02d78b9d740bc32c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyreqwest-0.5.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 ad8d53567edffdcd90dfd8043587c8d82676cb4f11c73317b1c1a314509c4050
MD5 1610a7c3ade33eaff4da3aece75822dc
BLAKE2b-256 5b8c13aca9e7ee226bfbe38385ba8b362a8a140a45ebbac9a629ae07939a2a96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyreqwest-0.5.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3c7a917166197b4934dec50b6b181da9670035cdef14d45f91766c24d70e7d06
MD5 28fdf53d4facad074ed6df66de0f7352
BLAKE2b-256 f774a71dabbbdcd2a55deb192ce66519b0b6201b72abe5b8d4287b21befbb998

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyreqwest-0.5.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c591c1ebba2aeea2addbbab8c5ce18b00662106ed1cf57a57955337a66bd06c7
MD5 e2af539d6b79e0ba6e4c21daf3f468ff
BLAKE2b-256 0352b82af1dbe2ab1dd1a827c290aaffff645d3917c6c1c36b8bfcd265415beb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyreqwest-0.5.0-cp311-cp311-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 fdc26072dbe24fbaac5be967507710e8276d294682a322dbcb00a8a4d654c66e
MD5 60112d4cec0d14952b2b4af8efe9b2a3
BLAKE2b-256 29220c6b41d4f92498ec84089b7ef8ba416e2ec9b4abd6a185298257e5803d8e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyreqwest-0.5.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 a76b5d48a8a80a2bdef185ea51dea5c1c048e54c0d898a81c2db4c6c43a4e4d7
MD5 f1b8dbed94b38d68a0eeebdac0dedbd7
BLAKE2b-256 1017535b33621ce23eba4b4a761c359f23b12d897761f4858c9c3e40ba727738

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyreqwest-0.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a2b9f697a82022acb82aa6eafedfdafef95b17b41de6103247640f1cea07062e
MD5 e550b358e7011259eca247a7754a5753
BLAKE2b-256 6ed3dc65dad160a728a9a5a9bd660ab4b5ca6667b7f3f602852b9b93f4e0430a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyreqwest-0.5.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5787d1ecfcda5846364308ed3530437f3393daf98f98fd1d57bd01dd15b93d33
MD5 ee8c4563ddbd1832eb6372e48df6bd6e
BLAKE2b-256 2f56beb71e624da24145aa9e3d3bb2245bfe0f4a438fccd48a3bf7fad3832e34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyreqwest-0.5.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 354e5244988ee52f303cedcac2c658fb87890cd06b4b45e8d11e9312cef609c2
MD5 1f96eccacb474ab656e34b6006dc4bf0
BLAKE2b-256 31bba5510029666084425a4a803ca28bb880090e1cdb8f0b519977a42f5b541e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyreqwest-0.5.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 01872bd37cd0a9a3e72d916c5a79c62d2cae2bf68c87451068c44ae5661f5a7e
MD5 5d40b08061ff3a80dbd98e3d6328be77
BLAKE2b-256 a250fc9678bb90569f06fc01f221674735fd2062a66c79e99b56c1dce447fd3e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyreqwest-0.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 477ba5f830d170081bc60c59608ce895c6e423a06f9a367188641e6d778724aa
MD5 c2f09c76c91cb7b3233bd67ad1b1e250
BLAKE2b-256 e77bc812ac36158017c54251ff81e3c6c847b9cbb3dcfe0105bfa249a2010866

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyreqwest-0.5.0-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 dd0268f219bacf9d4f08a52480008ce42f7a31d96940a288a5861d7b56793ab6
MD5 156080d3e9e5de2f1f6e780d034a3e76
BLAKE2b-256 29742af8313e6fa9c419dfebb8529b756fc5acef919591d97dd891f2a8c29807

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyreqwest-0.5.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4a5d6b4b93d2bec1414b4fc37096d13a1e0cb77ab46b42e43136abbfa93d8bb0
MD5 7a24de474270448bc4f6b6f9a59e72eb
BLAKE2b-256 898c940f397771d595b50fc7e309315452f7918952ff49d0d03d7f9fdb4f5448

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pyreqwest-0.5.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 85b5195634c907c87a244e2b56c4109b8eb4400e1becdda9adfbb4bc581827d0
MD5 957d736864dfe1d0c294c5b61cff42e0
BLAKE2b-256 24a5a0070e0e09ed0633a32ce3b0603784f59bf3620469b4dd433abaec2ae81c

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