Skip to main content

Rust-powered HTTP client for Python.

Project description

FogHTTP logo

FogHTTP

Rust-powered HTTP client for Python with sync and asyncio APIs.

FogHTTP is an early MVP HTTP client. The public API is Python-first, while the transport core is implemented in Rust on top of hyper.

Until version 0.5.0, backward compatibility is not guaranteed. I will still try to keep public interfaces stable and avoid unnecessary breaking changes.

Install

pip install foghttp

Runtime requirements:

  • Python >=3.11
  • orjson>=3.11,<4

Quick Start

import foghttp


with foghttp.Client() as client:
    response = client.get(
        "https://api.example.com/users",
        headers={"accept": "application/json"},
        params={"limit": 10},
    )

    response.raise_for_status()
    print(response.status_code)
    print(response.json())

Async clients use the same request API:

import foghttp


async with foghttp.AsyncClient() as client:
    response = await client.post(
        "https://api.example.com/users",
        json={"name": "Ada Lovelace"},
    )
    response.raise_for_status()

What Works Today

  • sync Client and async AsyncClient
  • GET, HEAD, POST, PUT, PATCH, DELETE
  • query params, JSON bodies, and buffered bytes/text bodies
  • buffered Response with text, json(), raise_for_status(), and request metadata
  • prepared Request objects with build_request() and send()
  • case-insensitive Headers with repeated values
  • normalized URL model with origin comparison and relative joins
  • GET/HEAD/POST redirects with final URL and history
  • global pool backpressure, basic stats, and HTTP/1.1 over HTTP/HTTPS
  • grouped HTTP status constants

Documentation

Current Limitations

FogHTTP is currently focused on controlled buffered HTTP workloads. Streaming bodies, cookies, auth helpers, proxy support, multipart uploads, HTTP/2, compression decoding, active per-origin connection limits, and separate read/write timeout semantics are planned for later versions.

Development

uv run --with "maturin>=1.7,<2" maturin develop
uv run --extra dev coverage run -m pytest
uv run --extra dev coverage report -m
pre-commit run --all-files

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

foghttp-0.1.3.tar.gz (1.2 MB view details)

Uploaded Source

Built Distributions

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

foghttp-0.1.3-cp314-cp314-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.14Windows x86-64

foghttp-0.1.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

foghttp-0.1.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

foghttp-0.1.3-cp314-cp314-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

foghttp-0.1.3-cp314-cp314-macosx_10_12_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

foghttp-0.1.3-cp313-cp313-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.13Windows x86-64

foghttp-0.1.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

foghttp-0.1.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

foghttp-0.1.3-cp313-cp313-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

foghttp-0.1.3-cp313-cp313-macosx_10_12_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

foghttp-0.1.3-cp312-cp312-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.12Windows x86-64

foghttp-0.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

foghttp-0.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

foghttp-0.1.3-cp312-cp312-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

foghttp-0.1.3-cp312-cp312-macosx_10_12_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

foghttp-0.1.3-cp311-cp311-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.11Windows x86-64

foghttp-0.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

foghttp-0.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

foghttp-0.1.3-cp311-cp311-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

foghttp-0.1.3-cp311-cp311-macosx_10_12_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

File details

Details for the file foghttp-0.1.3.tar.gz.

File metadata

  • Download URL: foghttp-0.1.3.tar.gz
  • Upload date:
  • Size: 1.2 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for foghttp-0.1.3.tar.gz
Algorithm Hash digest
SHA256 171ad6baaea4d98e06802cf1752433601da03ede402302c0751b3bf8caabeba8
MD5 628bb214464265631a1433154ee7c4fb
BLAKE2b-256 193001d19efe13842b4a64c0bc794272c3412fdf1a736ad83b4e142a85b7c77a

See more details on using hashes here.

Provenance

The following attestation bundles were made for foghttp-0.1.3.tar.gz:

Publisher: release.yml on AmberFog/foghttp

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

File details

Details for the file foghttp-0.1.3-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: foghttp-0.1.3-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for foghttp-0.1.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 0f1552d96cb8b4db717ab6b4030d49c5eef3775308b6f3d8957f11451f1a91c1
MD5 52f5a1258c5e5e92be229673fbc5ff39
BLAKE2b-256 4035296ccef084f683973714f7cf79aac9ca13051ccb8bcfe9baacd7c8d7bea1

See more details on using hashes here.

Provenance

The following attestation bundles were made for foghttp-0.1.3-cp314-cp314-win_amd64.whl:

Publisher: release.yml on AmberFog/foghttp

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

File details

Details for the file foghttp-0.1.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for foghttp-0.1.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 95d861833dc70918bcef3c4f47f7e86a3983943e869d866f450d2c8af3edc6a6
MD5 1513f5d56185fd117234d207b8a91e8b
BLAKE2b-256 72e8af06f7f9759a7920d72f62eb5227029c0e08b968d1bfe45aa626c20a89a3

