Skip to main content

No project description provided

Project description

Gufo HTTP

The accelerated Python HTTP client library.

PyPi version Python Versions License Build Sponsors Ruff


Documentation: https://docs.gufolabs.com/gufo_http/

Source Code: https://github.com/gufolabs/gufo_http/


Gufo HTTP is a high-performance Python HTTP client library that handles both asynchronous and synchronous modes. It wraps famous Reqwest HTTP client, written in Rust language with PyO3 wrapper. Our task is to reach maximal performance while maintaining clean and easy-to use API.

The getting of single URL is a simple task:

async with HttpClient() as client:
    resp = client.get("https://docs.gufolabs.com/")
    assert resp.status == 200
    data = resp.content

The HttpClient is highly customizable, for example, to set request headers:

async with HttpClient(headers={"X-My-Header": b"test"}) as client:
    resp = client.get("https://docs.gufolabs.com/")
    ...

The response headers processing as easy as working with dicts:

async with HttpClient(headers={"X-My-Header": b"test"}) as client:
    resp = client.get("https://docs.gufolabs.com/")
    if resp.headers["Content-Type"] == "text/html":
        ...

Gufo HTTP supports common authentication methods out-of-box:

async with HttpClient(auth=BasicAuth("scott", "tiger")) as client:
    resp = client.get("https://protected.example.com/")
    ...

Features

  • Clean async and blocking API.
  • High performance (see Performance section for details).
  • Built with security in mind.
  • Customizabile redirect policy.
  • TLS support.
  • Basic and bearer authorization schemes.
  • HTTP/HTTPS/SOCKS5 Proxy support.
  • Full Python typing support.
  • Editor completion.
  • Well-tested, battle-proven code.

Performance

Gufo HTTP is proved to be one of the fastest Python HTTP client available in the various scenarios. For example:

Single HTTP/1.1 requests scenario

Single requests Lower is better

100 Linear HTTP/1.1 requests scenario

Linear requests Lower is better

100 Parallel HTTP/1.1 requests scenario

Parallel requests Lower is better

Single HTTPS requests scenario

Single requests Lower is better

100 Linear HTTPS requests scenario

Linear requests Lower is better

100 Parallel HTTPS requests scenario

Parallel requests Lower is better

Refer to benchmarks for details.

On Gufo Stack

This product is a part of Gufo Stack - the collaborative effort led by Gufo Labs. Our goal is to create a robust and flexible set of tools to create network management software and automate routine administration tasks.

To do this, we extract the key technologies that have proven themselves in the NOC and bring them as separate packages. Then we work on API, performance tuning, documentation, and testing. The NOC uses the final result as the external dependencies.

Gufo Stack makes the NOC better, and this is our primary task. But other products can benefit from Gufo Stack too. So we believe that our effort will make the other network management products better.

Project details


Download files

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

Source Distribution

gufo_http-0.4.0.tar.gz (26.7 kB view details)

Uploaded Source

Built Distributions

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

gufo_http-0.4.0-cp313-cp313-musllinux_1_2_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

gufo_http-0.4.0-cp313-cp313-musllinux_1_2_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

gufo_http-0.4.0-cp313-cp313-manylinux_2_28_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

gufo_http-0.4.0-cp313-cp313-manylinux_2_28_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

gufo_http-0.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

gufo_http-0.4.0-cp312-cp312-musllinux_1_2_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

gufo_http-0.4.0-cp312-cp312-musllinux_1_2_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

gufo_http-0.4.0-cp312-cp312-manylinux_2_28_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

gufo_http-0.4.0-cp312-cp312-manylinux_2_28_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

gufo_http-0.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

gufo_http-0.4.0-cp311-cp311-musllinux_1_2_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

gufo_http-0.4.0-cp311-cp311-musllinux_1_2_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

gufo_http-0.4.0-cp311-cp311-manylinux_2_28_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

