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.7.0.tar.gz (458.0 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.7.0-pp311-pypy311_pp73-win_amd64.whl (4.8 MB view details)

Uploaded PyPyWindows x86-64

pyqwest-0.7.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (5.9 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

pyqwest-0.7.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (5.7 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

pyqwest-0.7.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.12+ x86-64

pyqwest-0.7.0-cp314-cp314t-win_amd64.whl (4.7 MB view details)

Uploaded CPython 3.14tWindows x86-64

pyqwest-0.7.0-cp314-cp314t-musllinux_1_2_x86_64.whl (5.9 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

pyqwest-0.7.0-cp314-cp314t-musllinux_1_2_aarch64.whl (5.7 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

pyqwest-0.7.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.7.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.7.0-cp314-cp314t-macosx_11_0_arm64.whl (5.0 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14tmacOS 10.12+ x86-64

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

Uploaded CPython 3.14Windows x86-64

pyqwest-0.7.0-cp314-cp314-musllinux_1_2_x86_64.whl (5.9 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

pyqwest-0.7.0-cp314-cp314-musllinux_1_2_aarch64.whl (5.7 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

pyqwest-0.7.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.7.0-cp314-cp314-macosx_11_0_arm64.whl (5.0 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13Windows x86-64

pyqwest-0.7.0-cp313-cp313-musllinux_1_2_x86_64.whl (5.9 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pyqwest-0.7.0-cp313-cp313-musllinux_1_2_aarch64.whl (5.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pyqwest-0.7.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

pyqwest-0.7.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.7.0-cp313-cp313-macosx_11_0_arm64.whl (5.0 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

pyqwest-0.7.0-cp312-cp312-musllinux_1_2_x86_64.whl (5.9 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pyqwest-0.7.0-cp312-cp312-musllinux_1_2_aarch64.whl (5.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pyqwest-0.7.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

pyqwest-0.7.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.7.0-cp312-cp312-macosx_11_0_arm64.whl (5.0 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.10+Windows x86-64

pyqwest-0.7.0-cp310-abi3-musllinux_1_2_x86_64.whl (5.9 MB view details)

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

pyqwest-0.7.0-cp310-abi3-musllinux_1_2_aarch64.whl (5.7 MB view details)

Uploaded CPython 3.10+musllinux: musl 1.2+ ARM64

pyqwest-0.7.0-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.5 MB view details)

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

pyqwest-0.7.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.7.0-cp310-abi3-macosx_11_0_arm64.whl (5.0 MB view details)

Uploaded CPython 3.10+macOS 11.0+ ARM64

pyqwest-0.7.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.7.0.tar.gz.

File metadata

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

File hashes

Hashes for pyqwest-0.7.0.tar.gz
Algorithm Hash digest
SHA256 ac65f2243f3e814e7f4aad3f2fcfe78f89aad2de2a825eaaabf4c102f1937843
MD5 0a8e6c5454772fa686347acb194e2ef4
BLAKE2b-256 01058576f0eeb44d3fe14c70e2bafa77ae6930c5e6f42b93c568719ea4456715

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyqwest-0.7.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.7.0-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pyqwest-0.7.0-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 2ea1ce4d630c92cb2cc6b3bf91ada0053b051dfd5c0662d89957ebd829cfdcce
MD5 3d4155116b81bba741a0c7cfdd4b20fe
BLAKE2b-256 077c4a35df79a142e5fcb5f46fce2d1d70dd72325a65db4139bbba4fbed0d9b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyqwest-0.7.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.7.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyqwest-0.7.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4bb3cf0975ee829b6c76e1c42f01863122ce71b1a952e507e260a9d29eb9b183
MD5 cdecd1586b230a9ae1965d3dc77254a3
BLAKE2b-256 8446e0f2a02ebf504db6bdf4bf343f0d3362eccf8dd5a325382fab1305fa7022

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyqwest-0.7.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.7.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyqwest-0.7.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e1548708dbeb29a60db199c70b9e93733d6b334e7efa1dfa5e3846a4f890db6d
MD5 0314334a43e3ca8ad3ab699e18d5f5ee
BLAKE2b-256 4813c070baf81da8653803328b632baddb5647b66cc7c6353c58f024ca82277c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyqwest-0.7.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.7.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyqwest-0.7.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fd2e9bfa81198db7023202962a94920986a9a3dd12fe2f9d310f0cfcdddc092c
MD5 ce9003de7353b17edee1b091971bd0c7
BLAKE2b-256 39a47dd4d548be6d54b195d737164dc67c39d9c5df40aa76a873fe1d2d9b4426

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyqwest-0.7.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.7.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyqwest-0.7.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 02ff96a7746de208a4b8c78abe780c413d66576146a4ec64efd348b0c8a8328c
MD5 a21272d27e1de0acc3ec5834948bf555
BLAKE2b-256 0d59e3d8cfd2c7be0e12773ee4f767efc03be50ccdd28c6155d0b176bf1d8a9a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyqwest-0.7.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.7.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyqwest-0.7.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 37623b492aea7ccd3b6cfe3179110643d28c2cdc83c765aac3d207b4321995d2
MD5 8be6d60b49425693af67c97c86d75067
BLAKE2b-256 dcbc1aac42f34bd3e5ac4c13a2c267dba6bda4bdea594ff96c7851dff930c8f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyqwest-0.7.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.7.0-pp311-pypy311_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pyqwest-0.7.0-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 bebc51e3c9c6339d81964c6e60516a5f5c9fe793c82da57ef7c2d87a55741829
MD5 76b3a248f9fdcc1c980ef8d9bb833ca7
BLAKE2b-256 ed4226cf547b2e43078b4663e717715a289f31fc873d65d45cf354f364faa744

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyqwest-0.7.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.7.0-cp314-cp314t-win_amd64.whl.

File metadata

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

File hashes

Hashes for pyqwest-0.7.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 a599ddac7ded32ed62d15ca90bc9c77652ba34b225cf17a404821cec92a189fa
MD5 884f966a1119769db65cda747df2a29e
BLAKE2b-256 82a796144e6db9a49eb5e42734562ac5d387c2b78fe1142674d3a284ce188ef7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyqwest-0.7.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.7.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyqwest-0.7.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 da3bc117c1380e9577994da15b8236f7c3bb400111d6be4b57a9b2e4f30c9a79
MD5 3208f3b0ddfe30826cd13360f5968b96
BLAKE2b-256 f463c5be988c55c69c87de950e3dabab322f82a78dc7c2ebdf89af32626bd473

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyqwest-0.7.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.7.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyqwest-0.7.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ca02089249c292ab9c148fa86c06927701897090226a13e392a6ec53312380ea
MD5 77222451fc482a58df703ed55b0074b8
BLAKE2b-256 6c91f25477eb80c375378a876cf2bac80c55ec9ea36b94bd7d4b2b2931860c85

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyqwest-0.7.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.7.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyqwest-0.7.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 005ddd2a777d30ca7ce4de12df1336760e14d46394ab56299a9e81626d78b991
MD5 0315c41f72e3ae550745fb7334ec138e
BLAKE2b-256 41ad18b4540fb276f9b540018efe024aca0801acfe4209417d4faed85bccdb04

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyqwest-0.7.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.7.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyqwest-0.7.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 86d84871cb0a572700dece3a6c45c294721f655f3d0b85477333209b487ecef1
MD5 03c567c60aa4993abda5a73bf51083b0
BLAKE2b-256 e515ee84ce834705d613c0b113fb4cf9d274011cfcc6c6ededb52d92a38a2367

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyqwest-0.7.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.7.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyqwest-0.7.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a807835c6a0777f0cc57c321c78c7bf162f6354698844d78db6e03ba9edd83dc
MD5 dffcb8dedd08264273dd36e593e19653
BLAKE2b-256 f4fe90126ac71fe09c729f36c166cb71b5148dd8a80e47f6f232bf71494604a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyqwest-0.7.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.7.0-cp314-cp314t-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pyqwest-0.7.0-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 02fd606a35be7803a770071f642a375e55df4c2025e49b10b859430f424c4492
MD5 ec9c1cd9ed1cc249f609db1392c4748c
BLAKE2b-256 921de2fe3dfe6d87989017412f394abc45435a3af2526e998c83cf836937b23c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyqwest-0.7.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.7.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: pyqwest-0.7.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.13

File hashes

Hashes for pyqwest-0.7.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 7330070c4497e564007985716ac347cb9a7500eba5c9610500653a2ce4cfe86e
MD5 1cadaf9049644a7e711163a53a59574a
BLAKE2b-256 06a0983ea3b859828bef8372896e9c407f62bf426b84526d0b0cf9fd9abce411

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyqwest-0.7.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.7.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyqwest-0.7.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5832373c7bcccfbc3bb79c44b592e0871631139a2ef5aef771b8fe2b7bd4301d
MD5 a448016de224fe0b1cd8f06c844edb70
BLAKE2b-256 16cc58dca466c236e497cbb2e75b97a2489225d21f5063d932ab7d1723294112

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyqwest-0.7.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.7.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyqwest-0.7.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0d11128ccc382f64fcdf92d3bce6be7191489c1b3a9a3f0dbdf89e55451638de
MD5 f6c1ef858366aaea6ea3829fabc601b0
BLAKE2b-256 0034ccec52ca9f14fbe11292fadbe89c771353e0f46d58aa88d8e93d6e018117

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyqwest-0.7.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.7.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyqwest-0.7.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e4c2f6a6830becfa1c5bb94aa169ad854da5749a95a440aee759932d5965c213
MD5 fc074d6133451d18b107b31468a6a992
BLAKE2b-256 7f17a0a09936b5dd5d9d7517289aee3683bbf6554b0853bce5280ead9da27336

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyqwest-0.7.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.7.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyqwest-0.7.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5ef1bfbdca9ec9c8a7b223268f5ef8d45694da7226929454b0cb40f2e3d1ddd5
MD5 4cb2b79891ef54f15cebd46827a67d35
BLAKE2b-256 82b0406c91563140b87ade5c5935410997b26449b8eb2f91511bc52741ae38fb

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyqwest-0.7.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.7.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyqwest-0.7.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1bc2c569481ade1bc0b89b07daf1b49b20a1337a53207ffe0ef325260f509404
MD5 293fc05de3e3f3519f42b37fbc701631
BLAKE2b-256 5212d652213fe336c52b75fb4df710f5cff08f8a1dcc9e385c9120f18476f5c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyqwest-0.7.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.7.0-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pyqwest-0.7.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4e4e79187c3e4ebd07d663d8dc7a7cba865c72020332e41807426a7e3526fda0
MD5 3c9b2427ccb21a979657c574930369f3
BLAKE2b-256 dc258b0919bf504309982857e564e3035ffd799d7aaa23457eb351485573e5ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyqwest-0.7.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.7.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: pyqwest-0.7.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.13

File hashes

Hashes for pyqwest-0.7.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 ca19e96b5e902a6d35e18cee7f5e90612fca6ab169378d42242cdcb638578cee
MD5 5cabc1fee7d675b1338c527a5c86c95e
BLAKE2b-256 51d3bf9440a03c97f408743313215d8c7e9875b0b2b0d2ef97f5fbb5066cd57d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyqwest-0.7.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.7.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyqwest-0.7.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e21102f9c13234a0066d42bb5429dc5c311d7fd99401878837d9675a7f6e03b9
MD5 0dc0ef90d2f6164b2c62b87b0c14638a
BLAKE2b-256 2e936670afb97c6ce7b5ba27981e023d9edc7413e509bbe18afebb729834d9e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyqwest-0.7.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.7.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyqwest-0.7.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 31176abbbcbe6d03740967b5c0241deaa60b328792644cb2e317a34d6b076433
MD5 2093e05b6d1113c0c27141096d08a742
BLAKE2b-256 493f329df64d3e8778bc311a22e432280cd317619c3f9b7e414f375127bb90b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyqwest-0.7.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.7.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyqwest-0.7.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 418e8c3a67ca6226bfb6147b8668203c74d9c872657117086f4c264a674d7980
MD5 9897adfd8973243fecb66d40eb22129a
BLAKE2b-256 e65d6726a70e89c60bf3cd30d5d918eff68dc1d1ceb9c911331d7fb57977bfc3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyqwest-0.7.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.7.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyqwest-0.7.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 837e18aef4490eed25b4194d49f16732ccf1abf2cdd0845e75d75d2a4428b98c
MD5 3596f7239e5bca2430f7503faa0e24c4
BLAKE2b-256 443c132194c747696e41ad5745c51587bd20057d800b6a64fb901ce2ac990149

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyqwest-0.7.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.7.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyqwest-0.7.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 03da0797bac5c2eb1a40f02afccd4b5aad5ad0d375bb993df2f5e0c692fc0c6c
MD5 ac723bbe164fea72858146433cac003f
BLAKE2b-256 14d146e629541a3f7231dd978fa9939e6ddcd075238880395bcfb16544769165

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyqwest-0.7.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.7.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pyqwest-0.7.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 72d001892ed570df1dcc489ef8b0a03bc7abd4fbdca10625c358a87e66b226ad
MD5 4b4f56b354c104cd5be7c7e8eed93dc7
BLAKE2b-256 c19c64c8df83a152804ac3074fb879c1229c3aca55a12dc33dc73c72e93405e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyqwest-0.7.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.7.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: pyqwest-0.7.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.13

File hashes

Hashes for pyqwest-0.7.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 196aa73fb7eee4b6c052d6f4172a4321904a7208331f4322ccee3ee7d0adbc78
MD5 b5751cde6de605dc437ba16e07408b35
BLAKE2b-256 6a801b280618af3f9d36081449d153efc5620f0eea93ac169574fc69208d2b91

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyqwest-0.7.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.7.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyqwest-0.7.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 537f71f97a533fa355d02c15ed9f0cc05fb8915996cb921caa87fe7310b457ee
MD5 87e6f83194ce7731f27387597cc6b514
BLAKE2b-256 267b5891b72b9193b692b50ecdc4e26e7e3687f9763f5f263646bc8f997f5b62

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyqwest-0.7.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.7.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyqwest-0.7.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9dc2f405803b94525ab030c01cdac7093bcc1a5da6802de3345a868a0f51b3da
MD5 4fcbef38d5b4a0e990effb574ea51414
BLAKE2b-256 c0a669b87c4c80ced01645a143679458895dcb5c0e5ca0b3d4a43d979939cce6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyqwest-0.7.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.7.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyqwest-0.7.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0f82c971810695f5fd7962859a2469616c83b7aca6664d8f147287ee5ff430cd
MD5 d4dbf34b59d32524b5de207b76f3b77d
BLAKE2b-256 c08fb67d0056b18a9f99a1c9253cb983d5c4361e3e102d729df6623b71d6d939

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyqwest-0.7.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.7.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyqwest-0.7.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f6fdc0601590bdc547007828627082f0dc0e445e92d900dccb227e51898d7243
MD5 bf8653e6074b59fc979be3738a7207d1
BLAKE2b-256 4d52eecd858568ef6586cbdc3c419a9a0b1e8f891e2968f0f6b2a9fa9bdaac19

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyqwest-0.7.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.7.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyqwest-0.7.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dfb61138c802c7317d840a274fa24f9d878301f693268e9186a9896452017a71
MD5 6e0a4df2ec320b11dce8325033f9e1ff
BLAKE2b-256 d6681b340fdc7735b5682d308cabc2d65ea76c03a6cc2c30072a0c14c24f716c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyqwest-0.7.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.7.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pyqwest-0.7.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4988fa1c368072886dce48f52fcbabe9f25784c6e189a9a6f2b42f6e9f383973
MD5 71cdb5124568bc8e6e6c5eb745d369e0
BLAKE2b-256 b338c493e85ebd17d3a5c56eb53fbea36a1a6f396b999b38173ffde513576eb1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyqwest-0.7.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.7.0-cp310-abi3-win_amd64.whl.

File metadata

  • Download URL: pyqwest-0.7.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.13

File hashes

Hashes for pyqwest-0.7.0-cp310-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 847e4468b5379a219b91a13dd3c92dd3b7b3d9f59af23e4c6776e663594cb241
MD5 dff882bb5e70f0c887efcebedce01b9a
BLAKE2b-256 ebdba1368faae1cbd094a0d179b76de69b8d1908bd45898d3bcd29ac98622072

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyqwest-0.7.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.7.0-cp310-abi3-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyqwest-0.7.0-cp310-abi3-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c002e0fc31a96f1c47986299710f49ed4551e4a912a7cdb69aba6fd94db6d544
MD5 401aa69f26b4be5cfbeb735203aa0cdd
BLAKE2b-256 1906e30c0d31eea17cabf99ef90c7c02e14cc94ca7d59793d397de9359148693

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyqwest-0.7.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.7.0-cp310-abi3-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyqwest-0.7.0-cp310-abi3-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d1c71327c323a19dc90a0dafb1d68fb13f4f775a2498a26bf95f17165e64da9f
MD5 f2a28c271a9857cd2a3078de391ee70b
BLAKE2b-256 336d2984aa02f4d0296dddb5df159e1af6c6e0ddc0b507d592f13d6ccd0b3162

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyqwest-0.7.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.7.0-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyqwest-0.7.0-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 da43c7e86bee9e74ff474d4829cd398fb9220ff0d84d633094ea6797fdfe03a1
MD5 4343779abd13b3e93f298f9f4ad8a4ce
BLAKE2b-256 f23d603f5c9446e8c13a4970b816246d7928e895408a7ed1778d98de3e25ea43

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyqwest-0.7.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.7.0-cp310-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyqwest-0.7.0-cp310-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0a826f1b492a7497f469c8467bd51faf582733654bb2bc9fcdd4fa502f3e6ca1
MD5 fd1a5c2d22cfca1a96f9f702b71ad3de
BLAKE2b-256 fe0645908e5cda7fa28ba60df5ed2091056893c394c3217a796bc6577c4bd294

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyqwest-0.7.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.7.0-cp310-abi3-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyqwest-0.7.0-cp310-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2159c7e2eaf2563cdadfda17314e2b1747c30603979bf73db8daef311247db82
MD5 045210a4d659a5d01e78ead33a024c66
BLAKE2b-256 20f14aba1976566936ca873e1a726a0d9bdf8195a0dc4e4f78122f6050328566

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyqwest-0.7.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.7.0-cp310-abi3-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pyqwest-0.7.0-cp310-abi3-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7b2339f3b55ae179e0cb55bbd5792ae1c954d31f80de7b4dde0e95b03576b6be
MD5 6b2968a74a73b9e682ee8da1aedbf773
BLAKE2b-256 86497f26a2c2a3e8bbab4862bcbf4f54b706d9524fa9705cc0127553b81ed161

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyqwest-0.7.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