Skip to main content

pyqwest

License CI codecov

pyqwest is a Python HTTP client supporting modern HTTP features, based on the Rust library reqwest. It does not reinvent any features of HTTP or sockets, delegating to the excellent reqwest, which uses hyper, for all core functionality while presenting a familiar Pythonic API.

Features

  • All features of HTTP, including bidirectional streaming, trailers, and HTTP/3
  • Async and sync clients
  • The stability and performance of the Rust HTTP client stack
  • A fully-typed, Pythonic API - no runtime-checked union types

Installation

pyqwest is published to PyPI and can be installed as normal. We publish wheels for a wide variety of platforms, but if you happen to be using one without prebuilt wheels, it will be built automatically if you have Rust installed.

uv add pyqwest # or pip install

Usage

pyqwest provides the classes Client and SyncClient for async and sync applications respectively. These are ready to use to issue requests, or you can create and pass HTTPTransport or SyncHTTPTransport to configure settings like TLS certificates.

client = pyqwest.Client()

response = await client.get("https://curioswitch.org")
print(len(response.content))

See the API reference for all the APIs available.

Benchmarks

We have some preliminary benchmarks just to understand how the approach works. Note that these are essentially microbenchmarks - almost all real-world usage will be dominated by the server's time and not be significantly affected by the performance of the HTTP client itself.

An example from a macOS laptop, for async (with uvloop) HTTP/2 with no request / response content

test_benchmark_async[pyqwest-0-http-h2]            23.8466 (1.0)       28.1299 (1.0)       25.3533 (1.0)      0.7858 (1.0)       25.2118 (1.0)      0.6631 (1.0)           5;3  39.4427 (1.0)          36           1
test_benchmark_async[httpx_pyqwest-0-http-h2]      60.2672 (2.53)      93.4816 (3.32)      63.5238 (2.51)     8.0387 (10.23)     61.4938 (2.44)     1.5876 (2.39)          1;1  15.7421 (0.40)         16           1
test_benchmark_async[httpx-0-http-h2]             180.1868 (7.56)     195.9454 (6.97)     184.1702 (7.26)     6.2000 (7.89)     181.3329 (7.19)     5.8279 (8.79)          1;1   5.4298 (0.14)          6           1

Note we see no difference in trends with different content sizes. We see in this microbenchmark that pyqwest seems to significantly outperform HTTPX. The pyqwest HTTPX adapter also seems to bring potential performance to projects using HTTPX that do not want to change business logic.

Testing HTTP/1 allows us to also check AIOHTTP

test_benchmark_async[aiohttp-0-http-h1]            16.7938 (1.0)       20.7214 (1.0)       18.1937 (1.0)       0.7742 (1.86)      18.1273 (1.0)       1.0262 (1.90)         10;1  54.9642 (1.0)          38           1
test_benchmark_async[pyqwest-0-http-h1]            20.2705 (1.21)      22.2955 (1.08)      21.2425 (1.17)      0.4158 (1.0)       21.2635 (1.17)      0.5392 (1.0)           6;1  47.0754 (0.86)         31           1
test_benchmark_async[httpx_pyqwest-0-http-h1]      54.8534 (3.27)      88.8888 (4.29)      60.6263 (3.33)      9.7253 (23.39)     56.7566 (3.13)      2.4687 (4.58)          2;3  16.4945 (0.30)         18           1
test_benchmark_async[httpx-0-http-h1]             308.5213 (18.37)    333.9165 (16.11)    320.0622 (17.59)    11.2062 (26.95)    317.3413 (17.51)    20.1658 (37.40)         2;0   3.1244 (0.06)          5           1

AIOHTTP is comfortably the fastest - if only needing async with HTTP/1, it is an excellent HTTP client. pyqwest seems to perform fairly closely here too.

We see the same trend for sync as well (note sync outperforms async likely because the benchmark is CPU, not I/O, bound)