gufo_http-0.4.0-cp311-cp311-manylinux_2_28_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

gufo_http-0.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

gufo_http-0.4.0-cp310-cp310-musllinux_1_2_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

gufo_http-0.4.0-cp310-cp310-musllinux_1_2_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

gufo_http-0.4.0-cp310-cp310-manylinux_2_28_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

gufo_http-0.4.0-cp310-cp310-manylinux_2_28_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

gufo_http-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

gufo_http-0.4.0-cp39-cp39-musllinux_1_2_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

gufo_http-0.4.0-cp39-cp39-musllinux_1_2_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

gufo_http-0.4.0-cp39-cp39-manylinux_2_28_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ x86-64

gufo_http-0.4.0-cp39-cp39-manylinux_2_28_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ ARM64

gufo_http-0.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

File details

Details for the file gufo_http-0.4.0.tar.gz.

File metadata

  • Download URL: gufo_http-0.4.0.tar.gz
  • Upload date:
  • Size: 26.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for gufo_http-0.4.0.tar.gz
Algorithm Hash digest
SHA256 e40466e2cebd410c904d0f72c9650d2479ac8e7b368b6ff9d44ec1e0be8b56e6
MD5 909867dc0a666c5962584692441829b0
BLAKE2b-256 ad9c6aaa4a345ded05e65e12c9d4380d4e3c62136be458ae69a145bcad915bc5

See more details on using hashes here.

Provenance

The following attestation bundles were made for gufo_http-0.4.0.tar.gz:

Publisher: package.yml on gufolabs/gufo_http

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

File details

Details for the file gufo_http-0.4.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for gufo_http-0.4.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 623453c379248ba3448dbc047d0e5ea2e3e369e35333369da0f91e739f363f74
MD5 7837114bc9ee4ef5618a08aa59abe1bf
BLAKE2b-256 5d12641dc1405bb31e6a92594593ef168c1bf9152a5bb41d22dcd85a06ce3a72

See more details on using hashes here.

Provenance

The following attestation bundles were made for gufo_http-0.4.0-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: package.yml on gufolabs/gufo_http

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

File details

Details for the file gufo_http-0.4.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for gufo_http-0.4.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6ce8d2995b69123b3889bdc93568d3f9b2deb727449b3609965f058dde7986c1
MD5 c12bd70c4c2111fedea7c6687c29f7c8
BLAKE2b-256 025afa8765fc868d42b81e1b0439dc7e32c5450ce77fd0bed45139991fd4b291

See more details on using hashes here.

Provenance

The following attestation bundles were made for gufo_http-0.4.0-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: package.yml on gufolabs/gufo_http

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

File details

Details for the file gufo_http-0.4.0-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for gufo_http-0.4.0-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 baaf78a639ce336da1ed0d3bb972d5121b3de0fcee29e7ef0444454986247c1f
MD5 6745e427b1112047bca30cf64768da83
BLAKE2b-256 8e9d4291ef54504bd70e64f8f3c1f4de9c95f74e1e5a43c103523947e14b2499

See more details on using hashes here.

Provenance

The following attestation bundles were made for gufo_http-0.4.0-cp313-cp313-manylinux_2_28_x86_64.whl:

Publisher: package.yml on gufolabs/gufo_http

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

File details

Details for the file gufo_http-0.4.0-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for gufo_http-0.4.0-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3385e8c720d3d2ba5469fb75b4f24b9daa872da496dc7d5bf12cbb72c1e84fa3
MD5 f2e8d25217d41f14b9d7f54cc46ace1d
BLAKE2b-256 32e82fb0ac1fafff2613ed3794bd268ff100759e018f699fda71776c66a15cf8

See more details on using hashes here.

Provenance

The following attestation bundles were made for gufo_http-0.4.0-cp313-cp313-manylinux_2_28_aarch64.whl:

Publisher: package.yml on gufolabs/gufo_http

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

