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())

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

Uploaded CPython 3.14tWindows x86-64

redc-0.2.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (7.6 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

redc-0.2.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (7.9 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

redc-0.2.2-cp314-cp314t-macosx_11_0_arm64.whl (5.1 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

redc-0.2.2-cp314-cp314-win_amd64.whl (724.8 kB view details)

Uploaded CPython 3.14Windows x86-64

redc-0.2.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (7.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

redc-0.2.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (7.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

redc-0.2.2-cp314-cp314-macosx_11_0_arm64.whl (5.1 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

redc-0.2.2-cp313-cp313-win_amd64.whl (725.1 kB view details)

Uploaded CPython 3.13Windows x86-64

redc-0.2.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (7.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

redc-0.2.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (7.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

redc-0.2.2-cp313-cp313-macosx_11_0_arm64.whl (5.1 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

redc-0.2.2-cp312-cp312-win_amd64.whl (725.2 kB view details)

Uploaded CPython 3.12Windows x86-64

redc-0.2.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (7.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

redc-0.2.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (7.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

redc-0.2.2-cp312-cp312-macosx_11_0_arm64.whl (5.1 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

redc-0.2.2-cp311-cp311-win_amd64.whl (725.4 kB view details)

Uploaded CPython 3.11Windows x86-64

redc-0.2.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (7.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

redc-0.2.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (7.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

redc-0.2.2-cp311-cp311-macosx_11_0_arm64.whl (5.1 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

redc-0.2.2-cp310-cp310-win_amd64.whl (725.6 kB view details)

Uploaded CPython 3.10Windows x86-64

redc-0.2.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (7.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

redc-0.2.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (7.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

redc-0.2.2-cp310-cp310-macosx_11_0_arm64.whl (5.1 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: redc-0.2.2-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 730.2 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.2-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 05d4150753498695ce029d2ede034a4503b626e36648f89134ccf22b50ab1093
MD5 60864ca97391118ab8c7745ba3c8d785
BLAKE2b-256 3be2cc79908ef830ed3c27ccd65c6572e1e6808f6c342d896ffb4d79c41ddbce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for redc-0.2.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 4aa46e6505f6e41b8bc32f3657d607a3ca3efda67d38ed7bed560466e73b525e
MD5 532f6762974d01a86896149b333383d0
BLAKE2b-256 a03973050ea59e055e84786419019029780eabccf702323db5417e83b06b2241

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for redc-0.2.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 24d0e4befda4aefefdaef34929b886835745bfd64152fee1979be8673941dd49
MD5 2bf61579b50dc7fd1dc11a4af8bdfc8e
BLAKE2b-256 b1d39b57752bcd40aaa755326e135ef9736b2834baa08f27568138f77f4a984a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for redc-0.2.2-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3afb17ff494e7d9f7e4e2f3915a72b7523ef2e6b775688557c78169da35eeee0
MD5 ca217d2bbf93b21510b217034c40bc4d
BLAKE2b-256 963d79c3c51b652d0b4517ff2596adde28c83b704cb7cbb6f118163912975724

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: redc-0.2.2-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 724.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.2.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 4ecd8e967959f3df9750524aff8d316a0003a29c686bf467fc1c5d4e6653ffd7
MD5 8a8b766d0cc4375d6c5f1d6b6543a11c
BLAKE2b-256 213359d92112a15749ec914e656afb88264f6422871f3a6b970b8037474bb6fa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for redc-0.2.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 5041d56771281ecdd40f71885f00ca76dd57ecf725758a2f101660bf188d29f6
MD5 cc1aa52da010d71e51aa271901f81ca2
BLAKE2b-256 9f17a12167f384aa7d68da0faa941dc46df1b5cda93f4b0d42f9157566b274c9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for redc-0.2.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 c4a6aed90f6c580559747177614f70dfc647eb9c994b33a2db57bbfa9c05d8b2
MD5 dddc709cb84236ec8f6a366b37ecdf5c
BLAKE2b-256 b40338e4468a1a6fc4638c77b505ec35b7dff15444fd0c92673973ec699e51a0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for redc-0.2.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 53d0db23b74ab1e07ef9e3e1cf0ea27f3cc53329a06c671edc544ba54d117243
MD5 f294c96c514182234f6700773aee44d6
BLAKE2b-256 8a8fc79e709c03d36571656521557680c7bf39fa09d87a94d35eb9a02cf2fbba

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: redc-0.2.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 725.1 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.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 36052e8f13aceed9c16561f96a71c8c159b5e49302966c60db68b549892d1a8e
MD5 9cd2320127b417f756ad6cb550b40f68
BLAKE2b-256 f67b8375e398563b94314a8ef02f710887734f28230bab92d0128d65efe4c9ca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for redc-0.2.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 f3a66aa14dfc9c1de82c056cf52ce433a5e8f18c44149bbe01405199fbac3c6e
MD5 0ee589076354c48cb464effcc58ca8d8
BLAKE2b-256 9290d2b8db34d28ac2836adb8814e7b8c0af7aa4e5af4cd4a9e4f8f19f1ce416

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for redc-0.2.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 b19a9eecdbf383f58d56d0fcd50507fd4e51d4f55684e2506732b6b64d09fe86
MD5 5c6b1b10927839b0c24ab92430d961b6
BLAKE2b-256 bb714c0f8b0a09fcd5f3bc331a0b31011c660155e86e4f64c5d25d132517471a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for redc-0.2.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e0cc8aa3f98c6ff1bfc1f1b1bdae34e5e2115ae0de3e335a6038b27579fba2f2
MD5 32a97f2f234e5b196d0c35bc490b1974
BLAKE2b-256 2652edafcb153f5354fe6877f4f4c12040bdb02ca5fb15e574951dbb2ca4af82

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: redc-0.2.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 725.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.2.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 974f58385f62ebe3aadc5e14b52fd0c7df0005efae69466def9a86df5caaf50b
MD5 00b39e19f1bf77fc43767b9c0a35de37
BLAKE2b-256 7cf01c5ad78cc02329138a9e28470a1c197dad151e8d028cdec66a1a740fd271

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for redc-0.2.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 b9eea14a0aa4a547b992b2ec1928d883b5ec45633039bb0fd209f725e6652c7e
MD5 d21670cb5821ccae7a3159467b6de393
BLAKE2b-256 bf8b6eac918be787b161b9fba2b4f6d08e3eeba813e371f6d209bf0055d3f3c2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for redc-0.2.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 b1e3e04805dcaa238a9243363f31ca1b6d689ffd876e0370a36a79066192b305
MD5 020478c2500cd0e9a0e588edc12e4603
BLAKE2b-256 f6e7dec64603849963ad7e268f7bf67b260a1c864709dc4ac68c249253126d63

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for redc-0.2.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dc6507e367595362e42afba5c4abff9ae8e6fa1d5d6856245c0f541280a7939f
MD5 20d39e1f9eaf24f23b83ba01620566df
BLAKE2b-256 9984a96d88aeb5515948b1b40569b4247543519dc77275c4c2e8fda2051acef0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: redc-0.2.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 725.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.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ae10242c635ac0be278728c0a6e795e52e40ebe76550c045989f78934d3a4ac5
MD5 3ebec4e76905e2fdeabc7b53ec92f910
BLAKE2b-256 d60b1b66816e2d197c57bea8c45f01fc812a90810d31d27a6ac6bb11df3074be

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for redc-0.2.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 9568f086e78d99ef8c6b7ceaf2d32c15fe65b8bb1175d6ebed21955d489b789e
MD5 6e45c1a5ead13f8c0134e2c23f17e504
BLAKE2b-256 c76b22667553f3a2eb0f1e95af18052cc75df46e859cb27cf489ea6b9e1f85fd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for redc-0.2.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 dd2eaa2855b51624c5796ef79e98f4ae42e812090a7c17a6095e93e42cbf14b7
MD5 c1dcb4cc7e613ba28ed05e3458168c8e
BLAKE2b-256 13b851bb70c46ed7e5ad5d30bcc305cfeaaf5b21444b464ae21752267e921459

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for redc-0.2.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 49b1e04f1ddabfa32c941b83e21415a36d02711861699cd2e41bbe4045b68160
MD5 c84fddaf8e65f84ff6560cad5a682781
BLAKE2b-256 215921a6e9eaee7b3eed12299d159b9a47346bad69151e39e1d52bef9ea010f0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: redc-0.2.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 725.6 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.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 626570f47f7af0abfd7479a5f56fd05d6d62b1565ee1fcd1a3f7ebce2ebc12a4
MD5 f4f332e16bc77efeb228cd6a5e25c3be
BLAKE2b-256 0e72a6e9b4d35d026e77427b4dbd6ed01539de1e4b780677a1c00c8519a1c5a3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for redc-0.2.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 97be4316401f43112b9048f057c3fa58051232c18887e55ab4fc86b73447ce18
MD5 19d46ecc024b60efae407d787448022d
BLAKE2b-256 47b2370f65c3cb91e2735277c9e67a5658106517a76bae2429a1d6066a0bd25b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for redc-0.2.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 2c4e71e8f3864d9d251b14175ee0c9de9c821a40b66fe688605dc885c4422218
MD5 bd9f0a2d6ddf2f0416fda769bad957ec
BLAKE2b-256 f26d07b15dd24cfebd6807f1549128ae854529c1db78f1777e38e7bed2e50d41

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for redc-0.2.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5423ea2bddc1d5232ce973a56bbddacef3856794e77f8dcfb7c7ec8d70c91bfd
MD5 86436dade16572e0278678e25809c523
BLAKE2b-256 fe291b1961f3a39a12d6ca794f9a505f93a8e79858f7a51732ea000472607ffd

See more details on using hashes here.

Provenance

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