test_benchmark_sync[pyqwest-0-http-h2]           14.3617 (1.0)       16.8924 (1.0)       14.9348 (1.0)       0.4427 (1.0)      14.8650 (1.0)      0.4911 (1.0)          11;2  66.9576 (1.0)          52           1
test_benchmark_sync[httpx_pyqwest-0-http-h2]     52.0353 (3.62)     100.9097 (5.97)      56.7675 (3.80)     12.0905 (27.31)    52.6683 (3.54)     0.8969 (1.83)          2;4  17.6157 (0.26)         19           1
test_benchmark_sync[httpx-0-http-h2]             97.2703 (6.77)     131.0486 (7.76)     101.3821 (6.79)     10.4656 (23.64)    97.8609 (6.58)     0.8371 (1.70)          1;2   9.8637 (0.15)         10           1

As always, performance tends to vary widely based on use cases and environments - it is important to perform your own testing when concerned about performance for your situation.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pyqwest-0.8.0.tar.gz (469.6 kB view details)

Uploaded Source

Built Distributions

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

pyqwest-0.8.0-pp311-pypy311_pp73-win_amd64.whl (4.8 MB view details)

Uploaded PyPyWindows x86-64

pyqwest-0.8.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (6.0 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

pyqwest-0.8.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (5.8 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

pyqwest-0.8.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.6 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pyqwest-0.8.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (5.6 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pyqwest-0.8.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl (5.1 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

pyqwest-0.8.0-pp311-pypy311_pp73-macosx_10_12_x86_64.whl (5.2 MB view details)

Uploaded PyPymacOS 10.12+ x86-64

pyqwest-0.8.0-cp314-cp314t-win_amd64.whl (4.8 MB view details)

Uploaded CPython 3.14tWindows x86-64

pyqwest-0.8.0-cp314-cp314t-musllinux_1_2_x86_64.whl (6.0 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

pyqwest-0.8.0-cp314-cp314t-musllinux_1_2_aarch64.whl (5.8 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

pyqwest-0.8.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.5 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

pyqwest-0.8.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (5.6 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

pyqwest-0.8.0-cp314-cp314t-macosx_11_0_arm64.whl (5.1 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

pyqwest-0.8.0-cp314-cp314t-macosx_10_12_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

pyqwest-0.8.0-cp314-cp314-win_amd64.whl (4.8 MB view details)

Uploaded CPython 3.14Windows x86-64

pyqwest-0.8.0-cp314-cp314-musllinux_1_2_x86_64.whl (6.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

pyqwest-0.8.0-cp314-cp314-musllinux_1_2_aarch64.whl (5.8 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pyqwest-0.8.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

pyqwest-0.8.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (5.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

pyqwest-0.8.0-cp314-cp314-macosx_11_0_arm64.whl (5.1 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pyqwest-0.8.0-cp314-cp314-macosx_10_12_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

pyqwest-0.8.0-cp313-cp313-win_amd64.whl (4.8 MB view details)

Uploaded CPython 3.13Windows x86-64

pyqwest-0.8.0-cp313-cp313-musllinux_1_2_x86_64.whl (6.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pyqwest-0.8.0-cp313-cp313-musllinux_1_2_aarch64.whl (5.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pyqwest-0.8.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

pyqwest-0.8.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (5.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

pyqwest-0.8.0-cp313-cp313-macosx_11_0_arm64.whl (5.1 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pyqwest-0.8.0-cp313-cp313-macosx_10_12_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

pyqwest-0.8.0-cp312-cp312-win_amd64.whl (4.8 MB view details)

Uploaded CPython 3.12Windows x86-64

pyqwest-0.8.0-cp312-cp312-musllinux_1_2_x86_64.whl (6.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pyqwest-0.8.0-cp312-cp312-musllinux_1_2_aarch64.whl (5.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pyqwest-0.8.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

pyqwest-0.8.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (5.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

pyqwest-0.8.0-cp312-cp312-macosx_11_0_arm64.whl (5.1 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pyqwest-0.8.0-cp312-cp312-macosx_10_12_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

pyqwest-0.8.0-cp310-abi3-win_amd64.whl (4.8 MB view details)

Uploaded CPython 3.10+Windows x86-64

pyqwest-0.8.0-cp310-abi3-musllinux_1_2_x86_64.whl (6.0 MB view details)

Uploaded CPython 3.10+musllinux: musl 1.2+ x86-64

pyqwest-0.8.0-cp310-abi3-musllinux_1_2_aarch64.whl (5.8 MB view details)

Uploaded CPython 3.10+musllinux: musl 1.2+ ARM64

pyqwest-0.8.0-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.6 MB view details)

Uploaded CPython 3.10+manylinux: glibc 2.17+ x86-64

pyqwest-0.8.0-cp310-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (5.6 MB view details)

Uploaded CPython 3.10+manylinux: glibc 2.17+ ARM64

pyqwest-0.8.0-cp310-abi3-macosx_11_0_arm64.whl (5.1 MB view details)

Uploaded CPython 3.10+macOS 11.0+ ARM64

pyqwest-0.8.0-cp310-abi3-macosx_10_12_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.10+macOS 10.12+ x86-64

File details

Details for the file pyqwest-0.8.0.tar.gz.

File metadata

  • Download URL: pyqwest-0.8.0.tar.gz
  • Upload date:
  • Size: 469.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for pyqwest-0.8.0.tar.gz
Algorithm Hash digest
SHA256 138a6a01f5e3bdd92abed412f35bf122b5a7c41cadaffe9c8b3ba0dc2dc5d822
MD5 264c6befe93b02dfa2517ff770cf6236
BLAKE2b-256 cd25305acffe35817ac5dd3659f06bf5c7522cf2d6b1cbfb6e71dfd4e7cf28b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyqwest-0.8.0.tar.gz:

Publisher: release.yaml on curioswitch/pyqwest

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyqwest-0.8.0-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pyqwest-0.8.0-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 bf5caf0e25a26145e08643be9b65831c0a2c9bf6a19d1e6c9b1ad5a2c06cf3e9
MD5 e8e2044503321a9dd5f48965335a9b2c
BLAKE2b-256 c172a12b6109c3c274a5a680f96f4b6b108dba94958075116bca4d3d2ace2eab

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyqwest-0.8.0-pp311-pypy311_pp73-win_amd64.whl:

Publisher: release.yaml on curioswitch/pyqwest

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyqwest-0.8.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyqwest-0.8.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1389bbc67290e848413b9900ab358efae3991a35dc6be5169f65e507e8d4d77c
MD5 b37e2f7a501bcd8f811b7bb20ae55a90
BLAKE2b-256 c740556b7a947bb93ff33787c3d240c7b9d5f107f066663a681329cad4ce2b01

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyqwest-0.8.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl:

Publisher: release.yaml on curioswitch/pyqwest

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyqwest-0.8.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyqwest-0.8.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 91793f0b180f38d0d5eec063b4f791104ee51cd6515791325e644b3b1a02f418
MD5 1298f2fe8e4db7c8730b1f94e2330ee2
BLAKE2b-256 a57c303f32fabcf261afb3a118a95ecb8e68e5be060e9216b1d3808bf9fd1512

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyqwest-0.8.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl:

Publisher: release.yaml on curioswitch/pyqwest

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyqwest-0.8.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyqwest-0.8.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 14423de4e06014bb8549405add86dca1e866b5cd9c335790fcff9eee9263ece3
MD5 0d219e0a8ac3b208b843ba419e493419
BLAKE2b-256 9d1aff28a9af929aec5726448b8ddceffa95c0f4be5fd18d16fe44d8f15e0847

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyqwest-0.8.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yaml on curioswitch/pyqwest

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyqwest-0.8.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyqwest-0.8.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b03c1159c0ae2b45870d3009c79942f70a01e7122810d0eb7a4273f90cd36410
MD5 d7c25095a9acbf381352992bf7a21f9a
BLAKE2b-256 bfe37ef06ad3f5d2f23891e7ceea25132ff9d297c1a079fe420b05db13cd49c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyqwest-0.8.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yaml on curioswitch/pyqwest

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyqwest-0.8.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyqwest-0.8.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9f7fb0e669bd0e5b024d27ed98799c2dc19fd0eb4cdde8b508e887bc0708fa51
MD5 1db599e5a7d3ce5b39d721cfc36b199f
BLAKE2b-256 96eeccdb687682c7b969fb2ce4a87e35e8bb99a75d82c6276c8c62f87de39cc0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyqwest-0.8.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl:

Publisher: release.yaml on curioswitch/pyqwest

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyqwest-0.8.0-pp311-pypy311_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pyqwest-0.8.0-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b93263e0fdc8c8e33bfcb55f1a678acf8cc2d6257d6ef4c4785f0fe32f62708d
MD5 ea541e8345c4cecdad984efe947dbc84
BLAKE2b-256 55d5b047c6fcce7536018169d33e15ad927af9d8581f3f01725303cabaf099ac

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyqwest-0.8.0-pp311-pypy311_pp73-macosx_10_12_x86_64.whl:

Publisher: release.yaml on curioswitch/pyqwest

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyqwest-0.8.0-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: pyqwest-0.8.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 4.8 MB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for pyqwest-0.8.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 ed4b17453cbfe5bfaf9afb646fa4900621f958d9fb488b356b5a819d61b5cfe1
MD5 f7d8055ce93febcffe641dfb7f23b717
BLAKE2b-256 da91fa6805b5d0a85ae8f1633b90c0a1c4c81e8ccc803e4c6ace68f04012a29b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyqwest-0.8.0-cp314-cp314t-win_amd64.whl:

Publisher: release.yaml on curioswitch/pyqwest

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyqwest-0.8.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyqwest-0.8.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ace2147bd302c13997a0baec3eca5a2176aeb78ba1a019564bd78baa72554cf3
MD5 6769effe6297e186cc686300d2a22873
BLAKE2b-256 5407d14c467eddd3d89b561b6891df15af2ace5f20f92e1fc7dfc4d33068f627

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyqwest-0.8.0-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: release.yaml on curioswitch/pyqwest

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyqwest-0.8.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyqwest-0.8.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 18f9fa7543070d31a334970b979bdc58acfde4b163fae8f012dac9cc7122632f
MD5 f690b61c87e909b88c4eaf49d058bf23
BLAKE2b-256 24f126105b8c6209dc13b0339ed2e5d3425476643619595f4d9e74acec9279ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyqwest-0.8.0-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: release.yaml on curioswitch/pyqwest

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyqwest-0.8.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyqwest-0.8.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9445cccde16f4a1ef0409a42677ccbd8350cdde0a407bb3db6353c0f921fa812
MD5 b8f5c402ddf3fd85b86171a845acc75d
BLAKE2b-256 88dfb95b88e31593689d7b3d4a6e2f5550cd686a8648f50b70ec27a2bdbe41a3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyqwest-0.8.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yaml on curioswitch/pyqwest

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyqwest-0.8.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyqwest-0.8.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a47de00287d20233782e391083fa197e89bb531b194131520dd9ec2641b57777
MD5 669e42e5f50a56167895287427d97b4c
BLAKE2b-256 447f738077c5fd9229d61965faa946c2f54ddf90e7f910162fca2f07763107c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyqwest-0.8.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yaml on curioswitch/pyqwest

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyqwest-0.8.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyqwest-0.8.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 19d58b0f0ca2d21832c26aa096954283b57404515bf196df5b2ec894111ccc1a
MD5 4818e9fb662b302bb0074a0a16d93837
BLAKE2b-256 8d218b8dd86ee0b96672c2338816957c285b71db08a90848db68c8b937c9c0db

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyqwest-0.8.0-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: release.yaml on curioswitch/pyqwest

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyqwest-0.8.0-cp314-cp314t-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pyqwest-0.8.0-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 778ce6f447d481913c787a2ee8d8623ac0b1fe673281c686f6b99e8689815857
MD5 bf2293b5920436398391bce6f1bca5fd
BLAKE2b-256 01c6208138925d0e25f1c4cf4d8b5949ed590ecc71098cb1968152627a0f91fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyqwest-0.8.0-cp314-cp314t-macosx_10_12_x86_64.whl:

Publisher: release.yaml on curioswitch/pyqwest

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyqwest-0.8.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: pyqwest-0.8.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 4.8 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for pyqwest-0.8.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 6b076960044609de8611961609b3ed00ed8dedf1504d957d7c3f354e64ed6ce9
MD5 3f2a21c174c6fe85ef538f9c2eadad60
BLAKE2b-256 f1f043f650ea9c68c6a4251c6e0d5ae02f7aa4e7bd35d7ea6c5ebbb15f9af2d4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyqwest-0.8.0-cp314-cp314-win_amd64.whl:

Publisher: release.yaml on curioswitch/pyqwest

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyqwest-0.8.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyqwest-0.8.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 44f0a713a3414f50123aab649bd2591dac0264b150778f10934a28c5e11d27f2
MD5 8f319b5a8fae8461e0344551d6f2bbcf
BLAKE2b-256 751cae5377a9cf7e0da2389b76d092a67cfd0e0ee58d6dd0ecc9eee2d1066a5c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyqwest-0.8.0-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: release.yaml on curioswitch/pyqwest

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyqwest-0.8.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyqwest-0.8.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c27059c54a5ead5922f4599e31b9c727cf0bf4343be813fc64695a4b7bf24dec
MD5 f3a986647d82914c379664595749898b
BLAKE2b-256 225f3b60ffa85a2d4ca1218d40fc00d60ff32dc0777a01e1299376ebdc76f48c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyqwest-0.8.0-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: release.yaml on curioswitch/pyqwest

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyqwest-0.8.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyqwest-0.8.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dded7f50f96e53a978784db7ceab4a7e7ff7529fc94b804603e0a3cfd5915162
MD5 6c2ee30c0ba68619af319e1f48f17b11
BLAKE2b-256 a85c150e91e8d58ae22522b77de8a3a28295b484e7676ce689c33f2182db10f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyqwest-0.8.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yaml on curioswitch/pyqwest

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyqwest-0.8.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyqwest-0.8.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0fd49b8955cf167efa828052c0a08a00fa29b45f712d60f75979187cf0a7342d
MD5 4185863cd651bf8bf4bf0e17c658e874
BLAKE2b-256 70d975f20faab72384780946107de99f1f5a98b5486462861defe4050bad7b03

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyqwest-0.8.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yaml on curioswitch/pyqwest

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyqwest-0.8.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyqwest-0.8.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 51195116f455d027348a53a04af0463b6657ebc514a311c5952df0134de14ea8
MD5 884fa6533cc01308059d122bf96ae7f0
BLAKE2b-256 3db3071af07d1d74910a9efb5c6a9e93823534aac8f56f446b8984a42660ee58

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyqwest-0.8.0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: release.yaml on curioswitch/pyqwest

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyqwest-0.8.0-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pyqwest-0.8.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8b33afc7289534488968b3ee95fc452724cb20c0b9dc64bd432f9eadd7f8e86b
MD5 08785982ce2f7dd0264b2ae5582c5215
BLAKE2b-256 9fe364b5bc3152c8201864b09d398843ed4a4fdf5e66eb951ca0d4a4eddc6f13

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyqwest-0.8.0-cp314-cp314-macosx_10_12_x86_64.whl:

Publisher: release.yaml on curioswitch/pyqwest

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyqwest-0.8.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: pyqwest-0.8.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 4.8 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for pyqwest-0.8.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 568be49f10da2bdc97482093f713f36b6f3b7b4392977044c942b18b32eebceb
MD5 e5208d4227752b28eef7c3fa7a546b3f
BLAKE2b-256 fc9582a428e536b1bc1fe655f22ade122f55c476c3d06ee6c8223fe32de124ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyqwest-0.8.0-cp313-cp313-win_amd64.whl:

Publisher: release.yaml on curioswitch/pyqwest

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyqwest-0.8.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyqwest-0.8.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c2d8f4057b8bd3c540c4d0b596b8110e1d49d7a06be46de6dd0db864e2238b4b
MD5 872815ad6ec75d74149b9f352ea51867
BLAKE2b-256 bd8956c3543dd06d7ef19d54c4d698455ed9f32cc779b42b896d46149a6f73f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyqwest-0.8.0-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: release.yaml on curioswitch/pyqwest

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyqwest-0.8.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyqwest-0.8.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 29cd8eca7aafa14b6ef164c4360bad0db155c68ac16bc907bbadc9a414ea4b5b
MD5 d708bab348bbeee90e44784dd62f7a9b
BLAKE2b-256 4418da3f1469ba6866a695c510a287debf30034d84cc93f8cab021bf930834fb

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyqwest-0.8.0-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: release.yaml on curioswitch/pyqwest

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyqwest-0.8.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyqwest-0.8.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c44c266a84125017b09c89199d6355c6eeffaf381bf46670c49ec46353d9e5b0
MD5 70ab19f1cf0e3f7a6565f096a150614d
BLAKE2b-256 cde9c36af7b2b34364fe6abc0737f8ae47bed87377c87e2a035e0429a716477a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyqwest-0.8.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yaml on curioswitch/pyqwest

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyqwest-0.8.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyqwest-0.8.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6db97734f909d865115e45c213a983a3f0a0b67697fe2937779df92a07827aaa
MD5 e09facffa9c5044686beb1bbccbfd0bd
BLAKE2b-256 0d320c05267a312102f8840e1e08350382f6f46be7304d84e6cb9b19317e107f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyqwest-0.8.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yaml on curioswitch/pyqwest

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyqwest-0.8.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyqwest-0.8.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1aabb09561a75e16d38c83d341fa3ec1c5009a7f91f300f620493e885ac1fb25
MD5 2382e4486be3300bdb5600c7ead7f8b0
BLAKE2b-256 aebe55f23ecbf28c247b856caec896c5ed301ccb9e4f96e3aaa193174182e032

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyqwest-0.8.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: release.yaml on curioswitch/pyqwest

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyqwest-0.8.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pyqwest-0.8.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 aa840884e19a5777159d99c9bcc38b2f0f536484dfa0edbc4041a50134afc6e5
MD5 fa161e5ab8e022963ab4964e772e881c
BLAKE2b-256 ad4096900a0797bf6fcf281de0f8e9cd612e13df983cc5f9ce7aa2bd21d1ecab

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyqwest-0.8.0-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: release.yaml on curioswitch/pyqwest

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyqwest-0.8.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: pyqwest-0.8.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 4.8 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for pyqwest-0.8.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 5b605cb927b5bbd0b1247a5439d90068fee84802003bd6609c48e985aeb15570
MD5 155f685c1e42ad6d94776963ee8de1f8
BLAKE2b-256 0522db95030afe6c5adc90b2864e194d8074175675a90703282286e3370ecd53

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyqwest-0.8.0-cp312-cp312-win_amd64.whl:

Publisher: release.yaml on curioswitch/pyqwest

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyqwest-0.8.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyqwest-0.8.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4471266ff506d02f21350921abd0adbaa08d6b7db6d24408c2ed9635e187e263
MD5 54ae03b7833b99f9c00e3581aa956ca6
BLAKE2b-256 454b14a30458a69e6f1b8e007ff6bd6fdf867cc28de45d046374f45087d31fd8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyqwest-0.8.0-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: release.yaml on curioswitch/pyqwest

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyqwest-0.8.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyqwest-0.8.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 37ebb0bfeaa5a6b5c6ebd1cfdbb3e4d89ac343e46be07a993e8af6473ee82b1b
MD5 6d009851a76311e1911849852a8018a3
BLAKE2b-256 ea662f130d7dc3341112f1a620984d4af17cacf2a17085a1eaa98dfaa35da028

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyqwest-0.8.0-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: release.yaml on curioswitch/pyqwest

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyqwest-0.8.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyqwest-0.8.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7988aeb1dce1ee0d3dbcf9d6c8d3a2a821d9c56402c95c057567363ed01116c0
MD5 e4933cfc81dfdc0b6980459ca7643cd5
BLAKE2b-256 39af6835aaeb451f629886bae0b924a864b73b906c84944be37fea43298c163a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyqwest-0.8.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yaml on curioswitch/pyqwest

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyqwest-0.8.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyqwest-0.8.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ed43c61eebe85aa078ff922378aac9904c9d0be06c99da5826c865c28f8468dc
MD5 d20853f84e15a1a87a789ea3b06543b6
BLAKE2b-256 5b7ca5c49001dc0685043512c5497a7820fe091d765f93a730ace81708ed8f5e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyqwest-0.8.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yaml on curioswitch/pyqwest

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyqwest-0.8.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyqwest-0.8.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 63f341cf695b9c8b9b184a0f1c67f6e578b833502f1f21a9359f031b5b77a627
MD5 a551cb3d1f6fef593001801c8d716cb7
BLAKE2b-256 508525c440e1dc31320afa9de8a3ab43b0bc6f5ef5090e43fac350b5de4db623

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyqwest-0.8.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: release.yaml on curioswitch/pyqwest

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyqwest-0.8.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pyqwest-0.8.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c4970ad95d4d51aa07980687d07e1f4003b68bc1fa1e46c9202f1b008c95662e
MD5 505f997bf575fe6054867f6db674dd14
BLAKE2b-256 2e49c0640e19718c4533590bcaba647ad3145f793c66c125cb62c399e580b1a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyqwest-0.8.0-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: release.yaml on curioswitch/pyqwest

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyqwest-0.8.0-cp310-abi3-win_amd64.whl.

File metadata

  • Download URL: pyqwest-0.8.0-cp310-abi3-win_amd64.whl
  • Upload date:
  • Size: 4.8 MB
  • Tags: CPython 3.10+, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for pyqwest-0.8.0-cp310-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 7896646bd426db0cbd7a5d4ebd0dacd59f1a2c3cdc12fb2667234e9504e33b03
MD5 b2bc38813e9386ca923b30ff03870bf3
BLAKE2b-256 4414a9d883fc59df1f34fe42764277ca26de11d74dd3aa3d9f9f4a35d7414f37

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyqwest-0.8.0-cp310-abi3-win_amd64.whl:

Publisher: release.yaml on curioswitch/pyqwest

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyqwest-0.8.0-cp310-abi3-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyqwest-0.8.0-cp310-abi3-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 513fe7649d727cccb5d6e04999e91fed5f61f5e20a8556a2f96d3d1aeea02001
MD5 8b0d4c1dedfbc804d5811c2a03515996
BLAKE2b-256 1ce51b1bae527e4de93b9eddbf15a78f1ce5198aece5c169478e385364e0f1f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyqwest-0.8.0-cp310-abi3-musllinux_1_2_x86_64.whl:

Publisher: release.yaml on curioswitch/pyqwest

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyqwest-0.8.0-cp310-abi3-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyqwest-0.8.0-cp310-abi3-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1c25504a5fe4d72f43b17253c9e1dc4cda426e9fa0a72474c4555455f63706c1
MD5 2243f727fb9494c7941a1adc5cb879ae
BLAKE2b-256 d836d5ba098c323d7f5eb9cb9ebf075060d14c3364bf176d9815655065462bc7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyqwest-0.8.0-cp310-abi3-musllinux_1_2_aarch64.whl:

Publisher: release.yaml on curioswitch/pyqwest

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyqwest-0.8.0-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyqwest-0.8.0-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8bcd1edaa837e136af6982c31c17100a16b6e4918e7237a34229928754edae35
MD5 865c03dacac8541393963b27cc93fcb5
BLAKE2b-256 dc12d5b2e201ca3c374174644fbf201329ff6635ebabef0fcc49701f8d168984

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyqwest-0.8.0-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yaml on curioswitch/pyqwest

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyqwest-0.8.0-cp310-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyqwest-0.8.0-cp310-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a8d948f99dc80e1d4879bbfb4ff073e1d7566dc307d483f6857907b9b634631d
MD5 7f7006eb2b75869201419d11e664d0ba
BLAKE2b-256 d9180b0d177754b337afaf9b7d7b0de476ae250bab3bbf105568211fa83da2d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyqwest-0.8.0-cp310-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yaml on curioswitch/pyqwest

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyqwest-0.8.0-cp310-abi3-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyqwest-0.8.0-cp310-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 afe8a86b28ef637b85d2239758f91ef3acdb01bd569fb8abcb4ec70b368fd2d7
MD5 50bdb18c0f2d2ce8de7b946760baa77c
BLAKE2b-256 fd0cafde50b6814e6c053237fb6182f3ffcbe6562fdbfd0c44b6b6589cb37ea7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyqwest-0.8.0-cp310-abi3-macosx_11_0_arm64.whl:

Publisher: release.yaml on curioswitch/pyqwest

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyqwest-0.8.0-cp310-abi3-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pyqwest-0.8.0-cp310-abi3-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2976d8fc93b7b4fdb9bfc7ad231e6584d81b9777ad88c8256e02cfa8b690364d
MD5 711856922ab951067dcd91a370f75085
BLAKE2b-256 9e3876280a079b0f84dcc05c14eba16b6cd39bef9e8aa0a51e916abf71fea637

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyqwest-0.8.0-cp310-abi3-macosx_10_12_x86_64.whl:

Publisher: release.yaml on curioswitch/pyqwest

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

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