Skip to main content

PyFastCDC

License Issues PyPI Version

A high-performance FastCDC 2020 implementation written in Python + Cython

Supports Python 3.6+. Provides prebuilt wheels for Python 3.8+

Its core algorithm implementation is a direct port of the v2020 module from nlfiedler/fastcdc-rs, which means that the output of PyFastCDC completely matches the output of nlfiedler/fastcdc-rs

Installation

PyFastCDC is available on PyPI, with prebuilt wheels for many common platforms thanks to cibuildwheel

To install, you can use pip or any other Python package manager you prefer:

pip install pyfastcdc

For platforms without prebuilt wheels, a suitable build environment capable of compiling Python extension modules is required. For example, on Debian, you might need to install gcc and python3-dev via apt

If the Cython extension fails to compile, the installation will fall back to a pure Python implementation, which is significantly slower (about 0.5% or less in memory chunking speed)

I only want to use the Cython implemetion, not the slow pure-Python one

You can set the environment variable PYFASTCDC_REQUIRE_CYTHON=true or PYFASTCDC_REQUIRE_CYTHON=1 for the pip installation command to disable the pure-Python fallback on extension compilation error and make the installation fail hard. Thus, after a successful installation, you will always have a working Cython extension

Example bash command using pip:

$ PYFASTCDC_REQUIRE_CYTHON=true pip install pyfastcdc
... some pip output ...
Building wheels for collected packages: pyfastcdc
  Building wheel for pyfastcdc (pyproject.toml) ... error
  ... some pip output ...
  ###########################################################################################################
  Failed to compile pyfastcdc Cython extension, fail hard since PYFASTCDC_REQUIRE_CYTHON is set to true
  Unset PYFASTCDC_REQUIRE_CYTHON to allow pure-Python fallback if that's acceptable for your use case.
  <class 'distutils.compilers.C.errors.CompileError'> command 'gcc' failed: No such file or directory
  ###########################################################################################################
  error: command 'gcc' failed: No such file or directory
  ----------------------------------------
  ERROR: Failed building wheel for pyfastcdc
  ... some pip output ...

Usage

The usage of PyFastCDC is simple:

  1. Construct a FastCDC instance with desired parameters
  2. Call FastCDC.cut_xxx() function to chunk your data
    • Call cut_buf() to chunk in-memory data buffers
    • Call cut_file() to chunk a regular file using mmap
    • Call cut_stream() to chunk a custom file-like streaming object

Example:

import hashlib
from pyfastcdc import FastCDC

for chunk in FastCDC(16384).cut_file('archive.tar'):
	print(chunk.offset, chunk.length, hashlib.sha256(chunk.data).hexdigest())

See docstrings of exported objects in the pyfastcdc module for more API details

Please only import members from pyfastcdc in your application code and avoid importing inner modules (e.g. pyfastcdc.common) directly. Only public APIs inside the pyfastcdc module are guaranteed to be stable across releases

from pyfastcdc import NormalizedChunking         # GOOD
from pyfastcdc.common import NormalizedChunking  # BAD, no API stability guarantee

Performance

With the help of Cython, PyFastCDC can achieve near-native performance on chunking inputs

benchmark

Each test was run 10 times for averaging, achieving a maximum in-memory chunking speed of about 4.8GB/s

Benchmark details

FastCDC parameters:

  • avg_size: Independent variable
  • min_size: avg_size / 4 (default)
  • max_size: avg_size * 4 (default)
  • normalized_chunking: 1 (default)
  • seed: 0 (default)

Test environment:

  • PyFastCDC 0.2.0b1, precompiled wheel from Test PyPI, Cython 3.2.4
  • Python 3.11.14 using docker image python:3.11
  • Ryzen 7 6800H @ 4.55GHz, NVMe SSD, Debian 13.2

Test files:

Test command:

cd scripts
python benchmark.py --test-files rand_10G.bin AlmaLinux-10.1-x86_64-dvd.iso llvmorg-21.1.8.tar

Difference from iscc/fastcdc-py

This project is inspired by iscc/fastcdc-py, but differs in the following ways:

  1. Based on nlfiedler/fastcdc-rs, using its FastCDC 2020 implementation aligned with the original paper, rather than the simplified ronomon implementation
  2. Supports multiple types of input, including in-memory data buffers, regular file using mmap, and custom streaming input
  3. Does not include any CLI tool. It provides only the core FastCDC functionality

License

MIT

Reference

Papers

Other FastCDC Implementations

Download files

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

Source Distribution

pyfastcdc-0.3.0.tar.gz (31.7 kB view details)

Uploaded Source

Built Distributions

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

pyfastcdc-0.3.0-cp314-cp314t-win_arm64.whl (433.6 kB view details)

Uploaded CPython 3.14tWindows ARM64

pyfastcdc-0.3.0-cp314-cp314t-win_amd64.whl (450.3 kB view details)

Uploaded CPython 3.14tWindows x86-64

pyfastcdc-0.3.0-cp314-cp314t-win32.whl (438.2 kB view details)

Uploaded CPython 3.14tWindows x86

