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

Uploaded PyPyWindows x86-64

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

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

pyqwest-0.9.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.9.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (5.6 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.12+ x86-64

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

Uploaded CPython 3.14tWindows x86-64

pyqwest-0.9.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.9.0-cp314-cp314t-musllinux_1_2_aarch64.whl (5.8 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

pyqwest-0.9.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.9.0-cp314-cp314t-macosx_11_0_arm64.whl (5.1 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14tmacOS 10.12+ x86-64

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

Uploaded CPython 3.14Windows x86-64

pyqwest-0.9.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.9.0-cp314-cp314-musllinux_1_2_aarch64.whl (5.8 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pyqwest-0.9.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.9.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.9.0-cp314-cp314-macosx_11_0_arm64.whl (5.1 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13Windows x86-64

pyqwest-0.9.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.9.0-cp313-cp313-musllinux_1_2_aarch64.whl (5.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pyqwest-0.9.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.9.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.9.0-cp313-cp313-macosx_11_0_arm64.whl (5.1 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

pyqwest-0.9.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.9.0-cp312-cp312-musllinux_1_2_aarch64.whl (5.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pyqwest-0.9.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.9.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.9.0-cp312-cp312-macosx_11_0_arm64.whl (5.1 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.10+Windows x86-64

pyqwest-0.9.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.9.0-cp310-abi3-musllinux_1_2_aarch64.whl (5.8 MB view details)

Uploaded CPython 3.10+musllinux: musl 1.2+ ARM64

pyqwest-0.9.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.9.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.9.0-cp310-abi3-macosx_11_0_arm64.whl (5.1 MB view details)

Uploaded CPython 3.10+macOS 11.0+ ARM64

pyqwest-0.9.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.9.0.tar.gz.

File metadata

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

File hashes

Hashes for pyqwest-0.9.0.tar.gz
Algorithm Hash digest
SHA256 514dd0b37d7a1bcb978b5d6423d15f89cf7dcf8058ac2a37aa42cd30090de89e
MD5 c40f803a0d7524d9e36703921881faac
BLAKE2b-256 8d5997531fd9d0a06d54e84f5493775739b0c1d0d13ec704974d04fa423a3332

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyqwest-0.9.0-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 fbff11bbffb572c084ccd76048c40bd57976b255d34f59280e56626f556cfaeb
MD5 899bf40327877b8db5b9890e943600d9
BLAKE2b-256 142691891131d47e1d9ad652ae6ff010bc9169ab051f20d888cd3471d87f070c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyqwest-0.9.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bfb04e3e91166fe6e4eecdcfccb0b2490da7629984b7988cfd4b11daa1dbb616
MD5 a28dd625ebe63f44ea901f026e3127bf
BLAKE2b-256 0ba4389a32479767cba432451f2913ff55bcab13981c5cf561028aa54ba97ae1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyqwest-0.9.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a0bc2ba9b6d3103c6f0cce59cca9e2e294d1707bca435b471a1917db73010801
MD5 a0e91b046a796318ccae03d6074dd6ff
BLAKE2b-256 0ac9a261dbf9a4fd3cfa790221957c5cbe0d52e75ff7403dd91254aa977164b1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyqwest-0.9.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 869d1c630cbff38510207c5b57139f319acca21ed978f9ce6648fcd868df5fbd
MD5 827c86fdc04dd4c4453811b25c66d524
BLAKE2b-256 5c3ae568f9cf9ff75ca45ce7323ac916d076f9f4df4e957404ff0f0d3286dbe0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyqwest-0.9.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b3fa3c93638fc645c7c626fe83032f53972673581878bd85702842f41665ad6c
MD5 66b68f74e4667cfe15d2533bdae89c03
BLAKE2b-256 3695d1a88c8115c88f843b907e3d3bd1958eaef851cca023a47bba4257d974d9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyqwest-0.9.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d5e56192b03bca7ec511c9af4ed80fa10fc1c1871d0ccfe49050632785b46099
MD5 ada8250e444ee77635d940070a67da82
BLAKE2b-256 cc809d98ad770043e5dd3ad7b765f2acf911bd11b113e0280565277d2e707864

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyqwest-0.9.0-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0c174d8ebde256c457f455dcdedf59446528d84874cb5967041be0d1bda05929
MD5 e9203ea4e2fbdd2cd09e9d199bf05b18
BLAKE2b-256 d04e46822676c7cfafbf510f2af84b510b6f3dc1f3c4df781a837ff75c7410fc

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyqwest-0.9.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/7.0.0 CPython/3.13.14

File hashes

Hashes for pyqwest-0.9.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 384693adc0908f16324e5b508a3c25fb9a92b88f9bdf7ccb6820507db4a95888
MD5 3ea78407f6161d558888d55d5e867150
BLAKE2b-256 11de30575019efebae84502269d097e706e89a30631e3719218b053e4e0dc179

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyqwest-0.9.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bc9dfeca326918d70a5368114de0fc627d9f64fafa36563ab484ae58ffe42c0d
MD5 59e0d9e62562452cf0f748e5d96c308e
BLAKE2b-256 1720fed89b62d50b4efad2ebe78c3867e0e402f824726652034728a5dd0a342e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyqwest-0.9.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cba6804151e973d27c99b9f02b3f0bcab7270c3f99725b508ada9c147365cabd
MD5 1c5faac1281b4c2ce55ebbd6cc7db2bd
BLAKE2b-256 4ad58c6e68f0e978b5257b309809fec00d946c1ed20dacef97f25c23de5b91a9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyqwest-0.9.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f460f5fcdae8cc46e6a679128836f6cd47fbf4bf73e5c9d6ea868e4a90b2e7ee
MD5 ce363f7e2bdcbfc7324a554c1a053f6b
BLAKE2b-256 030c7a11728155a34838d2e7c78fb24c937f2cd844ec791ef416030c52f4bb5e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyqwest-0.9.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 78f6f676d349535cb094e8e3bcf33863238a142fb7dcc7afb9e61749e2351047
MD5 98c281bcc941d7f4dffb32b013c0c880
BLAKE2b-256 f2e704fe8962ec416be0199093ebdd326653a5a7b8f53ddfdb29af81756f7c08

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyqwest-0.9.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5f475129fb792593222a9ce0fefbbc10bda1544a7411f3946d771c9a61c50e61
MD5 42507dfb91dbaf8735c2091c4518a855
BLAKE2b-256 8295d8c6804eeb72b7b89842b58f1f05d5cfda5be410c4a22442d2574d510d39

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyqwest-0.9.0-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 10fae206270355c993b49c49bf9778995167f5efe591807d50a8e682921d71ea
MD5 2b05db575f7bcdfa9d8c6ff546df5df8
BLAKE2b-256 55cd38ff77d145385afd71b2dbd6eb116251ce3ffddbed0edde16c64394fbec2

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyqwest-0.9.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/7.0.0 CPython/3.13.14

File hashes

Hashes for pyqwest-0.9.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 48c367150783f6866d0af43c209cc405f8287743d7b2472c7d757fda2478fd57
MD5 1da1353beabcbe42ad8a435562e87e9f
BLAKE2b-256 5355046dbf68ccedd816770fd212c6c2612372a6f0d7ecf2d8273480db460ddf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyqwest-0.9.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e34d55a53492b44b82b690c2b11957fc35e99ebab4db2e9bcb2a1e2621d71b62
MD5 4c79355fa6b580b981c96a5c8695dbc6
BLAKE2b-256 7bf112bb4b119cffb7fe5301b2d997ec9ffc1719637f6f4faf2ff2315e13b201

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyqwest-0.9.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1f73d4a8e75b5860741fbd0623a0ce792a53336dbfec5f34736004acd5446843
MD5 d6de4ef48aca6c61f14470a8e37f8816
BLAKE2b-256 213e98c1e151772e77dcf00cb8b1c070f2c8edcb15fe12fdee30c1022006ca8e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyqwest-0.9.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 10f283ffc40a2774e0dc8fbb47e4a8f9f8a698a99feae3bf4ad75b340c98031b
MD5 b9312f136317143e42a764800f4bfdfc
BLAKE2b-256 5f7c1f88be3d35afe92b79e361aa40faf3904e3a7852e8638a9d3d5c00891ab3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyqwest-0.9.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c8c51c1a27ea529fffab90c127a045f0dfe1abc54d5b9ad5f4165e954439c9b2
MD5 9cc9e98e20acfccc895e35d23d22f3d9
BLAKE2b-256 8fa80b667cf9c07e62861cfe24c09ad30357a9c2a0fc3863cfc5610af5b66e3e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyqwest-0.9.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 21a04ddf4497ef3c7fe36cdc473c094999b7710005d38bd8a0dfd4a3feace12f
MD5 319c71ad11122335055b90c5827e4cbb
BLAKE2b-256 418defb9741449a81f2489f6929a7691a2145662c3650e06bcb139c64f543d0a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyqwest-0.9.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fdab21bbedff4a21209135423f5f54f287a01dd6143cbd7aeab63d5d8c889654
MD5 e33e830ca369bea330655adf2b3ca889
BLAKE2b-256 fc3ea36940844325fbc59adf92116d3bcd1155cc2c72d1a390880886ca492bb4

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyqwest-0.9.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/7.0.0 CPython/3.13.14

File hashes

Hashes for pyqwest-0.9.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 e9a0e3123aee446d5f6e57c43cae87b4dab4b1af3fa970d114d74d5d4b9d075c
MD5 6618efa19761a4912895bb66e9dce703
BLAKE2b-256 6e08302960836e3e43ca3051313ee3b767534d1610bd3b8033c7bbad41b06e1b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyqwest-0.9.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 02a51df744521e45eb5379bc325b91de4512ec64a9f4aba3248f9166ec4e5b88
MD5 be55ffdc6eb3dbb3fb6f06c88fa0aaaa
BLAKE2b-256 fceec5c74e3afb6dd0a25bca23bb4757d1a7135fab09a0a054036e837d49dd11

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyqwest-0.9.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 56040761f6ca7abb036c7d288863bf143a9b166d824d98a604908ef20c6906e0
MD5 8e0180780c8c6807a0acdafaabba398d
BLAKE2b-256 3771344738bdb38bddbc07cb29e5b1287c08db9e53d6b322581492571bdef748

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyqwest-0.9.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7f8f9c880c19826fead1838e12b042865b15df3ec844928cc74188a8b740f761
MD5 7f51d651fbf83ba1b2f85c3558e4ff16
BLAKE2b-256 36316255c7f17cd00e39f1c4df3003cea2d2d087e483fb4c49a6535307cd21e0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyqwest-0.9.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b9942ffa243c8c2243e3ce04e3e3ec9b4c119346c963fd0051cd989f0defecf6
MD5 964eec4c4fc798a4e67062184fc15159
BLAKE2b-256 f9a1a28b2cd704d7dd37043f1e6b398798576c12293f3efae84f00e7f6a5625c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyqwest-0.9.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 67f153b94dfbb9aeabc38f20a1bada1acfd9361bec12db86268bd951be35a154
MD5 25e30bb64bb32bc2173c7861682b3b6c
BLAKE2b-256 4861c685e0c595f3f1b7842a776c48aaf2b3f47270a61672967d9d38f7c5e7f6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyqwest-0.9.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6e4c2afe6c7293d9e42cfdb0489b0b5f64002159c2dc9c45d9322c1b4ffb42cd
MD5 1a09d0247934bedea0a555fe6a6d3739
BLAKE2b-256 a792013fc3c94f0dc4eeca556431797da477d76ad43d69134837ba149468dcc3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyqwest-0.9.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/7.0.0 CPython/3.13.14

File hashes

Hashes for pyqwest-0.9.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 25734bd9798bbfaa53c83d395649dd9ea9a791a64b9848734955cb78ad52c832
MD5 d20595857e2815acf54aaf1e5f148ba2
BLAKE2b-256 b7868445fe05b47322047347464a909ae95dba023bf8409b9967f66bda2905ad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyqwest-0.9.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e4420adcd2b756da706b31a04f095a521f6e440dab284b7a1b46c76e048c1f78
MD5 50539af10f4f4a8ed5b5e83398adafd8
BLAKE2b-256 3c15941aad56b108c743df9d41e124be82ecb6be0eba1007e945b6a39f5dd1a0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyqwest-0.9.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 45d9d424da878b22604799d1ce2a0a5df054924487ee5a851ad08025e2076e5c
MD5 34caccb3862e2eec3301c099b700ca5d
BLAKE2b-256 cbfd703635e12710ce7ef5e961f5e1b22c609aecc8f07eedd79477b48d1edb74

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyqwest-0.9.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3be3d38ccdab3077bf1cfe90c346ce927f9b49c56dcdf20e060f5f2502d01021
MD5 c34b0039d886714546975de82f0c6b69
BLAKE2b-256 b4b4be47fc141529941352a848cd77da581803137b733993a51bf464f2c48915

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyqwest-0.9.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 551e47714da72a72939958029eb37a754cecd974344471c4a2038583a66a5396
MD5 00840ce25b045ca1e832cf5c1d660c67
BLAKE2b-256 a92ca7f117e793b4e27642807bf7230b9fa297ff1e1ac489fc260fc3d4350ae4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyqwest-0.9.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c6b2dc6a9c583859d031941e1041b8e711afe0ad4c130628207731cef2b1a486
MD5 fb3171a4da48e95d5f67760c36043fb2
BLAKE2b-256 4197ebded0bb35a79f51bb2d1519e34922d79c8825f9e71b696bb20f387a08c2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyqwest-0.9.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 abe322cc1b63947b493bc06028615e0d5de655928159227aab64f60a0eb0e27d
MD5 f618b5cb9fe2fae804aeb1232aa68bf5
BLAKE2b-256 1d9ed070ca1ce3c202952770436172889a4b0556a564a490baf726f7bb895eba

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyqwest-0.9.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/7.0.0 CPython/3.13.14

File hashes

Hashes for pyqwest-0.9.0-cp310-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 af4e859800b02cd1fcdd898af26a881c4a8ce9520f71f6cb0a5403523d2cbbdf
MD5 257ea17c9dd9f43ed9e7c7814e644f90
BLAKE2b-256 34dba8979dab5c591529f858d1505d09b3c8b6dec337921f15bed4858c55716e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyqwest-0.9.0-cp310-abi3-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 10eba84f9d8512d23bd16dd60b1c77dab956470361559214981dda065df4ad1a
MD5 cf3f48f504ea2fe209b128346828e221
BLAKE2b-256 edb5eeafdeb65ad8fe9c39044aedcfc97610f4e5c7b5620ca9fe2d504f669108

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyqwest-0.9.0-cp310-abi3-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 98bdaa30a3a8d8c71506a33c084e485a243fbf51e77130bb39e0f249dd116142
MD5 72268487274a7106c5474abbfdb77ac1
BLAKE2b-256 acfdff15034d7874fd208d606bd80c924fb0b1091db8159c892672168b656de1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyqwest-0.9.0-cp310-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9b02e5c9ce57e079eb3716c464d3818ad2573d7743483c39526ad77ee95af806
MD5 acf60edb07af498261f7acf8d29782cf
BLAKE2b-256 de2c8f1159a30bbc905b2fcbc386740a260e76ae64372feb263103438ef5201c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyqwest-0.9.0-cp310-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e1abf1ab3a0c1b545651ab37a643acc7909c4e7644a63a2e4af36e3e230a0db5
MD5 40aa2b7abea6b6ca727d18e7835c249a
BLAKE2b-256 66fe22c4056b526baa4c2c953f4e99925ce0bb14e7747d66e6ac3448a34f76e5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyqwest-0.9.0-cp310-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 408dc692835363b6824bee61ee9e4c9a5bba9c08d75b903f82f9a802e41d1b30
MD5 2c730d6da8146706c90754aa418e086a
BLAKE2b-256 c93f1d7d1a08ebf8838c0c85e99ab5db5c1aae457f76ee03b60c8f4fc4948e01

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyqwest-0.9.0-cp310-abi3-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 517d2eb295d56ef1530cebe0cf290a66fa199c57955bd1c5f1dc592240fbb7d6
MD5 e99c1650f97b2a2ea33e4694baa6f120
BLAKE2b-256 4734d556fa07d9bff21fc6c9c16738614c6336164b65d9ced1ce9f1c1044aaeb

See more details on using hashes here.

Provenance

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