File details

Details for the file gufo_http-0.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for gufo_http-0.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 72b63ea47a1dc62c848bef6a371cc4d6fe157fff7c6fe5e5ed8fbbcd084c72df
MD5 4433e543f882a16e5cdb82012cdab828
BLAKE2b-256 ab14f8cce2f05fd3818a76b5a57f51c0721c27cd9b58181868508eb8c5e0dbcb

See more details on using hashes here.

Provenance

The following attestation bundles were made for gufo_http-0.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: package.yml on gufolabs/gufo_http

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

File details

Details for the file gufo_http-0.4.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for gufo_http-0.4.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dec5138d5e1e67c4d6369ca7a003aa53f57f2356ccfa8dbd0b1101b8adeae5b7
MD5 251d5e3735074b7d8b88e7e82b115255
BLAKE2b-256 bffc9ea4f1672027a73839dea863980edd2b8218e37daf08820d40402bf459a1

See more details on using hashes here.

Provenance

The following attestation bundles were made for gufo_http-0.4.0-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: package.yml on gufolabs/gufo_http

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

File details

Details for the file gufo_http-0.4.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for gufo_http-0.4.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ec99f3a5a95faf2e8b3f13424d96aca6630106df4685d23577f90967d049fe84
MD5 5e4c49c8f51281b7633e018b0a0fa7e1
BLAKE2b-256 10ceb187c41b6a824212873872526a1717eb2fcfd21b94b0a8f31b372e397416

See more details on using hashes here.

Provenance

The following attestation bundles were made for gufo_http-0.4.0-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: package.yml on gufolabs/gufo_http

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

File details

Details for the file gufo_http-0.4.0-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for gufo_http-0.4.0-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6ea008d7b124754efba914ddf4aa2c512e3744ea64471a0ba3a8aaec09d2d683
MD5 67341a5a5b263225033fe4c9da8ab53f
BLAKE2b-256 0ddcfedff918b9da31ce4136fd04595b623b3f722276e37640f1afd04fda30f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for gufo_http-0.4.0-cp312-cp312-manylinux_2_28_x86_64.whl:

Publisher: package.yml on gufolabs/gufo_http

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

File details

Details for the file gufo_http-0.4.0-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for gufo_http-0.4.0-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d8a86ebf1c78c21d0fb7a2e18886b930238c069db8cb6cae079eab05ac761dae
MD5 6526c0b79d219ec83797994274faa9f0
BLAKE2b-256 e972436d0301f88c9b225c6004b745a35ada7c42d02dd6f77ac0d3739ac3747a

See more details on using hashes here.

Provenance

The following attestation bundles were made for gufo_http-0.4.0-cp312-cp312-manylinux_2_28_aarch64.whl:

Publisher: package.yml on gufolabs/gufo_http

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

File details

Details for the file gufo_http-0.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for gufo_http-0.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f2ea078229393f0695fe5ad9796b32309ac8a73fd2712bf38e2110dec4d2718c
MD5 f985f4c099cbec5f2f65d3cf452a5ee0
BLAKE2b-256 931e25242f940d0bedad7d126389bb749435bf68b165e0a3f9c6f3a5d2601cd1

See more details on using hashes here.

Provenance

The following attestation bundles were made for gufo_http-0.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: package.yml on gufolabs/gufo_http

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

File details

Details for the file gufo_http-0.4.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for gufo_http-0.4.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1ad4d72e17f2b4af0c1de659cf2a8c6fadf9ed37597b15ddf8b3476595b7bff7
MD5 54fdf1c262cbada01a98b183d35425cd
BLAKE2b-256 69cb3508fbe363770de601f9a5576e1bf72def46e949f824bf32a1c2af06db8d

See more details on using hashes here.

Provenance

The following attestation bundles were made for gufo_http-0.4.0-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: package.yml on gufolabs/gufo_http

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

File details

