Skip to main content

Async HTTP client for Python with native libcurl performance.

Project description

RedC logo

Async HTTP client for Python with native libcurl performance.

PyPI version Curl version Build status Python versions Downloads

Features

  • Protocols: Supports HTTP/1.1, HTTP/2, and HTTP/3
  • curl-powered: Built on top of libcurl for performance and reliability
  • Streaming: Efficient handling of large responses
  • Proxying: Simple and flexible proxy configuration
  • Google CA Trust: Uses trustifi as the default TLS trust store

Installation

You can install RedC via pip:

pip install redc

Quick Start

import asyncio
from redc import Client

async def main():
    async with Client(base_url="https://jsonplaceholder.typicode.com") as client:
        # Make a GET request
        response = await client.get("/posts/1")
        response.raise_for_status()
        print(response.status_code)  # 200
        print(response.json())  # {'userId': 1, 'id': 1, 'title': '...', 'body': '...'}

        # Make a POST request with JSON data
        response = await client.post(
            "/posts",
            json={"title": "foo", "body": "bar", "userId": 1},
        )
        response.raise_for_status()
        print(response.status_code)  # 201
        print(response.json())  # {'id': 101, ...}

asyncio.run(main())

URL Utilities

RedC includes a high-performance URL parser powered by libcurl.

from redc import CurlURL

u = CurlURL("https://user:pass@example.com:8080/path?q=1#frag")

print(u.host)   # example.com
print(u.port)   # 8080
print(u.path)   # /path

u.query = None
u["port"] = 443

print(str(u))
# https://user:pass@example.com:443/path#frag

Validate URLs:

from redc import CurlURL

print(CurlURL.is_valid_url("https://example.com"))  # True
print(CurlURL.is_valid_url("::::invalid::::"))      # False

License

MIT LICENSE

Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

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

redc-0.2.4-cp314-cp314t-win_amd64.whl (792.0 kB view details)

Uploaded CPython 3.14tWindows x86-64