See more details on using hashes here.

Provenance

The following attestation bundles were made for foghttp-0.1.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on AmberFog/foghttp

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

File details

Details for the file foghttp-0.1.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for foghttp-0.1.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 99043bfd11d6925079ed59dce5a21e229fae3d6de1a7b56920bdaf585268fb37
MD5 2a4d87c9204f2b8db7952c223343c1f4
BLAKE2b-256 1b3bedce5e0177cbb007f8472738b6d0f5f0807bd5d49f62fe16b668c023bd9d

See more details on using hashes here.

Provenance

The following attestation bundles were made for foghttp-0.1.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on AmberFog/foghttp

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

File details

Details for the file foghttp-0.1.3-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for foghttp-0.1.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6a96ed92ecbef92c22a1d3b184cc9b057dff3a1d4196586a9cab78bf05d98602
MD5 cc4711d13d010dcac3eb6ab542ae3ee3
BLAKE2b-256 412697b22fff49d759e6e8abc4e91979e5b610736d5a833aff96799462817dab

See more details on using hashes here.

Provenance

The following attestation bundles were made for foghttp-0.1.3-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: release.yml on AmberFog/foghttp

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

File details

Details for the file foghttp-0.1.3-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for foghttp-0.1.3-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 047b1f0b43971e0b6a85ddfa449e5210d8b7cb0cf852eb92752b96b3ba96e233
MD5 8443839489e0e3e8ddccf1abb2855440
BLAKE2b-256 1047a258b0d56585d757610fb11c2c6037128a7a9c016837b1583cea4a160b39

See more details on using hashes here.

Provenance

The following attestation bundles were made for foghttp-0.1.3-cp314-cp314-macosx_10_12_x86_64.whl:

Publisher: release.yml on AmberFog/foghttp

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

File details

Details for the file foghttp-0.1.3-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: foghttp-0.1.3-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for foghttp-0.1.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 9967239655ae0aa2fa221839242bcbba9bd928701f709483a0e94266445315c8
MD5 c20a255a0905e67bcbdac97385ba8113
BLAKE2b-256 f573136d8b6b8dc1b581a4031e749e4225a61a89b8a81ed1795492dda487d460

See more details on using hashes here.

Provenance

The following attestation bundles were made for foghttp-0.1.3-cp313-cp313-win_amd64.whl:

Publisher: release.yml on AmberFog/foghttp

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

File details

Details for the file foghttp-0.1.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for foghttp-0.1.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 38111393190b818131aa48240d11b9a7aa94e7578c33ebcddf8ba780469a744b
MD5 dbeb8b97d5ed5d7e665a6002cd9c1c95
BLAKE2b-256 79f792decb29558c9842222cd05cea48d4bd7114dac82cb806557df7890293d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for foghttp-0.1.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on AmberFog/foghttp

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

File details

Details for the file foghttp-0.1.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for foghttp-0.1.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2ae81bdc69de3c5cd0c55b3113248fcbbc3ddaaeae0838f48f3769e46a191eca
MD5 310eb99d6d49395509f237c222bab944
BLAKE2b-256 f884cf4ee1cdc779eeb2f4ac6896b77be64c74163c1f067ddc10b81adfa2743f

See more details on using hashes here.

Provenance

The following attestation bundles were made for foghttp-0.1.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on AmberFog/foghttp

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

File details

Details for the file foghttp-0.1.3-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for foghttp-0.1.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 de194a6c2764f8a6ecf269a3b2652e059e79a6fcd217e68ae125433ed7744fde
MD5 bf003c4fd22451efc824607b31b28cb4
BLAKE2b-256 5a3410be9ca9df22251ae7667a9dbb0fb6d3bb8aa895052a33f320967e1e0ba4

See more details on using hashes here.

Provenance

The following attestation bundles were made for foghttp-0.1.3-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: release.yml on AmberFog/foghttp

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

File details

Details for the file foghttp-0.1.3-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for foghttp-0.1.3-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b36167c0a8943bcde58206fe871fa1f31f9a560e9056ddaaf52313f62061741b
MD5 3f6a237d005abca77230a54fb1c48f23
BLAKE2b-256 7322b5354d62179eadd745b4f653c12c418f959196fc298bc6440b87e2dd4361

See more details on using hashes here.

Provenance

The following attestation bundles were made for foghttp-0.1.3-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: release.yml on AmberFog/foghttp

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

File details

Details for the file foghttp-0.1.3-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: foghttp-0.1.3-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for foghttp-0.1.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 bb3036d985f84ac19fee9d4974b847d2b2ca6a5f322cbf356385223e3b1f842f
MD5 6d2f4b2ad5f4b1595864e39a549e19c5
BLAKE2b-256 8133e389900f03cebecb991b94d8821589eeb5fa4ba75969076344887a2e70e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for foghttp-0.1.3-cp312-cp312-win_amd64.whl:

Publisher: release.yml on AmberFog/foghttp

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

File details

Details for the file foghttp-0.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for foghttp-0.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b9e1016155f4f01acae72722b5b9b08363d862d20b5e8c57b378e3338f0aeb7c
MD5 69425fcc18f135a5a368e1b9c3018e38
BLAKE2b-256 d39bd0b724a05187ce0418c06e06f232e915d92089570e11d1e342a44f409345

See more details on using hashes here.

Provenance

The following attestation bundles were made for foghttp-0.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on AmberFog/foghttp

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

File details

Details for the file foghttp-0.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for foghttp-0.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2381790e73e19ff6d83fcc6ba39474cd6c33ab0e9ffc06340cb28f8632af351d
MD5 f6f6b3f0dff24aa2710b065f0ecb1185
BLAKE2b-256 b9ba41b852fb2486b79785ede7c751d8516c6dde6b836476b513e093e7bdb787

See more details on using hashes here.

Provenance

The following attestation bundles were made for foghttp-0.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on AmberFog/foghttp

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

File details

Details for the file foghttp-0.1.3-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for foghttp-0.1.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aa163e502be1d09408ec68cd7ef7ac9a5762f39e35dcb6f99795b706e22d9d14
MD5 e859006c8934ffafda798a7c6fbb6654
BLAKE2b-256 eaf5d71aa4f323d75fb9606c0d695094d04642923986f3000a6a628aa0ba195f

See more details on using hashes here.

Provenance

The following attestation bundles were made for foghttp-0.1.3-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: release.yml on AmberFog/foghttp

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

File details

Details for the file foghttp-0.1.3-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for foghttp-0.1.3-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0410cac369dd7dd179145f42e1803e70708a626f2fc912ec954afca5ba828df8
MD5 ac831564dfda6cb3d430773eac6e7abc
BLAKE2b-256 7a66902482dfb9af8968c9e9efeff91c49a44a673429d7f30a7a5aa523e3b815

See more details on using hashes here.

Provenance

The following attestation bundles were made for foghttp-0.1.3-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: release.yml on AmberFog/foghttp

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

File details

Details for the file foghttp-0.1.3-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: foghttp-0.1.3-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 1.5 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for foghttp-0.1.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7e58782446338bb7e3daeeb47eb59aaf13b2bda38f04cf6f35dc3d22370c3886
MD5 3666899899322d8d3e0b6ad0b04afcd2
BLAKE2b-256 96529a6a0795587625d1c648f52ab242b3c129b8817d25ffcd896f879f387e51

See more details on using hashes here.

Provenance

The following attestation bundles were made for foghttp-0.1.3-cp311-cp311-win_amd64.whl:

Publisher: release.yml on AmberFog/foghttp

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

File details

Details for the file foghttp-0.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for foghttp-0.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 65038d141ec6215a5ec2779ecf31f9f6d242789eaf8d7073e3e94cafbf38d5c8
MD5 67c40987896ec7e3a7aea35e8c89cfe5
BLAKE2b-256 4ed169547c0580a41d863e0213573384b74104bc317a078777de0ddf85041f6a

See more details on using hashes here.

Provenance

The following attestation bundles were made for foghttp-0.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on AmberFog/foghttp

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

File details

Details for the file foghttp-0.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for foghttp-0.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5b5d4b528399004286882b68e47b5a45597a4362561e59e34782ece332d1a974
MD5 1bdd6176be568a9b63b273e3a9b11875
BLAKE2b-256 8fb21fe38e5521313efb500f0ca17edaab2fff4bfcb4853baa0fd899f2d1d0dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for foghttp-0.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on AmberFog/foghttp

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

File details

Details for the file foghttp-0.1.3-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for foghttp-0.1.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a892af0df5d4b07948cec7bd408118b5b87b8341979d20ac51f17cb7c3eb1e55
MD5 6f09904ce7bd7ed4d977faa9ca343410
BLAKE2b-256 b8b2c5f048820b007953f12ecdeffb4823d3f11023d5316eb2195d69b01dc268

See more details on using hashes here.

Provenance

The following attestation bundles were made for foghttp-0.1.3-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: release.yml on AmberFog/foghttp

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

File details

Details for the file foghttp-0.1.3-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for foghttp-0.1.3-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9b2892b249b705a8b3047e409cf5339f866f3c5740e60acc85b91b8608bc6e9f
MD5 037335ab91e785772cf96bf6111a36b2
BLAKE2b-256 201f26338ad9f535e9b81271e8933b904afac05a19540cd3effbe47c09e02b9d

See more details on using hashes here.

Provenance

The following attestation bundles were made for foghttp-0.1.3-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: release.yml on AmberFog/foghttp

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