Details for the file gufo_http-0.4.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for gufo_http-0.4.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6aed72861c8e8ec76f3118500485570d7e02326223aae2ec11e73190c13fb793
MD5 ba0c1c353342b31088d2084cd1c1082a
BLAKE2b-256 7153664b068c93964d36087778bf4916b6c34cdac40aa59dd79e439418e3e2b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for gufo_http-0.4.0-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: package.yml on gufolabs/gufo_http

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

File details

Details for the file gufo_http-0.4.0-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for gufo_http-0.4.0-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b19eaa89cf350e0dfa5a7cbd75b9ce414ae72869e55cabe9e7ff3480b8f2a073
MD5 0744f939acef295ddc05d371a853002c
BLAKE2b-256 c55eb698f28b0cd09d19ccf8dd3ff5da2fb8cecf11d2f1271ec8f65c699fa14d

See more details on using hashes here.

Provenance

The following attestation bundles were made for gufo_http-0.4.0-cp311-cp311-manylinux_2_28_x86_64.whl:

Publisher: package.yml on gufolabs/gufo_http

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

File details

Details for the file gufo_http-0.4.0-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for gufo_http-0.4.0-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7a725c7d083251be7ad372b1b9cf99eecce5509af562dc9a3314e0313d55b8b3
MD5 adff39125ad0cc30ac9f4449090e75df
BLAKE2b-256 03f5af44706414c7b881bc0f8a346d78a2678d016e7aab8d13d9da734e30947e

See more details on using hashes here.

Provenance

The following attestation bundles were made for gufo_http-0.4.0-cp311-cp311-manylinux_2_28_aarch64.whl:

Publisher: package.yml on gufolabs/gufo_http

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

File details

Details for the file gufo_http-0.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for gufo_http-0.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2e1d660bdd3565c8fd9b0325686470c89fe95baee72e1a5f739b129f2c892bfe
MD5 5b9128565ab43fd4c9a6d15917c96387
BLAKE2b-256 f07b23199665f09beca6c09116aadfa86efa43ffad4ab704c4e9cd30ea351797

See more details on using hashes here.

Provenance

The following attestation bundles were made for gufo_http-0.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: package.yml on gufolabs/gufo_http

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

File details

Details for the file gufo_http-0.4.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for gufo_http-0.4.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 edd0d287ab1a07d7bd2140021a2de3663ffdbcbcfa1543b6867e41895d144699
MD5 85da4f48868cd9c266d7a227aa39a085
BLAKE2b-256 cb7510e3f82af6deb3a3e5802b61926cde904626a20226f9e20018bed8b2456d

See more details on using hashes here.

Provenance

The following attestation bundles were made for gufo_http-0.4.0-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: package.yml on gufolabs/gufo_http

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

File details

Details for the file gufo_http-0.4.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for gufo_http-0.4.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7f78b78eb926a7c6873c2f86119aba98c4c4bf940e5cd80c92758935c2fc892e
MD5 906244d79b69f6f7219be90b838fc710
BLAKE2b-256 0a8cc0d40e93bb9348ea3e71045ba60c7b1bc0b899ecde61149020f9cec06d84

See more details on using hashes here.

Provenance

The following attestation bundles were made for gufo_http-0.4.0-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: package.yml on gufolabs/gufo_http

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

File details

Details for the file gufo_http-0.4.0-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for gufo_http-0.4.0-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e2bc6a76f41ae81f6153a11ee172efdadd457cf121495f961260a0b25bf19d99
MD5 694017d6b5a735ae9757cbcdb21b46a6
BLAKE2b-256 a1a6a49c33990c3ac323e4fd357ba5c76d0610d975e2264ca542626e5ed15896

See more details on using hashes here.

Provenance

The following attestation bundles were made for gufo_http-0.4.0-cp310-cp310-manylinux_2_28_x86_64.whl:

Publisher: package.yml on gufolabs/gufo_http

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

