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.3-cp314-cp314t-win_amd64.whl (787.9 kB view details)

Uploaded CPython 3.14tWindows x86-64

redc-0.2.3-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.3-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.3-cp314-cp314t-macosx_11_0_arm64.whl (5.2 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

redc-0.2.3-cp314-cp314-win_amd64.whl (780.0 kB view details)

Uploaded CPython 3.14Windows x86-64

redc-0.2.3-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.3-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.3-cp314-cp314-macosx_11_0_arm64.whl (5.2 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

redc-0.2.3-cp313-cp313-win_amd64.whl (780.3 kB view details)

Uploaded CPython 3.13Windows x86-64

redc-0.2.3-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.3-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.3-cp313-cp313-macosx_11_0_arm64.whl (5.2 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

redc-0.2.3-cp312-cp312-win_amd64.whl (780.4 kB view details)

Uploaded CPython 3.12Windows x86-64

redc-0.2.3-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.3-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.3-cp312-cp312-macosx_11_0_arm64.whl (5.2 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

redc-0.2.3-cp311-cp311-win_amd64.whl (781.3 kB view details)

Uploaded CPython 3.11Windows x86-64

redc-0.2.3-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.3-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.3-cp311-cp311-macosx_11_0_arm64.whl (5.2 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

redc-0.2.3-cp310-cp310-win_amd64.whl (781.7 kB view details)

Uploaded CPython 3.10Windows x86-64

redc-0.2.3-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.3-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.3-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.3-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: redc-0.2.3-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 787.9 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.3-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 4947e42fce36b64913b179fd1e29707e7c563a5a1cff8d45aa393ec214584d26
MD5 937495324a102574c35d10c7ffed4732
BLAKE2b-256 e2425d8a645222cddd617fa459dc8f5fd49cfdec1dbef32e9014a042d974b31c

See more details on using hashes here.

Provenance

The following attestation bundles were made for redc-0.2.3-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.3-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for redc-0.2.3-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 1cf94d5b55a4a0d99774dd9b20eb943efa3541496a60cab932d7e645e27db149
MD5 10701b645f694be18eef5b138090f8b9
BLAKE2b-256 a42f536fef17e57e24e33a9965a516df3bdbe4b5b363907d8af4ceef639ba3f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for redc-0.2.3-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.3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for redc-0.2.3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 c1b59b885c0342165550c17afea55b4d4189446ce069b8ec18813a12f785024b
MD5 5ad42eabea1f72f47d6bc406857d1d55
BLAKE2b-256 b40d973af71f1b09a289733e5e3fe1912f1684d61d42a4295518bfae813f4b75

See more details on using hashes here.

Provenance

The following attestation bundles were made for redc-0.2.3-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.3-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for redc-0.2.3-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7dd4012cb5f221f6a753eab3a6dada7c2209b32e5278d736c72a2acab20700e1
MD5 af24a53c466cd082db66aa1ac22d0ff7
BLAKE2b-256 f621312d6c53ebeb121746f84b3a055bf6ac4e92a41120503899d58b85c138ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for redc-0.2.3-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.3-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: redc-0.2.3-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 780.0 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.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 15bad751c7cdbf9d8b4a8bfc979bf94d62c8c895ba97c12beb5eaa293a67bf15
MD5 bd9da5cac10f98053682e721cf630692
BLAKE2b-256 7b030e8cfd51c55462e568e3a307b24ae5b485912ec2fe3d580bca5e7ffcbe7e

See more details on using hashes here.

Provenance

The following attestation bundles were made for redc-0.2.3-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.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for redc-0.2.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 6c4a0ae9aebbbd65831b13a72645314694851d661c22f8b41f5a77c06039065f
MD5 f49ffc2153a08b91d14daa693888b10f
BLAKE2b-256 b5b8a1196e8891bb58758d1c43e30728b1952801f99f696a52b6f904b917cd5a

See more details on using hashes here.

Provenance

The following attestation bundles were made for redc-0.2.3-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.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for redc-0.2.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 bb41642ad51d724f6eeca9bbecfacdd2b1cb617d912898e1a8c727f1aafa6f34
MD5 0ad6c432c2fc96fbe54eb75d7e53f65c
BLAKE2b-256 b604f3f4134089e273adefe28fe367d564aa36f86b109bcdbdab210282af4c5c

See more details on using hashes here.

Provenance

The following attestation bundles were made for redc-0.2.3-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.3-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for redc-0.2.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5b6934d5f05a476e2061c5d776ee5b7f6383c549ab21a5ed91c1ad5ee64861e8
MD5 2ff718795fc62b95bb21b6ce10862c05
BLAKE2b-256 862306f69bdd0eaa27e4b40a50008641da5faebfb592a7a84c86da4332443378

See more details on using hashes here.

Provenance

The following attestation bundles were made for redc-0.2.3-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.3-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: redc-0.2.3-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 780.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.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 2273b8b2045bcdb74e8410ae09ee8f2caebdff30fe77db72387a13a1fbd7370a
MD5 4051a680b22e4189bcbb6f6c0afe0739
BLAKE2b-256 5cc1243035f259713158a000a97d3837494002d8bab2428ab4419898ca1f73af

See more details on using hashes here.

Provenance

The following attestation bundles were made for redc-0.2.3-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.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for redc-0.2.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 4f58639580183352845afa59132c288ed3500638a24c74c6191126275d865098
MD5 786a55aa0fc190ad56db6c2323f071a1
BLAKE2b-256 2671314fcb16242cf199d2b0b05bcdbd618c199678fd207f573f0d01dd20711e

See more details on using hashes here.

Provenance

The following attestation bundles were made for redc-0.2.3-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.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for redc-0.2.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 018df3307f418ee6624b004b787cb7675e36f5bb4e421d3ba358ab5d4e2f4ba9
MD5 710e0d8d6b6c4c1aed88f225960043f1
BLAKE2b-256 334b1b751ea9ef37879df1aabb7d1b6bfa0dfbdbb17cc914b40eb01f007128e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for redc-0.2.3-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.3-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for redc-0.2.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fc8c97dce04252df1eeb308d9f0c69690f41fff4062c65c9c920ac64a1096422
MD5 efe9003f4be58376381a9aac52fcd679
BLAKE2b-256 8571d5a935754f3c8a458ccf4a417185aa597a9fcf671111b8ba0511f60aa0f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for redc-0.2.3-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.3-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: redc-0.2.3-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 780.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.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e477ce37dae2c9cdc10689ce174c153600ea3d27ecdd5b166775dc6fb5c2f373
MD5 976280bcb64a8c2e4bf272d194c2587c
BLAKE2b-256 1cdc80f0c5a5ff5df29ff9066e31057f271556acada250b98950e956d15b1caa

See more details on using hashes here.

Provenance

The following attestation bundles were made for redc-0.2.3-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.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for redc-0.2.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 81b1abc7d14bc525dd7992c48c1353bdd0e1e89270edb4b4cbbad1853e46efb6
MD5 eeeba881b0429171553ba2f60ad8f8da
BLAKE2b-256 be22183c5ddba484655e350508b50489271016e826fcdbbc97e7ad1c2a943941

See more details on using hashes here.

Provenance

The following attestation bundles were made for redc-0.2.3-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.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for redc-0.2.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 10fc3e7129e20291dba2b32ff44a108c3ee9d71d7112966348741a6fa35ddd41
MD5 0e6a704a2ae579d84181adc10b4e2228
BLAKE2b-256 07650be8ee942f4c165ccf29b07f9adee886890620f7866966df08ca16fab94a

See more details on using hashes here.

Provenance

The following attestation bundles were made for redc-0.2.3-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.3-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for redc-0.2.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 166116a07bb278d466ae847d5bb0c9c595a1673d7b27674953ebedb93c004aeb
MD5 1111dbb18fb74fc5ee1304e2057fe144
BLAKE2b-256 511aeee8294942f0155255b6fc42694561ec9f0f7ff11f3474b66f902add14fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for redc-0.2.3-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.3-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: redc-0.2.3-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 781.3 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.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d0906005a732d45589ffe5b7d1115875fa1274f7bc471e03bb34ed75b45de91f
MD5 052e6de7c2e5ecbe734a1005ec39c548
BLAKE2b-256 19af6fe9759d255cf184038b6fb28563a366bdaf2c335ef7ac62c7e17bbeb202

See more details on using hashes here.

Provenance

The following attestation bundles were made for redc-0.2.3-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.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for redc-0.2.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 c53634c1137be9bfc01ef9f37ec0956173320cee1b79d833c048f787fe6a2796
MD5 c41883d4969787a6557c98be0a754662
BLAKE2b-256 bf654d8197dc051af27c03345a0db0953ef90db924a93df1558edf3c84cff3ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for redc-0.2.3-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.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for redc-0.2.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 cf869381908b1640db04d97417fa797ecfd2af5213c92c5f167716481c9f2860
MD5 3cf4e97d24181a8ce7d2c2487c115f75
BLAKE2b-256 1426af3b466fe74542fb4cf609619d62b0a6d3eebadf103820c292e65bb4566c

See more details on using hashes here.

Provenance

The following attestation bundles were made for redc-0.2.3-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.3-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for redc-0.2.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a537f6eda0b0ec97ffae65ac9a2e43990e1d6fd58c25111950e7e1a05bbc487e
MD5 cd11fb72542444addb5c9675f98f8e28
BLAKE2b-256 1eec517f8731a0ab5c5c2f3b1b12edbb7c4438862340d016181ebb072507c1dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for redc-0.2.3-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.3-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: redc-0.2.3-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 781.7 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.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 2fa8533a4432d7edd1bb8e4e532c0211a92a0eb1dc56394e1d7e8065e78dab3d
MD5 55822b4b966a176c59d709b07fdb2354
BLAKE2b-256 d1d676f3fd648206057484a7e61cbb60de918ff5ec57306bdf9ff70880ede294

See more details on using hashes here.

Provenance

The following attestation bundles were made for redc-0.2.3-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.3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for redc-0.2.3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 b1626d829fdf7eb5cbcd63c3c3bfe719a4db96e7d6603f78808cd824a43b2aaf
MD5 1dff65ad1cfb1c1774822ddbeaf98271
BLAKE2b-256 2f578fa11c73901734e520061d67bc583acc9e502d46ff0e446b35cff6ff1b28

See more details on using hashes here.

Provenance

The following attestation bundles were made for redc-0.2.3-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.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for redc-0.2.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 9fdbc67e9520a57db70f43b9111c86c09e7ee0ac8785af42d8df478d4d0f73fb
MD5 04aaa1233e24d3f5798cc650c7818fea
BLAKE2b-256 4847bdbce897965e424ef0ccf9035417287e53f3176e64e31449cd85253fc98e

See more details on using hashes here.

Provenance

The following attestation bundles were made for redc-0.2.3-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.3-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for redc-0.2.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 377cedcafc5f4deadf2318b99d1125fe0559dee476957a312ce03c46534253b8
MD5 ffec4091cecb5d034824960d52a8ee0f
BLAKE2b-256 8136f1f9c8e840be5c003001d58da231953e3b710f31266a55e45eff8cc9d8c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for redc-0.2.3-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