pyfastcdc-0.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl (849.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

pyfastcdc-0.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl (840.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

pyfastcdc-0.3.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (861.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

pyfastcdc-0.3.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (875.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pyfastcdc-0.3.0-cp314-cp314t-macosx_11_0_arm64.whl (156.7 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

pyfastcdc-0.3.0-cp314-cp314t-macosx_10_15_x86_64.whl (166.8 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

pyfastcdc-0.3.0-cp314-cp314-win_arm64.whl (425.7 kB view details)

Uploaded CPython 3.14Windows ARM64

pyfastcdc-0.3.0-cp314-cp314-win_amd64.whl (440.5 kB view details)

Uploaded CPython 3.14Windows x86-64

pyfastcdc-0.3.0-cp314-cp314-win32.whl (429.6 kB view details)

Uploaded CPython 3.14Windows x86

pyfastcdc-0.3.0-cp314-cp314-musllinux_1_2_x86_64.whl (801.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

pyfastcdc-0.3.0-cp314-cp314-musllinux_1_2_aarch64.whl (779.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pyfastcdc-0.3.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (808.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

pyfastcdc-0.3.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (797.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pyfastcdc-0.3.0-cp314-cp314-macosx_11_0_arm64.whl (145.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pyfastcdc-0.3.0-cp314-cp314-macosx_10_15_x86_64.whl (159.7 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

pyfastcdc-0.3.0-cp313-cp313-win_arm64.whl (419.8 kB view details)

Uploaded CPython 3.13Windows ARM64

pyfastcdc-0.3.0-cp313-cp313-win_amd64.whl (434.8 kB view details)

Uploaded CPython 3.13Windows x86-64

pyfastcdc-0.3.0-cp313-cp313-win32.whl (423.7 kB view details)

Uploaded CPython 3.13Windows x86

pyfastcdc-0.3.0-cp313-cp313-musllinux_1_2_x86_64.whl (807.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pyfastcdc-0.3.0-cp313-cp313-musllinux_1_2_aarch64.whl (780.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pyfastcdc-0.3.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (815.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

pyfastcdc-0.3.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (798.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pyfastcdc-0.3.0-cp313-cp313-macosx_11_0_arm64.whl (144.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pyfastcdc-0.3.0-cp313-cp313-macosx_10_13_x86_64.whl (159.0 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

pyfastcdc-0.3.0-cp312-cp312-win_arm64.whl (420.5 kB view details)

Uploaded CPython 3.12Windows ARM64

pyfastcdc-0.3.0-cp312-cp312-win_amd64.whl (435.9 kB view details)

Uploaded CPython 3.12Windows x86-64

pyfastcdc-0.3.0-cp312-cp312-win32.whl (424.2 kB view details)

Uploaded CPython 3.12Windows x86

pyfastcdc-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl (824.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pyfastcdc-0.3.0-cp312-cp312-musllinux_1_2_aarch64.whl (796.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pyfastcdc-0.3.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (831.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

pyfastcdc-0.3.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (814.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pyfastcdc-0.3.0-cp312-cp312-macosx_11_0_arm64.whl (146.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pyfastcdc-0.3.0-cp312-cp312-macosx_10_13_x86_64.whl (160.4 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

pyfastcdc-0.3.0-cp311-cp311-win_arm64.whl (420.2 kB view details)

Uploaded CPython 3.11Windows ARM64

pyfastcdc-0.3.0-cp311-cp311-win_amd64.whl (435.0 kB view details)

Uploaded CPython 3.11Windows x86-64

pyfastcdc-0.3.0-cp311-cp311-win32.whl (423.0 kB view details)

Uploaded CPython 3.11Windows x86

pyfastcdc-0.3.0-cp311-cp311-musllinux_1_2_x86_64.whl (807.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pyfastcdc-0.3.0-cp311-cp311-musllinux_1_2_aarch64.whl (788.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pyfastcdc-0.3.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (810.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

pyfastcdc-0.3.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (803.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pyfastcdc-0.3.0-cp311-cp311-macosx_11_0_arm64.whl (145.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pyfastcdc-0.3.0-cp311-cp311-macosx_10_9_x86_64.whl (157.9 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

pyfastcdc-0.3.0-cp310-cp310-win_arm64.whl (420.4 kB view details)

Uploaded CPython 3.10Windows ARM64

pyfastcdc-0.3.0-cp310-cp310-win_amd64.whl (434.6 kB view details)

Uploaded CPython 3.10Windows x86-64

pyfastcdc-0.3.0-cp310-cp310-win32.whl (423.9 kB view details)

Uploaded CPython 3.10Windows x86

pyfastcdc-0.3.0-cp310-cp310-musllinux_1_2_x86_64.whl (760.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pyfastcdc-0.3.0-cp310-cp310-musllinux_1_2_aarch64.whl (745.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pyfastcdc-0.3.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (763.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

pyfastcdc-0.3.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (761.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pyfastcdc-0.3.0-cp310-cp310-macosx_11_0_arm64.whl (146.3 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pyfastcdc-0.3.0-cp310-cp310-macosx_10_9_x86_64.whl (158.2 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

pyfastcdc-0.3.0-cp39-cp39-win_arm64.whl (421.0 kB view details)

Uploaded CPython 3.9Windows ARM64

pyfastcdc-0.3.0-cp39-cp39-win_amd64.whl (435.3 kB view details)

Uploaded CPython 3.9Windows x86-64

pyfastcdc-0.3.0-cp39-cp39-win32.whl (424.5 kB view details)

Uploaded CPython 3.9Windows x86

pyfastcdc-0.3.0-cp39-cp39-musllinux_1_2_x86_64.whl (759.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

pyfastcdc-0.3.0-cp39-cp39-musllinux_1_2_aarch64.whl (744.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

pyfastcdc-0.3.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (763.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

pyfastcdc-0.3.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (760.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pyfastcdc-0.3.0-cp39-cp39-macosx_11_0_arm64.whl (147.0 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pyfastcdc-0.3.0-cp39-cp39-macosx_10_9_x86_64.whl (159.2 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

pyfastcdc-0.3.0-cp38-cp38-win_amd64.whl (437.1 kB view details)

Uploaded CPython 3.8Windows x86-64

pyfastcdc-0.3.0-cp38-cp38-win32.whl (426.1 kB view details)

Uploaded CPython 3.8Windows x86

pyfastcdc-0.3.0-cp38-cp38-musllinux_1_2_x86_64.whl (792.0 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

pyfastcdc-0.3.0-cp38-cp38-musllinux_1_2_aarch64.whl (776.0 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

pyfastcdc-0.3.0-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (798.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

pyfastcdc-0.3.0-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (796.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pyfastcdc-0.3.0-cp38-cp38-macosx_11_0_arm64.whl (150.5 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

pyfastcdc-0.3.0-cp38-cp38-macosx_10_9_x86_64.whl (162.7 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

File details

Details for the file pyfastcdc-0.3.0.tar.gz.

File metadata

  • Download URL: pyfastcdc-0.3.0.tar.gz
  • Upload date:
  • Size: 31.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pyfastcdc-0.3.0.tar.gz
Algorithm Hash digest
SHA256 0a8825465937cc21683836e3d816d54ebe27a61087c3486430225264958b7925
MD5 f14c27ad88e961b6fee838a75a2c1e16
BLAKE2b-256 46bf925e302c9188780d851d7dc631631ee4bc1865440f3e58e7454375fd15a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.3.0.tar.gz:

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

Details for the file pyfastcdc-0.3.0-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: pyfastcdc-0.3.0-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 433.6 kB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pyfastcdc-0.3.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 7385024d8fa85a89eeae3d2e768aba09aa9e6052c37ce9c3e8a4c78dd3dec768
MD5 ae865d260324d1cfb6b49a962bad443e
BLAKE2b-256 8a1e9ca74caea63e77bf647622041b1e6d8c077c4ea8281940193f721d1603b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.3.0-cp314-cp314t-win_arm64.whl:

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

Details for the file pyfastcdc-0.3.0-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: pyfastcdc-0.3.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 450.3 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 pyfastcdc-0.3.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 1f37bf353afbb6a03c0cbc57be2ad5772832684f147cf975bf3880de8a28b6d0
MD5 1265369b63e64bc0f8280c1fba3ffc18
BLAKE2b-256 50ab6d67c1d9bae2ba5d46dec59910bfc9192a546b07e3a4201a2fe5070cc1be

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.3.0-cp314-cp314t-win_amd64.whl:

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

Details for the file pyfastcdc-0.3.0-cp314-cp314t-win32.whl.

File metadata

  • Download URL: pyfastcdc-0.3.0-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 438.2 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pyfastcdc-0.3.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 73972d110bdd3accc2501aa354448ba6d01c1028b93e39f3e0fb15fdad7b63f7
MD5 28cf0303294b033ab761a84c2088b59b
BLAKE2b-256 d40e36a9e0c2df8aefb55925ccdb2843f43f1dc8c3a3f15e1c119266948c5b28

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.3.0-cp314-cp314t-win32.whl:

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

Details for the file pyfastcdc-0.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyfastcdc-0.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bb52f3947ef8f09407be7a37b671d3df52274d9621545252a93dc8fe4fd3beea
MD5 7e9ab7ee244d85499991a1dfc1a89cb1
BLAKE2b-256 a100a9765eee1f9daa9863795595136d2c71a413c0d52c6afaee360dfdcf5d5c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

Details for the file pyfastcdc-0.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyfastcdc-0.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d9b7352362371b26322c3913682a05aa9a13674809cecd5b1eb06de2791e84cc
MD5 76eb6157df365238982c1d799e7e3771
BLAKE2b-256 6d668cb6f16ed657dcaedcbd2aae57299a842f2cd63758970e7f03ea6745c525

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

Details for the file pyfastcdc-0.3.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyfastcdc-0.3.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 368c8253fe0e93161400b2e4650271375ce827946263d9b831324c97104147e8
MD5 f10733b8877bf8c5d31ba9ebc5fdcda4
BLAKE2b-256 652f7856e4a99082240273aff2a82d9387f6614297b036cba944ecad5e7b43de

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.3.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

Details for the file pyfastcdc-0.3.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyfastcdc-0.3.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b73c68defc2ea211597d3e08352e8f197046eb0e1eef61a3475d1fe36e155b9a
MD5 02262fa8491dc6a04159dda4ae863669
BLAKE2b-256 be5ce1622ef957dc914cf1f62e09869e4dd41c75782f248ddf7efd7b67aa821d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.3.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

Details for the file pyfastcdc-0.3.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyfastcdc-0.3.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fb1fbe288442fd8f966effaaea85493a8d215471d34a8842581d4438fa051e2d
MD5 cc43bc0ba9baac818615c59bedb0a3c1
BLAKE2b-256 de60e5880a5b1aec02b8cb4d897336c12e1cebb30c2fc5e4c189cea3cccfe62d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.3.0-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

Details for the file pyfastcdc-0.3.0-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pyfastcdc-0.3.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 64cff7e6b4bc5b1abfa6c6a18efe508f31c79bbf75be864c04a8a37640c68958
MD5 21fee0d1a32f86b1a76cb80383750be8
BLAKE2b-256 3dc484c227e8a3d78e723de5f93235ae8a049e0bcac9fbdc2ea9332636b27958

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.3.0-cp314-cp314t-macosx_10_15_x86_64.whl:

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

Details for the file pyfastcdc-0.3.0-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: pyfastcdc-0.3.0-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 425.7 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pyfastcdc-0.3.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 36b754a92f12a86bd91ef508970ce6bde6844f2ac0c949e5ae7c9de49fff0cc1
MD5 28fb10544bfcb2fb81a38502700c654d
BLAKE2b-256 3b819e5376a1658f8b51834aabca8f98c0355cbb0fd7500a662ead255949ea89

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.3.0-cp314-cp314-win_arm64.whl:

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

Details for the file pyfastcdc-0.3.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: pyfastcdc-0.3.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 440.5 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 pyfastcdc-0.3.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 c2478e01847148fdfc3d4d9ba1fc1027e235b4fe385ef3fe0bbb55f1843bc545
MD5 56c6c7b2a7172de92130b45f773e7f32
BLAKE2b-256 3e13b1b132f2fa636b4eeb2e5e1aefcc1d6fff0c412f415690efe645570fd399

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.3.0-cp314-cp314-win_amd64.whl:

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

Details for the file pyfastcdc-0.3.0-cp314-cp314-win32.whl.

File metadata

  • Download URL: pyfastcdc-0.3.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 429.6 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pyfastcdc-0.3.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 b30f49b6cb78987a30f616bea3a6c5c918cb2c46e308706ef524bcd3ca35cf01
MD5 5970e666cffa87df80bc41849d337b40
BLAKE2b-256 1b680849f6af47cdfae7ecac9d3f03ea4e721c91b93d1c8fe63fae75036bb01f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.3.0-cp314-cp314-win32.whl:

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

Details for the file pyfastcdc-0.3.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyfastcdc-0.3.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 419978c3c3677197bb31bfc8fb2d12080dc99108b07f2756e805792c8a620808
MD5 c63936930c3a69d913bdb547708ec9a2
BLAKE2b-256 9d0ca039ccbd71bbb48463182eaba8cce6cae7847738229b7a90070e566b4b66

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.3.0-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

Details for the file pyfastcdc-0.3.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyfastcdc-0.3.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3da5e1c44799a11dfcbca69850e1a1d2c00af55ac881d161b7a4e5d003ea99bb
MD5 d5e68b24fe0ed71bfd60ef48b395c786
BLAKE2b-256 1608678363e4babeb6e6c536c4419c0938071746e30d4517f5a911a8bfbe6145

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.3.0-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

Details for the file pyfastcdc-0.3.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyfastcdc-0.3.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d6c3a58ef854d8791aa83d158a8189098da0f277ecb0d76457ad72c27c827a93
MD5 dc4bca7b1369085e9b944a2a1ee0173e
BLAKE2b-256 c66c014658bdf46b4d23c01e4957a3cf87278208275559eb4f805b53df623d36

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.3.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

Details for the file pyfastcdc-0.3.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyfastcdc-0.3.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ca4e72ecb6f13189613ff8fcfa97722b3462c85c4b958321a5bab4d72718162f
MD5 23aad8fb6bdb8a684b525f6869e4b300
BLAKE2b-256 1d0ac76acf842cb634ed5a8abf847d14ee4fe92b9df1a68eb206edf36d6bec5a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.3.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

Details for the file pyfastcdc-0.3.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyfastcdc-0.3.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5fdb4a95708b50c98a7bdcdc5fff724ce10940cc45006ca5ba4ad25a5d980737
MD5 370d4d78f7c7bc6ca34c2d09cc106741
BLAKE2b-256 6fc22e446929df76c8269e04cef24f12e2610dea40a7ebd9a2e4907ad4d045a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.3.0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

Details for the file pyfastcdc-0.3.0-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pyfastcdc-0.3.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 c63e09ae2dd7c75326941482f8f0e84984877af49239d32b70ad1691eea792d7
MD5 69f63de7d5d017db1588c055ae7efd7b
BLAKE2b-256 e23a6441692108772dbb74cd1df0cbe664c8cfd30dc0da1e365c0fe90d54e97b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.3.0-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

Details for the file pyfastcdc-0.3.0-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: pyfastcdc-0.3.0-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 419.8 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pyfastcdc-0.3.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 b7e1be86aa00c0c7891c7665b69d590bd71e422489ffa2ee06d1b4e25bb7b061
MD5 b98f4ae7a311313622bc1974535dc798
BLAKE2b-256 f6f96d9d31457c0a2f564ee9131e4559df4a13de20659bce63058d9e1c8c7017

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.3.0-cp313-cp313-win_arm64.whl:

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

Details for the file pyfastcdc-0.3.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: pyfastcdc-0.3.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 434.8 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 pyfastcdc-0.3.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 edf2ab446fcc03ec5177401de09c9770600125a04c34051be3ffaad442bf7a42
MD5 438389e9e298cee79ebce869428a6c4d
BLAKE2b-256 ce8e3918646c5bdf29f981ce7dcb23062feff2006983b1357578061cba4094db

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.3.0-cp313-cp313-win_amd64.whl:

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

Details for the file pyfastcdc-0.3.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: pyfastcdc-0.3.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 423.7 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pyfastcdc-0.3.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 86793a90cb54869bf5ae95d88833bf15f2887d3f7e91f010951e946e1471e5d0
MD5 6fb8609b5528c42aed05ee5afef35b2c
BLAKE2b-256 adb8b1084fb7cf0baf4f9c94c3aec26c735a4f57dcd6c6b1583adbf985f7a962

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.3.0-cp313-cp313-win32.whl:

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

Details for the file pyfastcdc-0.3.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyfastcdc-0.3.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 79f108f8410c5a5b1a2818ca7569b245857ee21ffb5ca2ad25e1ddeffd329212
MD5 35f033aa6bc8934004f426a6c6a1b792
BLAKE2b-256 8c8eebb96dd3c286be3e4175d58c8134636d9bd8d13cede930bc54df239a7dca

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.3.0-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

Details for the file pyfastcdc-0.3.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyfastcdc-0.3.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9643b28c56f200f658d83d442d84b11191bc933af24282e05aa73532fed58419
MD5 0197d0854a31578f5e6b44e2563f98ce
BLAKE2b-256 2fad2948142b320cd0915a5b8c652336428cc699c1fc6588dc187ba548baf8b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.3.0-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

Details for the file pyfastcdc-0.3.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyfastcdc-0.3.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c106a7349ef175779a055c6ecbdd3034fb9f4c70c36edf0fb55e954da1406bff
MD5 13d5102d62ed271e2b496a23a9aaf1a0
BLAKE2b-256 b2f6ec714d887d935407864363a57a399af5a74b9820afc6ac318fa2a155afd3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.3.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

Details for the file pyfastcdc-0.3.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyfastcdc-0.3.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a28d9041c5988b52cb1ad6911d612890c526598ef06e44462c379cfe8dc0763e
MD5 83d542835c91cb4cf6cdfb4234c909a8
BLAKE2b-256 c1d5441ee72d3bbbb5995d3fb1419753b8c3a48993fb1368d40468459a4778d9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.3.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

Details for the file pyfastcdc-0.3.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyfastcdc-0.3.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f504142825630f4c05187d5aba9a706aef2955e5f9122e367ed7f2a8d47cdae4
MD5 4d761921021df50b8c2b25e0b96ef834
BLAKE2b-256 64c67ad64b951524440deb9310eee55839669b8ce31edc00d97cd8cfeb514522

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.3.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

Details for the file pyfastcdc-0.3.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pyfastcdc-0.3.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 d082b7125dd1311800b7f557f713f1cf4d1eb36c477ee87b750e8ca59f030968
MD5 2dd8eb6d866520007e442aea27a62809
BLAKE2b-256 f7bb519aad8afa0f22b8a71147867ec10da4367da6947f343e4ce9a5fb36c472

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.3.0-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

Details for the file pyfastcdc-0.3.0-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: pyfastcdc-0.3.0-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 420.5 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pyfastcdc-0.3.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 2210f3a52137c3916c1548d53fb5f0b45ad39bd4c6d54c37d9ef3b51de209f93
MD5 82f3c061f3f8a038e6056aa4010bc801
BLAKE2b-256 d193fbeb9618d8beed11f784d9d00db3f5815daac537416f5c1878d4cb6e103e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.3.0-cp312-cp312-win_arm64.whl:

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

Details for the file pyfastcdc-0.3.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: pyfastcdc-0.3.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 435.9 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 pyfastcdc-0.3.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 48b21e42a3949124daeccc8903ab3334922dfb343745aa5f349e85f3b4298891
MD5 99cecb9a7bffc5a821257214fad2ea59
BLAKE2b-256 059c96e5c57349fb25d6681311e9dda60a65bb9640dba0632fcd6c213087e057

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.3.0-cp312-cp312-win_amd64.whl:

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

Details for the file pyfastcdc-0.3.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: pyfastcdc-0.3.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 424.2 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pyfastcdc-0.3.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 98a2d518dc6c7c46f5fa83b8f0edcdded15cd6bf599e5541d0e099689d6b7530
MD5 91437de92eb97d6605d5dc1d61d8c3cc
BLAKE2b-256 e1896a930c393ac1f44f2dd3d0412c67eea24db99a5f23f63e9cce81322abe2d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.3.0-cp312-cp312-win32.whl:

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

Details for the file pyfastcdc-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyfastcdc-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a4fb20214c69e23f7a374591e704f320fac5a184bd4ffe5305cc43d9083f3bfd
MD5 96bded880fd48ada5600a8bbf7d2fb90
BLAKE2b-256 98e034917082cae55eeb8d2151b198307b7aac7593350486500a905b16bae580

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

Details for the file pyfastcdc-0.3.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyfastcdc-0.3.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 734f52c50bf0e073c37fe9a39e63bb4e2363f9a98c2ab49750701e9b8846e3ad
MD5 203725464d04819019a78bfb22037496
BLAKE2b-256 5fa70ab9fe93332c116fcbb130b0ef59ddd90142fc0f8c3a4a61700eacdfd923

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.3.0-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

Details for the file pyfastcdc-0.3.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyfastcdc-0.3.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b93cab36f8c605208e3bea82949ae8062336c0fe77bfface1cdf602fb3c10ff4
MD5 7d10fb80ebaef9b5e7ad87ce4025f3e1
BLAKE2b-256 a99134290c2202ac3dabbff5a8ef980732a0d8441fd68da53ca1438a59c9cd85

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.3.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

Details for the file pyfastcdc-0.3.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyfastcdc-0.3.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6ddbefcca39140c179883154178b30c9bbe4ad2b652a81dbedff0c5d202b9117
MD5 9df1857445166728ed6407b087e0837a
BLAKE2b-256 69b7df4b14aaa5fbf80de2b629b4b4755d57a2c114b6996d9b6c1d643f496255

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.3.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

Details for the file pyfastcdc-0.3.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyfastcdc-0.3.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b94f05d89bd243443d1ccf119ddebf4c7e15b6cbf72eca29d17650a609c74d1e
MD5 de9026491753564e8d84433c18c5604a
BLAKE2b-256 c35324a89c77e4d836da6b965a8d2f2cb12d3189664aa374597de93bca2547b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.3.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

Details for the file pyfastcdc-0.3.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pyfastcdc-0.3.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 5e12c54040195be33f2501ae5d6eebb071907b947a20ae41b5b29a037f405cdf
MD5 e711aba2e79eeca3fe0773d04717994a
BLAKE2b-256 b0f2dc6be285b7a989e4ec462d15b62c4b8dbb51895e2d3b1e8ba73c9e06e593

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.3.0-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

Details for the file pyfastcdc-0.3.0-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: pyfastcdc-0.3.0-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 420.2 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pyfastcdc-0.3.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 e51d28a8a17d81708c1c7d61d10519e9162a12b00c2ae7a3029e43ad146931f5
MD5 83a671bc9d55112f036250db9bc6e6d7
BLAKE2b-256 2efe29b35a2ea5f9da3f742c7cef5d2a4726dfdbd0c5bc1398c62645153f8cae

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.3.0-cp311-cp311-win_arm64.whl:

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

Details for the file pyfastcdc-0.3.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: pyfastcdc-0.3.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 435.0 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 pyfastcdc-0.3.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b6f014dff29d3f3fdb6991cd0cbfadae19949b3b9fb4e49b60ad320421eff38f
MD5 f5cdc7729fd9598e8629b245f6974f61
BLAKE2b-256 9e3853aaa894a201b157ec56e54386fedacfd6d288b7e57e0cf4d81e46f9e14c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.3.0-cp311-cp311-win_amd64.whl:

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

Details for the file pyfastcdc-0.3.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: pyfastcdc-0.3.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 423.0 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pyfastcdc-0.3.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 476391fc570114e85ad8e2b07f4835e7f54eaa581a3b5cd677c2b32fb173b42d
MD5 be2bee132c9175de74cf7487d22dcb47
BLAKE2b-256 1b1706eac75c3d62ff85c975db3329a242b8e0c05259682f9e6c7d4555144b56

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.3.0-cp311-cp311-win32.whl:

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

Details for the file pyfastcdc-0.3.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyfastcdc-0.3.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e719c511f6f8966f21b8df07d15ee038ff66bd3aa0f64511fc3233eaa7bdad06
MD5 ac232b03dfe8a5d2c385dbe43498c96a
BLAKE2b-256 706a40b75e70d411b46b44f10d0a54c5615bdf89f7bf83bf2637d4f17002d6ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.3.0-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

Details for the file pyfastcdc-0.3.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyfastcdc-0.3.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 08d99aa5120a6b4e8afe1ec6b72970da7e8777cf7db8ebbb649764358b763529
MD5 06463c35cda5fdd939443fcd60e40155
BLAKE2b-256 c69eab30f1380ec8d30d37f8501c232c87594d895334f024713b36f89a5816fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.3.0-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

Details for the file pyfastcdc-0.3.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyfastcdc-0.3.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2fe02e1f514ce2669dcd915af4276ef2c4d4e22d8089804c2713cf84b482d5fb
MD5 bc6c2d6c6e4710d61a722972b1eea65b
BLAKE2b-256 843b2fc9a95fb9c18f8f51d7f908c15b26f076acc9411ec9cb157ccd7108752d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.3.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

Details for the file pyfastcdc-0.3.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyfastcdc-0.3.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a5c7e5fc58d4cf34f17633ca4671b9d7cde680e4096e80bc07650e5cb3926309
MD5 6d9727a31b619a330325f2de3e256dec
BLAKE2b-256 5635aae3f209d1b3c22c22ef562fcceac0b721eab650213c44604b550f18f0de

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.3.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

Details for the file pyfastcdc-0.3.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyfastcdc-0.3.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4e8da8dee1d601ab0cad33adf2493d597fbb40381c2156f051c6161e3cb04ce0
MD5 518cb77536edb0db7cd9e2437ab1f2dc
BLAKE2b-256 7d50d282153e28c327a2d315da9ea4d25fda9223d716cb8e64d5891bcc6178ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.3.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

Details for the file pyfastcdc-0.3.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyfastcdc-0.3.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b085cf985f2a5b24fb19e707f5130c7ceed645b9b55b80c2a53bdb5fe55ef2a5
MD5 5f0a0c77d3e743f21eeec7bc84e1c7bd
BLAKE2b-256 d94c22746cb7fdc231cecb9688b055eab101065a24cd1d0513015aa4bd320925

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.3.0-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

Details for the file pyfastcdc-0.3.0-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: pyfastcdc-0.3.0-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 420.4 kB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pyfastcdc-0.3.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 4ec112e8f93a572959ef49eaecde702c38e0dd21f340577f1e9e2de4a2242af8
MD5 d453a833319dc2f3d2c6bed0261fa766
BLAKE2b-256 a244968c73fe3b3a469c4d532a3b9206d70424a15c0c88e666862b199164c236

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.3.0-cp310-cp310-win_arm64.whl:

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

Details for the file pyfastcdc-0.3.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: pyfastcdc-0.3.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 434.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 pyfastcdc-0.3.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ad25fadf981957d0e83d2d20197a62053ead2d28e29c7864c218421062ebb79c
MD5 941cbdbed0ee8c2231a1b6f79221619b
BLAKE2b-256 68fe88d9c5800d1ecd78bab64dae51a416d8e4c2ed280f49fb1dd0feb2684660

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.3.0-cp310-cp310-win_amd64.whl:

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

Details for the file pyfastcdc-0.3.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: pyfastcdc-0.3.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 423.9 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pyfastcdc-0.3.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 f3ebb449055684325d635e8d4bb22de3d9737227f0aa99718f12377a6156f4a7
MD5 290f7bd6f2c3ef959f69a9340313dfe3
BLAKE2b-256 961d0b544a83f69396e6f1c349062b23bb0085583f2def72151738fe8940807b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.3.0-cp310-cp310-win32.whl:

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

Details for the file pyfastcdc-0.3.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyfastcdc-0.3.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a3b6c91df36aaf4e3c36441d95cf04ba477f2e11f48ec50b67f2cfa684fb392a
MD5 9edf675bc62fcc5822df5bf7f99b5226
BLAKE2b-256 f07549934381081f79d4e5efeec58f6dab20653e0674b9d9795d704182bfbf6d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.3.0-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

Details for the file pyfastcdc-0.3.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyfastcdc-0.3.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f9bda73008344b701b9ab687cc94a46e99f2927aec7f1264c770872fa9943f31
MD5 a00fa960bed70ed421f7a2de59b46d30
BLAKE2b-256 cdd1410fe7f3ed69e5364b7a361052bfe069185ff70a31fa52399146c9cd0c05

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.3.0-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

Details for the file pyfastcdc-0.3.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyfastcdc-0.3.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6273cbf77a891e3dd20626555229c60e8161cf589be289a95ef62f555971bd8f
MD5 697ec2827e07c939f1da7b9124376d3d
BLAKE2b-256 c4d9d6bedf88801b4577a1bbc71ce594f47fe7851e91fc236f75d17c13b97347

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.3.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

Details for the file pyfastcdc-0.3.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyfastcdc-0.3.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2c416853638a0e38312a7832ca70455fd630982e9e57fa1fa094321c263bc4d6
MD5 0a2091038f4fcaadb19e0d68be80692a
BLAKE2b-256 9d11e5f435b195341114569b204e2f89514dfcd4fc412b53a0a7ce4c34d86487

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.3.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

Details for the file pyfastcdc-0.3.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyfastcdc-0.3.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 370b3dcd5d2dcdfe7a40b70a6affa3fbd338e393d65366c4407275bfa9da307c
MD5 b09b608582864024b3f3a4ca86bea3fa
BLAKE2b-256 f3763f8a91fd9fb59fb4f0cb4d0cd550126574d3e982fb638bbd2b1f9c1b9a5e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.3.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

Details for the file pyfastcdc-0.3.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyfastcdc-0.3.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9c59423de51c61e22cefa5e41c083956218fe9a1626f285cde663b47ab6f301c
MD5 95259bd1c19dd4cd578fcb902a838abf
BLAKE2b-256 a1ce87de1227d9107eeac3815fd6dbc6b67a5664709ea99da6c589d91e060cd2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.3.0-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

Details for the file pyfastcdc-0.3.0-cp39-cp39-win_arm64.whl.

File metadata

  • Download URL: pyfastcdc-0.3.0-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 421.0 kB
  • Tags: CPython 3.9, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pyfastcdc-0.3.0-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 089fa757517a5d9c510321565ef9304bb9efb56d06b23ecefbdfe186074660ff
MD5 78857b27ff70cb4e092ea6ca4feeb833
BLAKE2b-256 df813ff03c287bf2b114adcec20c663f5e5d5a184225454c13c23f53fc03a1b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.3.0-cp39-cp39-win_arm64.whl:

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

Details for the file pyfastcdc-0.3.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: pyfastcdc-0.3.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 435.3 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pyfastcdc-0.3.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 580b94935debe37fd4fe01d82d06e94c5fac0793128089bf7689a038ef6aa3c4
MD5 2a8818a2e67714b2638dd5f47adf67b1
BLAKE2b-256 5721ac22922ae3f41042dc6c05e82cc0f05ec0cbd8c57d8c4754bd8db3e9d550

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.3.0-cp39-cp39-win_amd64.whl:

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

Details for the file pyfastcdc-0.3.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: pyfastcdc-0.3.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 424.5 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pyfastcdc-0.3.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 1fc191f28558f7006f21f7d8a99dea332108dfbfe8f1de8f05a7c277cada717e
MD5 03f6d6801162d03a6a05fe665019da22
BLAKE2b-256 4d66fcbb7edea9b04a73b437e4ed06532bf54859eab96bae5d1cf2e38e0e8595

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.3.0-cp39-cp39-win32.whl:

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

Details for the file pyfastcdc-0.3.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyfastcdc-0.3.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a417816d3795ffeeeef88a46a41217b064031a96b0528038ef750452e946842c
MD5 b1d8961d1682fa5e3d2839f558680e22
BLAKE2b-256 1caee8948834e78a11706388fd4366846fd02a36ea4f6f56b3137da9d08cb6af

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.3.0-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

Details for the file pyfastcdc-0.3.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyfastcdc-0.3.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b5e37a78f18db7e3db20dcd1161f097ee3dc2dfdb44e269fde08b08b0a9332b3
MD5 5daa2bcc646d4705104edb578260cbc9
BLAKE2b-256 9249591de9982f993fd82e3289eaf9ae02163325f07de68692ceaefc29f07fc5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.3.0-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

Details for the file pyfastcdc-0.3.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyfastcdc-0.3.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 dd93e5c99a5ab9a5da1f1bdc880c32a577702175e284a3bf42e2538e4abbc35a
MD5 cf5a5f5971b60b80afff57a198c473b8
BLAKE2b-256 82aec80b9b6bd79eb64f707d741697cc52a5ee36759b4f7722d3040e4f6170a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.3.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

Details for the file pyfastcdc-0.3.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyfastcdc-0.3.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f5d4efdd2da404750cc65788aa526b5c74f184fd4cf92dda6084113f7a875716
MD5 d0ad8b8deefd8905bcd66ceab74e39e9
BLAKE2b-256 2c879a668dbbe8fedc1b380aea9e7d41fbc712b78bddf578cff270cb2dd5e722

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.3.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

Details for the file pyfastcdc-0.3.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyfastcdc-0.3.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 da36c236c96926677200578432aedb55ca9230b61f5b85811f5dafebfab823eb
MD5 782aa1e96a8cc8a20524bd3160b35d8d
BLAKE2b-256 3e6ada8ee56f8ee715d2ac41a8d83e30809bb4ff6d6d65f8bda9569a4a0e78d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.3.0-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

Details for the file pyfastcdc-0.3.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyfastcdc-0.3.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7f03b3a0bb3654d85b5a189380090a0b2f16f0a569d55470fc7abcf02299ab45
MD5 5439d279595085d3d08459aafcfb4a97
BLAKE2b-256 e5822514c0e92dec33b67d93f8f5e6575c613fade26df1a973353d624db42d11

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.3.0-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

Details for the file pyfastcdc-0.3.0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: pyfastcdc-0.3.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 437.1 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pyfastcdc-0.3.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 3ca73d7887ceab3df2c823d0586feff6f4b2580f27830a8aaed0484a3c940adc
MD5 1f2cf15b9761f647131752c89bf02fca
BLAKE2b-256 b8b1d1f2f1b3aee76389be91fa3d3fafb3574d44cdfc452cc81ea3597ef283b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.3.0-cp38-cp38-win_amd64.whl:

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

Details for the file pyfastcdc-0.3.0-cp38-cp38-win32.whl.

File metadata

  • Download URL: pyfastcdc-0.3.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 426.1 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pyfastcdc-0.3.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 1be9d13d69f542bbc936e2ee66d445f20d3b9c54822843a9d88486a866ff2a51
MD5 7cd3db90ae0f74f3b69990c04817b666
BLAKE2b-256 d0e8c75465181acc9ae20183f2998604e1b4f13df3b63cd47ca067d99497dbe1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.3.0-cp38-cp38-win32.whl:

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

Details for the file pyfastcdc-0.3.0-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyfastcdc-0.3.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9347fd930fbe7fd49010fd5ad3a175f4cdfb707b0013a7f1d0e99c7500abdf32
MD5 1ff997cc7b3482f5d82460c8dbd00890
BLAKE2b-256 ff091bdc91ff686cf3e12d2fce3c396328e9d18b0c1bc4e6be5c9dcb23048202

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.3.0-cp38-cp38-musllinux_1_2_x86_64.whl:

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

Details for the file pyfastcdc-0.3.0-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyfastcdc-0.3.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f85382612362a677bb6b8bb3a942e841030dfd3a4395c3d58182c696ba657abf
MD5 77a3695c31b1e7182693b69272aa4c73
BLAKE2b-256 d48bd08cafa121cd67bf5f1166eddd9272ba6c4d8de6e71943cb5e0232c853a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.3.0-cp38-cp38-musllinux_1_2_aarch64.whl:

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

Details for the file pyfastcdc-0.3.0-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyfastcdc-0.3.0-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 27e476a2478aeca5be1d7e9183270bd6f221e0158156e916a26915678445e496
MD5 327a40c502bbe7aeab90868f0f55fc15
BLAKE2b-256 04a4e626fbdf0042421661a39d3bced75bad035a43815f62844c595f77df52f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.3.0-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

Details for the file pyfastcdc-0.3.0-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyfastcdc-0.3.0-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e94434192a881ef90be6bb6dfabe815c29707ae41653447245e4d1a173796fb3
MD5 e7af35955146e6ab9cecbb170df86540
BLAKE2b-256 0c9008f4dff0686309c93f30aa18f3c5156b26e5be770ec504a3dc2a41d400c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.3.0-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

Details for the file pyfastcdc-0.3.0-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyfastcdc-0.3.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3ace60d06faa7a09b96ee437ec5d125ff083bcf9b1d8c629f83e417fc9618021
MD5 90fc5141350683208bde127dbce49626
BLAKE2b-256 b3ea8592f6b6d8ca0c436eb0e7112369375c984e596b41c3751d50bc086b9f25

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.3.0-cp38-cp38-macosx_11_0_arm64.whl:

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

Details for the file pyfastcdc-0.3.0-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyfastcdc-0.3.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3f5d71ef1dcd4345d298c7c7747cd66762eed5cd06c60f03d73a616f64c6e5ac
MD5 659890a94913e961da05513043d47f34
BLAKE2b-256 0368cf66401f1e9d3d8bbc91e656a6d75566eecd7520d30364a3dc30aba1814d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.3.0-cp38-cp38-macosx_10_9_x86_64.whl:

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

Release history Release notifications | RSS feed

This release

0.3.0 This release

72 files

0.2.1

72 files

0.2.0

72 files

0.1.0

72 files

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page