redc-0.2.4-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (7.7 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

redc-0.2.4-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (8.0 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

redc-0.2.4-cp314-cp314t-macosx_11_0_arm64.whl (5.2 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

redc-0.2.4-cp314-cp314-win_amd64.whl (784.1 kB view details)

Uploaded CPython 3.14Windows x86-64

redc-0.2.4-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (7.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

redc-0.2.4-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (8.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

redc-0.2.4-cp314-cp314-macosx_11_0_arm64.whl (5.2 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

redc-0.2.4-cp313-cp313-win_amd64.whl (784.3 kB view details)

Uploaded CPython 3.13Windows x86-64

redc-0.2.4-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (7.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

redc-0.2.4-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (8.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

redc-0.2.4-cp313-cp313-macosx_11_0_arm64.whl (5.2 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

redc-0.2.4-cp312-cp312-win_amd64.whl (784.4 kB view details)

Uploaded CPython 3.12Windows x86-64

redc-0.2.4-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (7.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

redc-0.2.4-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (8.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

redc-0.2.4-cp312-cp312-macosx_11_0_arm64.whl (5.2 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

redc-0.2.4-cp311-cp311-win_amd64.whl (785.4 kB view details)

Uploaded CPython 3.11Windows x86-64

redc-0.2.4-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (7.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

redc-0.2.4-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (8.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

redc-0.2.4-cp311-cp311-macosx_11_0_arm64.whl (5.2 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

redc-0.2.4-cp310-cp310-win_amd64.whl (785.8 kB view details)

Uploaded CPython 3.10Windows x86-64

redc-0.2.4-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (7.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

redc-0.2.4-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (8.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

redc-0.2.4-cp310-cp310-macosx_11_0_arm64.whl (5.2 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

Details for the file redc-0.2.4-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: redc-0.2.4-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 792.0 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for redc-0.2.4-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 7d0912cd8c2c76421379d5cff30b098507574a731563083648c5dcf31882afb1
MD5 99a15fb8dfe0b65e7ec2c94770a927c3
BLAKE2b-256 6a37948ee2fc54833ac66fad9939a6d6a7a86828c0eb3a77d800b6e510052aec

See more details on using hashes here.

Provenance

The following attestation bundles were made for redc-0.2.4-cp314-cp314t-win_amd64.whl:

Publisher: build_wheels.yml on AYMENJD/redc

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

File details

Details for the file redc-0.2.4-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for redc-0.2.4-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 9b8a86fe938b482d4ed0eac92d23b27def25bfb672e38766cf5985999f03fe59
MD5 463eefcac3423bfda5da513d19109539
BLAKE2b-256 20d192ab7f8a9e623e426af575340adef95a69d252b103e86f1b6e24164de75f

See more details on using hashes here.

Provenance

The following attestation bundles were made for redc-0.2.4-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl:

Publisher: build_wheels.yml on AYMENJD/redc

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

File details

Details for the file redc-0.2.4-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for redc-0.2.4-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 f8e5942da71a308d293fc8218efd49e71d0a7097a1732b87e68f04cfa2660ffb
MD5 e5f043b2c90dbee6475f8cd79029f066
BLAKE2b-256 6224625e21cf599c1e090fb4490e1d12a7f9db933554cab9faf3ced52e5ce3c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for redc-0.2.4-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl:

Publisher: build_wheels.yml on AYMENJD/redc

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

File details

Details for the file redc-0.2.4-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for redc-0.2.4-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bc67df268b2b728f3f763ad8f80c37b0f1c639fa56bc241458c6443d0f126ddb
MD5 5236678b0176123d367dd3ba0387e501
BLAKE2b-256 0ae6df54d6757f6c29e10f9388b6f727845656b1331bee2160293902eac1c35f

See more details on using hashes here.

Provenance

The following attestation bundles were made for redc-0.2.4-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on AYMENJD/redc

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

File details

Details for the file redc-0.2.4-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: redc-0.2.4-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 784.1 kB
  • 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 redc-0.2.4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 40ab443a74bbaf9c0ac7545e92cb518b4b023f0c9198d0549b0310e64bb7335d
MD5 cedf212b89a3fef015cfac8d58cb333b
BLAKE2b-256 c30e302dbcda4f3928b5c28fe64e1794c74f759383bc72728871c97e9ce96d21

See more details on using hashes here.

Provenance

The following attestation bundles were made for redc-0.2.4-cp314-cp314-win_amd64.whl:

Publisher: build_wheels.yml on AYMENJD/redc

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

File details

Details for the file redc-0.2.4-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for redc-0.2.4-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 f006058dd3e171783c46d313ca68a0c2cede495e329e5dbf8920392e2f798f56
MD5 3108dc16531ff1eded16fbfe9ef0875f
BLAKE2b-256 c189cbc6bdfc24d7920b91ad61a73b5133d3477fc206af00ae13f6d1d72149ef

See more details on using hashes here.

Provenance

The following attestation bundles were made for redc-0.2.4-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl:

Publisher: build_wheels.yml on AYMENJD/redc

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

File details

Details for the file redc-0.2.4-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for redc-0.2.4-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 1b9816b7046160ed78924e91561493fe9977fd08fcae4bd8f7ef7abf181ddf91
MD5 ac6a14bb600f0828d85f16c74fb063f4
BLAKE2b-256 3f1074d43d6ee825f8f83b11d2650e98ee9efe3b06e59cab226fa3f7a3ade0f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for redc-0.2.4-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl:

Publisher: build_wheels.yml on AYMENJD/redc

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

File details

Details for the file redc-0.2.4-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for redc-0.2.4-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a2c93704543a6abef3b647b38c9e9ec9d5ca19ce8a2c1fefc0b96b3dbc3e70d2
MD5 35f76bf5d2310cf44861f772ba162efd
BLAKE2b-256 ad9bd30c7ccc20c1bec74b9f7a13e268f3914c67376edce1e8a54e503cbc602c

See more details on using hashes here.

Provenance

The following attestation bundles were made for redc-0.2.4-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on AYMENJD/redc

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

File details

Details for the file redc-0.2.4-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: redc-0.2.4-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 784.3 kB
  • 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 redc-0.2.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d53a64594fddfc92b810f44c686948e5c01b8d6ff8f1fd3fbdc3fe39ed295505
MD5 eb03c9a495d3825e9347729a6061da01
BLAKE2b-256 2dc5de92b1463d5ec1b02d98d908baeb95823809d573ae69d3abba05745382ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for redc-0.2.4-cp313-cp313-win_amd64.whl:

Publisher: build_wheels.yml on AYMENJD/redc

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

File details

Details for the file redc-0.2.4-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for redc-0.2.4-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 872b58dfa414bf277d89b66e146d6d17a4eefb8592bcc954973ee065120c3552
MD5 a12bbc5fe0372294ca7bab37d0e81dfe
BLAKE2b-256 e7833397538500262c6d919f844e1325559a27b72c1c8895765db65fa90a39f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for redc-0.2.4-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl:

Publisher: build_wheels.yml on AYMENJD/redc

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

File details

Details for the file redc-0.2.4-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for redc-0.2.4-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 4db2f95009aec9fc03e028cd948c1675968290da8c7ae9dbe2a2f7918512f55f
MD5 b0195349009d1b4ace7fd6d3932145e6
BLAKE2b-256 cadf1a40b273ab4a1c74140c309ba2bc029ed796607f51f37cf9abd4f65baba2

See more details on using hashes here.

Provenance

The following attestation bundles were made for redc-0.2.4-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl:

Publisher: build_wheels.yml on AYMENJD/redc

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

File details

Details for the file redc-0.2.4-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for redc-0.2.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 395bc144569f726d1237e9fe2c3a36490d0040f3e30a6c99a47f32b7ce42e864
MD5 729e7633e4818d261c36b894400cbfda
BLAKE2b-256 b38ace496337e77acefcb0451e507d718e3d3c7cfd99e7a5da79ae174a734e48

See more details on using hashes here.

Provenance

The following attestation bundles were made for redc-0.2.4-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on AYMENJD/redc

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

File details

Details for the file redc-0.2.4-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: redc-0.2.4-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 784.4 kB
  • 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 redc-0.2.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 972874cc9f38d7004f19992f83d4d442dcb96f51c9cfb0da7ec7beba01b718ec
MD5 671f855d7c7af90d7c6fa23986c5063d
BLAKE2b-256 65f30e1c2609749fbc96d5e1d04424b7ae818cc334f2531b411c96b401bbbbdd

See more details on using hashes here.

Provenance

The following attestation bundles were made for redc-0.2.4-cp312-cp312-win_amd64.whl:

Publisher: build_wheels.yml on AYMENJD/redc

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

File details

Details for the file redc-0.2.4-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for redc-0.2.4-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 7d30af7e8fc35b31d4b1f0d77df936143bc8aba5065e22c20da94e99ce3a2d2f
MD5 b998a3b9e9537ac4ac44c7d9de05dd3b
BLAKE2b-256 ec06832f17c11bde1567a78e9f6dbc03abf8dc238510be93189977fddb6ebe90

See more details on using hashes here.

Provenance

The following attestation bundles were made for redc-0.2.4-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl:

Publisher: build_wheels.yml on AYMENJD/redc

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

File details

Details for the file redc-0.2.4-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for redc-0.2.4-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 2d57bed0fc11de21ed696412e58b30117f0717158cad9e4ee1edb4501d90fcd0
MD5 d9f4b8096c3453d3d43532c3b6707f16
BLAKE2b-256 3342af884eb1626fbb158b1af0f4b92f3b06977380bbe530a57286e422251d90

See more details on using hashes here.

Provenance

The following attestation bundles were made for redc-0.2.4-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl:

Publisher: build_wheels.yml on AYMENJD/redc

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

File details

Details for the file redc-0.2.4-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for redc-0.2.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f0c85f2cb3540b3b8840ea3583c29cc63452768895302b97a3cc087a7e703af9
MD5 e728647a83b6acaa2f282aa1c4a7b46d
BLAKE2b-256 cd291a0d6e69406a41833e5afcf5de9eb37f99a24fd51397018d64b7c0a81d0b

See more details on using hashes here.

Provenance

The following attestation bundles were made for redc-0.2.4-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on AYMENJD/redc

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

File details

Details for the file redc-0.2.4-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: redc-0.2.4-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 785.4 kB
  • 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 redc-0.2.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7ad52e328dd1f5c01a1045e63a19c9a54260ef941fbfb50f51a249200feedc35
MD5 c0e015a42e175b3c200e460ac33657a8
BLAKE2b-256 7e729ecbf188d6e92b197f903251fa1d27e8c1054e3ec39e7f959e3172360b92

See more details on using hashes here.

Provenance

The following attestation bundles were made for redc-0.2.4-cp311-cp311-win_amd64.whl:

Publisher: build_wheels.yml on AYMENJD/redc

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

File details

Details for the file redc-0.2.4-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for redc-0.2.4-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 8571ca44a16db52b36010da1cf3d4e1aa938ea1e1a8d70619d30969f2ae73017
MD5 720ed74d330ba276d14588c56a9b8efc
BLAKE2b-256 238ff1f20190181489a3b7bf9c3b5b5f3efc6069370060d75721180586aa5143

See more details on using hashes here.

Provenance

The following attestation bundles were made for redc-0.2.4-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl:

Publisher: build_wheels.yml on AYMENJD/redc

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

File details

Details for the file redc-0.2.4-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for redc-0.2.4-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 67b3bfbf6783bb2d34eb74a0ceef0a3264bd769ab9924fe6c1081fbdd2aac6ea
MD5 9c801e8072e338dfe196835ff880d8f6
BLAKE2b-256 e238cff9e4e6716ff8cfef104ccb5d0e327cb1bd2585601c25cc21fe694e3f40

See more details on using hashes here.

Provenance

The following attestation bundles were made for redc-0.2.4-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl:

Publisher: build_wheels.yml on AYMENJD/redc

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

File details

Details for the file redc-0.2.4-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for redc-0.2.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 04dc1751ac11d97f3ce8a93ca928f10092e094ca164176b8736425d492d3c368
MD5 7b2f742612a96430a8ef66bcd563f80d
BLAKE2b-256 e0485e2c677b5da5a6f9de68fc60615387a06493464e08d9aa4637a81dcbee48

See more details on using hashes here.

Provenance

The following attestation bundles were made for redc-0.2.4-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on AYMENJD/redc

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

File details

Details for the file redc-0.2.4-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: redc-0.2.4-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 785.8 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for redc-0.2.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f57f48b6ff8846b250e25513ba7ce919c98182b19d42f1ea4f80dc79e88329e5
MD5 e7447924e8f40fcd98925ddf3980dd21
BLAKE2b-256 d90668932f40b2054cd2e1b386a1ef256d8d74b65612536a59060c2100375993

See more details on using hashes here.

Provenance

The following attestation bundles were made for redc-0.2.4-cp310-cp310-win_amd64.whl:

Publisher: build_wheels.yml on AYMENJD/redc

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

File details

Details for the file redc-0.2.4-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for redc-0.2.4-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 42a06175e73896443df15f99c923e9e3181ffb0b0355b1ac7ca1eac21193b1c8
MD5 569cedde7403f296116a058fe7fc0e16
BLAKE2b-256 42b5a10156101be84f3398cc2ee03b3e4d0f959e80fd052de7319a0cd38f7862

See more details on using hashes here.

Provenance

The following attestation bundles were made for redc-0.2.4-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl:

Publisher: build_wheels.yml on AYMENJD/redc

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

File details

Details for the file redc-0.2.4-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for redc-0.2.4-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 d2d40a3edac1e8cc54b2c85648196aadfaef7dcf163f611a92c280386be23879
MD5 03d7b06abcd765c24144a50f09ec05fd
BLAKE2b-256 9d5670e3ebfe5dff101d8fc38f1e9725e89e9ad1df2f4599a92fb233e61acbd6

See more details on using hashes here.

Provenance

The following attestation bundles were made for redc-0.2.4-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl:

Publisher: build_wheels.yml on AYMENJD/redc

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

File details

Details for the file redc-0.2.4-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for redc-0.2.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2818b44d39ba8d0470c2d17ea3b1401d9f35bb439cf078a4cdfec4f95490f7b5
MD5 5837e85ab0c43ca11e5ce447e460c7b6
BLAKE2b-256 02549a0480587a565b6ceaec2720b458026b64457cfd69d125db5617688b8996

See more details on using hashes here.

Provenance

The following attestation bundles were made for redc-0.2.4-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on AYMENJD/redc

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