File details

Details for the file gufo_http-0.4.0-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for gufo_http-0.4.0-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3a221dc690bff760f43da046aa3a94cb5a20391f5ae9d5966363f085d4cc125f
MD5 bae9481f953b56b06665eb80516be62d
BLAKE2b-256 6297a4737198115edd56c9bff98d18ac25790f5f4fc7a9aaacfe12a2a9559e4d

See more details on using hashes here.

Provenance

The following attestation bundles were made for gufo_http-0.4.0-cp310-cp310-manylinux_2_28_aarch64.whl:

Publisher: package.yml on gufolabs/gufo_http

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

File details

Details for the file gufo_http-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for gufo_http-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c8e33ae271d829880e111817d1ff549c8bfe7ff2106353427d425082716ed188
MD5 0b4c7cebdc04e975f4d999f70dafb056
BLAKE2b-256 c2ff38060fc2441e20d755cf3bc7f9df6ae81ec6e7d1d7d710dfb7d64ac24da3

See more details on using hashes here.

Provenance

The following attestation bundles were made for gufo_http-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: package.yml on gufolabs/gufo_http

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

File details

Details for the file gufo_http-0.4.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for gufo_http-0.4.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 196b88c8e4f4721e65af46c35dc67f7b13b4c6b6261b00de3bf571470f379def
MD5 db5eb12814d260364658be7b1b0e65fd
BLAKE2b-256 e98155d1b00906042250b8acfabafdce9a2226dfa1c85c5c4278e1c93b3a88aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for gufo_http-0.4.0-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: package.yml on gufolabs/gufo_http

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

File details

Details for the file gufo_http-0.4.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for gufo_http-0.4.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 89f24477478eab174daf1214d58f06f4b6bbd1176654afdef87c554d11d9e348
MD5 5ed0d93f2064fdc5647b5f1ca5356300
BLAKE2b-256 612cf600935f9ef1e8dbb6796c2ad12a30bab6f768ca384690776407abaf49f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for gufo_http-0.4.0-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: package.yml on gufolabs/gufo_http

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

File details

Details for the file gufo_http-0.4.0-cp39-cp39-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for gufo_http-0.4.0-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 907c24be21dcf2bd73e8b2a67a883c4295492bc1c0065418bc1eb667fc73baf5
MD5 b1d8db7561760838e4996f5b65a7ad77
BLAKE2b-256 6e5acfa0a3f030890792cfa5f9c1757f3af2f097ea906b2e7f922713dcf23de5

See more details on using hashes here.

Provenance

The following attestation bundles were made for gufo_http-0.4.0-cp39-cp39-manylinux_2_28_x86_64.whl:

Publisher: package.yml on gufolabs/gufo_http

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

File details

Details for the file gufo_http-0.4.0-cp39-cp39-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for gufo_http-0.4.0-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3aa97d0414eea1f44e02fbf0144632ae2ef292deffd1ffdd3dbed306e45d5c58
MD5 b7123762e56adca51ffc4ecc3ec7f301
BLAKE2b-256 54103b69238660474fa854e14a94f42716107c063274b2167316c6104b28f1c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for gufo_http-0.4.0-cp39-cp39-manylinux_2_28_aarch64.whl:

Publisher: package.yml on gufolabs/gufo_http

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

File details

Details for the file gufo_http-0.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for gufo_http-0.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 91e3627a1728078ef05e14c3bc0fa90b62d239d07a53ff1ab3f6c9314641283e
MD5 8f3f683b08a90841bfe1c2700eb1fce6
BLAKE2b-256 ce4a02eaf144e8f59768a51dabc2cce6aa0209d51de3b1901f6785c894197feb

See more details on using hashes here.

Provenance

The following attestation bundles were made for gufo_http-0.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: package.yml on gufolabs/gufo_http

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 Pingdom Monitoring Sentry Error logging StatusPage Status page