Skip to main content

Async HTTP client for Python with native libcurl performance.

Project description

RedC

Async HTTP client for Python with native libcurl performance.

PyPI version Curl version Build status Python versions Downloads Support with TON

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.3.0.dev2-cp314-cp314t-win_amd64.whl (793.8 kB view details)

Uploaded CPython 3.14tWindows x86-64

redc-0.3.0.dev2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (7.8 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

redc-0.3.0.dev2-cp314-cp314-win_amd64.whl (785.8 kB view details)

Uploaded CPython 3.14Windows x86-64

redc-0.3.0.dev2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (7.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

redc-0.3.0.dev2-cp313-cp313-win_amd64.whl (763.0 kB view details)

Uploaded CPython 3.13Windows x86-64

redc-0.3.0.dev2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (7.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

redc-0.3.0.dev2-cp312-cp312-win_amd64.whl (763.2 kB view details)

Uploaded CPython 3.12Windows x86-64

redc-0.3.0.dev2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (7.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

redc-0.3.0.dev2-cp311-cp311-win_amd64.whl (764.1 kB view details)

Uploaded CPython 3.11Windows x86-64

redc-0.3.0.dev2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (7.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

redc-0.3.0.dev2-cp310-cp310-win_amd64.whl (764.5 kB view details)

Uploaded CPython 3.10Windows x86-64

redc-0.3.0.dev2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (7.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

redc-0.3.0.dev2-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.3.0.dev2-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: redc-0.3.0.dev2-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 793.8 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.3.0.dev2-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 24fad6a99be4c0f9d2f0969f5c9a23e817bebd8243f8df290fc5b8074dd6a1c8
MD5 4b6f628822f9ad36d4c146aa221e0027
BLAKE2b-256 be9c51e5e8c13bd8d287e5f4170bcb5f94cc9d18241598bf551dd67bfba1bb98

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for redc-0.3.0.dev2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 58c5c8bb30294439cf50ba4f35e30f3e4c7585517f6f7f3f938c55fd47ce74cb
MD5 dc2d6656fa86a848c37831a78fd7d61e
BLAKE2b-256 6bd0f925b148053d96679a2bcd29d9dc203c5e771d7aa129a9b427cb746a7f3b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for redc-0.3.0.dev2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 ae2a2b98a655a0eb443fdc1b840e71e5ebd419acfb10b87bc7fa25c9c1138cc9
MD5 7df8405c522744a9c5d3a086e4a90644
BLAKE2b-256 53c946a957a82ea6acf4e0d7e830a708427d6e8051df838fdef19a817434c0d2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for redc-0.3.0.dev2-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1357332004ea349df406d027bc9c577e3a4fd0b29ab792e63c8f1e3be5c71c8a
MD5 44d460db2bf4e43a0b5a5d85043fa360
BLAKE2b-256 cb4e2b92cf55928fec5ef23717255cb9fd7f76debc097fe758ffee424da73742

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: redc-0.3.0.dev2-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 785.8 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.3.0.dev2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 a1aee7a76c6f6928728d3361cb9084b31a882f3d685c25875dbebe87d8e31a7d
MD5 a312ed6f1a747607c9062ea7a3ecccfc
BLAKE2b-256 e883188b02bb81fdcceb1c619580dc5627af65463710a214451bd35c8162b242

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for redc-0.3.0.dev2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 8fc7d5d20525689f993c92aa7066452d5596780bc61ef146dc3a2b4d7e698115
MD5 fda1bb30e664610d3c4f1915e0d460cf
BLAKE2b-256 f86202aead43deef8389e824249bf7967f3b46b041ea2ecf1b9f08f07975f3bc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for redc-0.3.0.dev2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 2b24e6f93027755f079a694835daa89f2d67eb7c0d4191ebb41fb4ebb1e92623
MD5 f6c88e8e11c87fc0e2bf1faef694c97d
BLAKE2b-256 59accb2a6b5365b777e92f9f9f58c0e2f26d63baa06945676a2d1351cf0c7bde

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for redc-0.3.0.dev2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 596f90300fa31d40c04dcee63f18a7c5921001e8641b73d8f2b12cd8fd74e558
MD5 6ab425d524392829746d80527c59589a
BLAKE2b-256 e7ecaff465ebdff5cb6b7f81e26a40cb89c5a99ba85929c9efa0b557e87ab2b6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: redc-0.3.0.dev2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 763.0 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.3.0.dev2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 bd87d81cf6f902e3b20e969e829e8d96d2bcc5c3a43acf908d3c5534cbd609ec
MD5 242b7ef16af7b7bf9b9ef445b2e53211
BLAKE2b-256 0225ba07e9df1610a6c5fba2e8d87ca628d2111c69880459b80523e78ac0d46c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for redc-0.3.0.dev2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 a01a594ee593ccf9951b4be5717764b0db9d0531988ddf433de71fcb3e653913
MD5 27347ff6ba36a36c39bb337244c03682
BLAKE2b-256 da02ec782c9ea5c27dc07b32e56dc580c2b5d6bde48534dd2ac3d75001908c2a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for redc-0.3.0.dev2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 8f3a8da38516ba1afee50e21e9d03eb88fe620e0a9674d8d61757d540c25afaf
MD5 ff41cc232cb664edea245f14425a967c
BLAKE2b-256 34578ca62a66b75762b8a436fd10a6c250a2aeec420568a26b86a9f60757ef91

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for redc-0.3.0.dev2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9d9e0776c417f066af3e2b658185bac6d5fd6288be73051ec87eafd9479dd50b
MD5 a6453cab4eb3378c504c48b82c771c8d
BLAKE2b-256 f04449c6656a01797436df20d060c4c903cea7a0ad521cd11af740f7bf3d1eed

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: redc-0.3.0.dev2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 763.2 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.3.0.dev2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 6d42a01b427e1c41000878e43592977bd3f23350d980f0d7676c24cc90d908d0
MD5 4677a06747d72f39d1cd99655f54f06a
BLAKE2b-256 393ab70cc52018be453b9b9bcb57ad5eeba1bc16edaa4edc3192f1af958dcdb1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for redc-0.3.0.dev2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 73de9fdf298ef0342c9889b1cad80ac6c713a7ec52d785c45e9bb2e799063778
MD5 3ebaa006822f41b09797332870c7cc02
BLAKE2b-256 67fed05a8d39f8df55ca772f8e7881de32aecf36f021f1cb9e713d1cda4e6a52

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for redc-0.3.0.dev2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 76895984d4a44d103ea744bfb8ea2bcbcf49891b2c7af1b0dff8393ecfba2aa3
MD5 abb62213c2a0ebcf191a0835a88ba9d7
BLAKE2b-256 31d8f57759a6c2cd8d4e4aa9030f243d709dfbb63f655da08bdb00caaa068811

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for redc-0.3.0.dev2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bd1346990ac18917e10b8668fbb3fc3428fb1c2d5af21484ad15f195466517e1
MD5 cc8390f204c8cf6832316a879d86f1d3
BLAKE2b-256 0ee228273583d4469ad17e1a7923461b69f2d3bdf92881725ab8e4ea4ba665a5

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: redc-0.3.0.dev2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 764.1 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.3.0.dev2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 0207b3721742485feeaa0f2a1b92c8881e5a9c3fa52f622c9f018592d070f661
MD5 9dd65fbf7a9322b2dfcabc0ce127844b
BLAKE2b-256 c21ddb7f954005b8bcaeda8d28468fdc83f9e037c962969b6b1a99752581af05

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for redc-0.3.0.dev2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 8f4d9cbea723fb4e3c776c94ac4324c7e198aadb2ae443af9b756d92bceadd3b
MD5 c3c8be4f7f1dc5c3552dae2bf065632c
BLAKE2b-256 d8b11ba5a02b5b3b3388cb75d01c80ddfaa4fc83584d16bb8e4bd50378bc11fd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for redc-0.3.0.dev2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 06c416f193189564adc9252c9d3e2f23e72b47d73daf591a831e9d543c732954
MD5 28154ef7217357e14f6a7f77df685ea4
BLAKE2b-256 06cd1c4f896c4e1dc7ce3cfeb7649f7d4e00e1b2bcd146b6cd28e79885dd6f54

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for redc-0.3.0.dev2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8a8f4370498e1fe401e58a119e4b0b0bc65ce0074f739a1ba328b20e7d022d43
MD5 db78ecdbfce7b0d589dc3ff697409297
BLAKE2b-256 763beb4372c86fc1c007706ce1037844b83e691aad2abbe6045c3cfde8e711d1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: redc-0.3.0.dev2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 764.5 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.3.0.dev2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b86a7e4b116b580ab1a3f99296ece868a1e89c3243e4901787b12e705aafd34a
MD5 3220f0149fe7b302571983524756b00e
BLAKE2b-256 0f68f638a7ec0a6f9c0cb70df1e5ef4ba2f4cc5b6b391be4fe225ecf2c7fb384

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for redc-0.3.0.dev2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 f13ee41d2981d1ef420122ffa6cea3e04bd6f84bbc3876f1b1ccc1866add7843
MD5 8a68c852e36125c82eb4652da74c8555
BLAKE2b-256 72262a62e12a5178e5c87e0043282dd6ae62c14eda33e86e6bdaeb6675faa405

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for redc-0.3.0.dev2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 9a2653993a7afde6092e5985fcb471fcf80ee67a401b1b15283df672a9fa1d18
MD5 e718fb67c1e4c716f9427f261735c8a3
BLAKE2b-256 83300a0e75e9bd1ab54d6d14f9f108b2466178c232f514a163b456a988239881

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for redc-0.3.0.dev2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1949d0277579c67b40863191dc24fa8699e44ecc5910360e48d8dcd26ff27c65
MD5 da4cf449690107c049aa71d98f8cb4cb
BLAKE2b-256 89417a48b06060a6b489a80d698c6c34da61cfec193ce8dfa98c9daefc013222

See more details on using hashes here.

Provenance

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