Skip to main content

FastCDC 2020 implementation in Python, with Cython acceleration

Project description

PyFastCDC

License Issues PyPI Version

A FastCDC 2020 implementation written in Python, with Cython acceleration

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 (around 0.01× or less in memory chunking speed)

Usage

The basic usage is simple:

  1. Construct a FastCDC instance with desired parameters
  2. Call FastCDC.cut_xxx() function to chunk your data

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 Chunk         # GOOD
from pyfastcdc.common import Chunk  # 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.1.1b, 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

Project details


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.2.0b1.tar.gz (27.0 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.2.0b1-cp314-cp314t-win_arm64.whl (432.0 kB view details)

Uploaded CPython 3.14tWindows ARM64

pyfastcdc-0.2.0b1-cp314-cp314t-win_amd64.whl (462.7 kB view details)

Uploaded CPython 3.14tWindows x86-64

pyfastcdc-0.2.0b1-cp314-cp314t-win32.whl (446.0 kB view details)

Uploaded CPython 3.14tWindows x86

pyfastcdc-0.2.0b1-cp314-cp314t-musllinux_1_2_x86_64.whl (841.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

pyfastcdc-0.2.0b1-cp314-cp314t-musllinux_1_2_aarch64.whl (833.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

pyfastcdc-0.2.0b1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (852.1 kB view details)

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

pyfastcdc-0.2.0b1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (866.6 kB view details)

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

pyfastcdc-0.2.0b1-cp314-cp314t-macosx_11_0_arm64.whl (154.8 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

pyfastcdc-0.2.0b1-cp314-cp314t-macosx_10_15_x86_64.whl (164.5 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

pyfastcdc-0.2.0b1-cp314-cp314-win_arm64.whl (423.9 kB view details)

Uploaded CPython 3.14Windows ARM64

pyfastcdc-0.2.0b1-cp314-cp314-win_amd64.whl (442.7 kB view details)

Uploaded CPython 3.14Windows x86-64

pyfastcdc-0.2.0b1-cp314-cp314-win32.whl (429.5 kB view details)

Uploaded CPython 3.14Windows x86

pyfastcdc-0.2.0b1-cp314-cp314-musllinux_1_2_x86_64.whl (790.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

pyfastcdc-0.2.0b1-cp314-cp314-musllinux_1_2_aarch64.whl (765.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pyfastcdc-0.2.0b1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (794.1 kB view details)

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

pyfastcdc-0.2.0b1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (784.9 kB view details)

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

pyfastcdc-0.2.0b1-cp314-cp314-macosx_11_0_arm64.whl (143.4 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pyfastcdc-0.2.0b1-cp314-cp314-macosx_10_15_x86_64.whl (157.4 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

pyfastcdc-0.2.0b1-cp313-cp313-win_arm64.whl (418.0 kB view details)

Uploaded CPython 3.13Windows ARM64

pyfastcdc-0.2.0b1-cp313-cp313-win_amd64.whl (437.1 kB view details)

Uploaded CPython 3.13Windows x86-64

pyfastcdc-0.2.0b1-cp313-cp313-win32.whl (423.6 kB view details)

Uploaded CPython 3.13Windows x86

pyfastcdc-0.2.0b1-cp313-cp313-musllinux_1_2_x86_64.whl (795.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pyfastcdc-0.2.0b1-cp313-cp313-musllinux_1_2_aarch64.whl (767.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pyfastcdc-0.2.0b1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (801.1 kB view details)

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

pyfastcdc-0.2.0b1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (786.3 kB view details)

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

pyfastcdc-0.2.0b1-cp313-cp313-macosx_11_0_arm64.whl (142.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pyfastcdc-0.2.0b1-cp313-cp313-macosx_10_13_x86_64.whl (156.8 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

pyfastcdc-0.2.0b1-cp312-cp312-win_arm64.whl (418.6 kB view details)

Uploaded CPython 3.12Windows ARM64

pyfastcdc-0.2.0b1-cp312-cp312-win_amd64.whl (438.1 kB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

pyfastcdc-0.2.0b1-cp312-cp312-musllinux_1_2_x86_64.whl (813.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pyfastcdc-0.2.0b1-cp312-cp312-musllinux_1_2_aarch64.whl (784.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pyfastcdc-0.2.0b1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (819.9 kB view details)

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

pyfastcdc-0.2.0b1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (802.8 kB view details)

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

pyfastcdc-0.2.0b1-cp312-cp312-macosx_11_0_arm64.whl (144.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pyfastcdc-0.2.0b1-cp312-cp312-macosx_10_13_x86_64.whl (158.4 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

pyfastcdc-0.2.0b1-cp311-cp311-win_arm64.whl (418.2 kB view details)

Uploaded CPython 3.11Windows ARM64

pyfastcdc-0.2.0b1-cp311-cp311-win_amd64.whl (435.9 kB view details)

Uploaded CPython 3.11Windows x86-64

pyfastcdc-0.2.0b1-cp311-cp311-win32.whl (423.3 kB view details)

Uploaded CPython 3.11Windows x86

pyfastcdc-0.2.0b1-cp311-cp311-musllinux_1_2_x86_64.whl (798.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pyfastcdc-0.2.0b1-cp311-cp311-musllinux_1_2_aarch64.whl (779.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pyfastcdc-0.2.0b1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (799.6 kB view details)

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

pyfastcdc-0.2.0b1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (794.0 kB view details)

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

pyfastcdc-0.2.0b1-cp311-cp311-macosx_11_0_arm64.whl (144.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pyfastcdc-0.2.0b1-cp311-cp311-macosx_10_9_x86_64.whl (155.6 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

pyfastcdc-0.2.0b1-cp310-cp310-win_arm64.whl (418.6 kB view details)

Uploaded CPython 3.10Windows ARM64

pyfastcdc-0.2.0b1-cp310-cp310-win_amd64.whl (435.9 kB view details)

Uploaded CPython 3.10Windows x86-64

pyfastcdc-0.2.0b1-cp310-cp310-win32.whl (424.3 kB view details)

Uploaded CPython 3.10Windows x86

pyfastcdc-0.2.0b1-cp310-cp310-musllinux_1_2_x86_64.whl (753.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pyfastcdc-0.2.0b1-cp310-cp310-musllinux_1_2_aarch64.whl (736.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pyfastcdc-0.2.0b1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (756.3 kB view details)

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

pyfastcdc-0.2.0b1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (752.4 kB view details)

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

pyfastcdc-0.2.0b1-cp310-cp310-macosx_11_0_arm64.whl (144.5 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pyfastcdc-0.2.0b1-cp310-cp310-macosx_10_9_x86_64.whl (156.4 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

pyfastcdc-0.2.0b1-cp39-cp39-win_arm64.whl (419.2 kB view details)

Uploaded CPython 3.9Windows ARM64

pyfastcdc-0.2.0b1-cp39-cp39-win_amd64.whl (436.6 kB view details)

Uploaded CPython 3.9Windows x86-64

pyfastcdc-0.2.0b1-cp39-cp39-win32.whl (424.8 kB view details)

Uploaded CPython 3.9Windows x86

pyfastcdc-0.2.0b1-cp39-cp39-musllinux_1_2_x86_64.whl (753.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

pyfastcdc-0.2.0b1-cp39-cp39-musllinux_1_2_aarch64.whl (735.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

pyfastcdc-0.2.0b1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (755.7 kB view details)

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

pyfastcdc-0.2.0b1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (751.7 kB view details)

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

pyfastcdc-0.2.0b1-cp39-cp39-macosx_11_0_arm64.whl (145.2 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pyfastcdc-0.2.0b1-cp39-cp39-macosx_10_9_x86_64.whl (157.3 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

pyfastcdc-0.2.0b1-cp38-cp38-win_amd64.whl (439.0 kB view details)

Uploaded CPython 3.8Windows x86-64

pyfastcdc-0.2.0b1-cp38-cp38-win32.whl (426.9 kB view details)

Uploaded CPython 3.8Windows x86

pyfastcdc-0.2.0b1-cp38-cp38-musllinux_1_2_x86_64.whl (784.8 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

pyfastcdc-0.2.0b1-cp38-cp38-musllinux_1_2_aarch64.whl (767.5 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

pyfastcdc-0.2.0b1-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (790.3 kB view details)

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

pyfastcdc-0.2.0b1-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (787.6 kB view details)

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

pyfastcdc-0.2.0b1-cp38-cp38-macosx_11_0_arm64.whl (149.0 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

pyfastcdc-0.2.0b1-cp38-cp38-macosx_10_9_x86_64.whl (161.1 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

File details

Details for the file pyfastcdc-0.2.0b1.tar.gz.

File metadata

  • Download URL: pyfastcdc-0.2.0b1.tar.gz
  • Upload date:
  • Size: 27.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyfastcdc-0.2.0b1.tar.gz
Algorithm Hash digest
SHA256 af04e508c8845afcce77c48ef3beba1ae0c31d500177a394e1c5347c74263ffc
MD5 d67b3a9d6af5e72013414397a0820a65
BLAKE2b-256 d29882f0c46fdf12d947621c84afe2feb98c512950bbb4146071a5b291568b6c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.2.0b1.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.2.0b1-cp314-cp314t-win_arm64.whl.

File metadata

File hashes

Hashes for pyfastcdc-0.2.0b1-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 7157306a63cfe0533d5c8abd8bb82274dd5e958f54eb799c6a9f395eb88ef32c
MD5 87ab6ff2432b56032c8fbc115bf5a1f9
BLAKE2b-256 50b23bf01cedd87eedb86cfd0f11a932bd06adaf4cc5182ab6368bc50d08fd85

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.2.0b1-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.2.0b1-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for pyfastcdc-0.2.0b1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 35d59c689bad07c48cc611a23e34d64b75cedffcbb5725bb655edbdb17351e09
MD5 94236a111ecd2f2692de28adf7d3d83a
BLAKE2b-256 025935c4bbdeb04a7c63df16f898a4dcb08910d685f7448a299343c6f8516204

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.2.0b1-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.2.0b1-cp314-cp314t-win32.whl.

File metadata

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

File hashes

Hashes for pyfastcdc-0.2.0b1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 31de7a8736bcedfd75a21b02b6165fa9aa0fbea42c286f9e2390050704f18295
MD5 3f125187bbeaa1de26c0ff27e9c7fe40
BLAKE2b-256 cc5c7632c10c87989d83258698f4e2b70922bccfcceac708526eb8700e0aa6cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.2.0b1-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.2.0b1-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyfastcdc-0.2.0b1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2bc5881334b1194bc2990e7a0ac3b72576ceb19f4d90110d7762a76eead475ee
MD5 89b093afaf50591544e456cf111aab3a
BLAKE2b-256 45733e2a5e146d11dd6a7a96f0658f6739feba9c48f7ac2f3f019eb29481e8cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.2.0b1-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.2.0b1-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyfastcdc-0.2.0b1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a7ef6d30660d32563ae4299d538612069e70bf8aa312aaffaedc7c9e59867aca
MD5 0f1f6f41f5c7f33219041203f96067f1
BLAKE2b-256 4f0ca3e7e50db8e85fb5ee940112fee83cd7bd50fc819e04ff2c403e69f7477e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.2.0b1-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.2.0b1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyfastcdc-0.2.0b1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b639fdcb0078de84e1e94bdbb85ab735c07910e1cb271a6c317639fb5fd20980
MD5 dd4d551975ccc2cae8d180b775ac7ab6
BLAKE2b-256 93875a4e63a605190b84539e3d925e6206379b152ec297eb6e83add51f71c27c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.2.0b1-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.2.0b1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyfastcdc-0.2.0b1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 853a801f7355081a0d24270f19255ef65a31ffaf006edf5534fac3424808bf7a
MD5 fbbb25ef598d7607f17b3d7dfca899f1
BLAKE2b-256 f93f330f6c67790ad883bc95c694cf4bf2b215f64b8d61c0730cb0e75a8e28c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.2.0b1-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.2.0b1-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyfastcdc-0.2.0b1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 987a58a903a8663a35b3c789701197faa7f26f9fd644fdcc3e7dd3c0d39b42c9
MD5 e892459f2b607d1760ae57e9056e6a80
BLAKE2b-256 6daa5d8e5562fcebdca7c717ec268a49967d090d0e85cabd104062a18edece71

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.2.0b1-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.2.0b1-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pyfastcdc-0.2.0b1-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 d8b0ff802b0c1b55719f864f0b6f43266f3f9113433a0e0734330853fc7c101f
MD5 66cd183e75df3a5b544c044f3a26e9b9
BLAKE2b-256 5f87536bcf4491704c3c7cd94418c4dac852695522d9e5af84c7161f40566cf5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.2.0b1-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.2.0b1-cp314-cp314-win_arm64.whl.

File metadata

File hashes

Hashes for pyfastcdc-0.2.0b1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 fd711ca1a4d088742131ff590767c3fea2c9680f0294c9cdb0b8a7b9b18db46b
MD5 4104f9d5d9b33df1020fa1f198fb6cea
BLAKE2b-256 1e2179007610145628d9661f06c02c81fc2ba8045d92101315c540da3f0d62e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.2.0b1-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.2.0b1-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: pyfastcdc-0.2.0b1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 442.7 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyfastcdc-0.2.0b1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 c37ab3a86fba6acd89fed701eab7a6c1f1831f987c3da18de8452bfd12e4567a
MD5 08a6dab67fa45a18ffe101675d0853aa
BLAKE2b-256 74a361ad9cfd49463c7087e18efcfef9670f549f18f85635697750c7536c6445

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.2.0b1-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.2.0b1-cp314-cp314-win32.whl.

File metadata

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

File hashes

Hashes for pyfastcdc-0.2.0b1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 b3c3c9bf341c0d30764683215093be30398170b6f60e48067c2c176ef9c5b24f
MD5 19bbcb17045a1855fe89ef90cebd2faf
BLAKE2b-256 7db8d1a310aa5f6c2c4a7a462e5b49832accaf230d4f029c05c183ffe4b06184

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.2.0b1-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.2.0b1-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyfastcdc-0.2.0b1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4fadd53d8ebb57622aafcf1bcee26ba41366574ff7c2c0a8fd02b18f3e9c5289
MD5 c52887368e0f3da78a88cb3fb4744f7f
BLAKE2b-256 8ee7bd1b597f5e4d64b21aa11c0b4ee20e11b468fce640f1d0e2fb599499f38d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.2.0b1-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.2.0b1-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyfastcdc-0.2.0b1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2b1053e6e872c4f4c22866eb9fefd65ae0f1a867fce9130c05da5a51af7f4e9b
MD5 9d017063d59de9e370a91bdcac769dba
BLAKE2b-256 2bd1020309812889d6f42d04aba245377619e51d2ea73c30bd468973a58be615

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.2.0b1-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.2.0b1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyfastcdc-0.2.0b1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1406583e54e183a0ddf289bf153a5383762ce5029db5c995898177f42b4cf6bb
MD5 64633805e278b72d626d21200c1b2a4b
BLAKE2b-256 337658d0bda7d4071670763242e5820930c395a56614b1689df984818e0fcdd6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.2.0b1-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.2.0b1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyfastcdc-0.2.0b1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9f76bba773884da151f89b47d19993db96c12084064f424974ff8ddc1099507a
MD5 52687761304de534ed6a3e740af4ad70
BLAKE2b-256 d26919400e362d7764badd258265f3d354a2a1fcda80fb4d2e91707b9a751ab9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.2.0b1-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.2.0b1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyfastcdc-0.2.0b1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 65d56c46e23b0f636a969023eab9b8d86d0261ab71ee861fb0c401a3d230bdfc
MD5 a029fab9b9b32b0d1e5493302797ec90
BLAKE2b-256 dd268324caadb2da9e99c16b6c7650399a700aed3250d8bb7a2e6875af787a6b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.2.0b1-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.2.0b1-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pyfastcdc-0.2.0b1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 f6e43ff90dff60753d7bb559bc1dcb9390dce32d06ec8c4be3826f3366cd780a
MD5 8cdf7a102fc3186d3de9f23e8ccfb744
BLAKE2b-256 bd63840cfa1558fbe971ad29446e71ef777cce94fe0dcbeadb9a22b80d198db1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.2.0b1-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.2.0b1-cp313-cp313-win_arm64.whl.

File metadata

File hashes

Hashes for pyfastcdc-0.2.0b1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 f4acddd62478b8ce131478678ba79ca0404beeb248ce32992e498bee2478d8f4
MD5 be9a92a21f3c8622bfbdda233678be95
BLAKE2b-256 e49fda053b7afe34ea3f0e27e31c45bf9817f5845654c20cf72b272fca45aa50

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.2.0b1-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.2.0b1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: pyfastcdc-0.2.0b1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 437.1 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyfastcdc-0.2.0b1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b74cb3d9c49f95c65349096ec6642e5015b6bea5690e537c5f697651a7ac6845
MD5 965c63797471551eec5a45566c966e42
BLAKE2b-256 8f26e8faa03a9312a9004c4c89d361065a5028adac7042b27c53a10561d17a09

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.2.0b1-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.2.0b1-cp313-cp313-win32.whl.

File metadata

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

File hashes

Hashes for pyfastcdc-0.2.0b1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 06980728971f520b7ebadad7eda054bd0ea87a023ce4410313ea62accf5ae214
MD5 b61e8b8e26653d48de7b3999d790a2fc
BLAKE2b-256 5db3805486e50d4b459aabb27b5f2d0945150988fb10e592f83d14699113f960

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.2.0b1-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.2.0b1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyfastcdc-0.2.0b1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dd83a755ad8f72fe0c96acd1b721334e081f2f0716587f6950251be5da1628a5
MD5 e6257950e2a3d41266b9d15b92c127b4
BLAKE2b-256 14647f15a3687e005b9f1d61e90b59bcb35817e99e6e53694bd2171ef223d358

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.2.0b1-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.2.0b1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyfastcdc-0.2.0b1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1e869a0416f15d9bd6900aa438cbc41dc6e28f81f34595bc3ccfb0f3bd1e834f
MD5 fdda91406a9ea2e06506d5b98e744fb2
BLAKE2b-256 c243745c7f87ae18eef09ac234eed1d8372491ee259fb5876a6fa689728fe276

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.2.0b1-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.2.0b1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyfastcdc-0.2.0b1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1f99a3ef0bf56d6c01093c1ab3ff81ddb64ce130904081df3adeef4a8ee323c2
MD5 07aa1643d08bed39b1997cbae3947742
BLAKE2b-256 fbfc1999bbfc7a43456d4fe13ef822edb6174a1f327ca1bb7149051d85471908

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.2.0b1-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.2.0b1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyfastcdc-0.2.0b1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f44e9e51f55eb7f14fc3f12b3dad623537a9175ca0cfc45d723302c731d5a4be
MD5 3f4f6ec37d3797e9f1ba2df704a1ccaa
BLAKE2b-256 4f2ea0a8baee4a2ad97522b92f0dbffa5a1c5ec60802a3e734876523f2260e28

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.2.0b1-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.2.0b1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyfastcdc-0.2.0b1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6c95e6166f95e3ca649d4933d89366c503a910e36b85a6a3deed25b9d1034dd0
MD5 2bc57f470c350fb414d769932f0b5351
BLAKE2b-256 8f82ca9704ba81526a750940da46445054838c7f625f8841169ea76fb4bc4718

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.2.0b1-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.2.0b1-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pyfastcdc-0.2.0b1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 681d0d1f0bd66be7a9e1e319dbe9d0ba077f176d32acd9d58471fb1bc3c5b813
MD5 3da4c54419b6f5ce1c4cb435c9dd18ab
BLAKE2b-256 13c6b9fb06d118047ee58b67b9e19d09b0a792777d25feb07e6f03342d6a1cf2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.2.0b1-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.2.0b1-cp312-cp312-win_arm64.whl.

File metadata

File hashes

Hashes for pyfastcdc-0.2.0b1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 ce2eec52b8eae2b1c5f8655f22ad2193a51939d7913cad2fd742a55e63b6aaae
MD5 7804179051cef6698348949c0e2bfdbb
BLAKE2b-256 acc5678422ff51afcb6b907b9746846baa764da6f079f39a6096f5c5a7dd55b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.2.0b1-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.2.0b1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: pyfastcdc-0.2.0b1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 438.1 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyfastcdc-0.2.0b1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 bd57e8115a9420c12a1e0b6be7d47a66f3762a98d10b708652ebb1c92be8b29b
MD5 85b0935bb87d496a4dc7ead5f7641a53
BLAKE2b-256 25e32f072bf1b49277faecc210e070fa0d4684ed20297afdd571b9c23adb1540

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.2.0b1-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.2.0b1-cp312-cp312-win32.whl.

File metadata

  • Download URL: pyfastcdc-0.2.0b1-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.7

File hashes

Hashes for pyfastcdc-0.2.0b1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 fef6ae1c3cb8bdf77d9998a400669237139b10c0dbcdc286cb4ecc56f9d51669
MD5 c3d0333302a03bb4fceecbd504b41263
BLAKE2b-256 22d2d4675ec2a054f3c4a86b022f09bff72196a9a1cf96f5b50675f439093d83

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.2.0b1-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.2.0b1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyfastcdc-0.2.0b1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 73174bd20832fd728a8cf9d8c7766c377715bb8134c178dc6869b8ca42576d9d
MD5 93cc480e76e1fc25e07b60510efb9c3c
BLAKE2b-256 d0f9be7b536f1b8f31f43a2f81ca61bd90b69bcaab10c6059e2078a26116fb27

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.2.0b1-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.2.0b1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyfastcdc-0.2.0b1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9d0967b3137cd096ab0501483ca3177b0479b42440bc411cc5b9f427611b97ec
MD5 e9895ad88411c491e1c6cb5217ed1030
BLAKE2b-256 9849a639843cac8bebc43dcbb0f17df0244a895d863bd9a7362a36787d0a2956

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.2.0b1-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.2.0b1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyfastcdc-0.2.0b1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ab2dce0961df97d665b04644cb4e2cac4b98dd90503b9e9a3c07dc4196394247
MD5 05f5afa631ab47ba7b1f626623db2470
BLAKE2b-256 e4c8e4a37ce7714dcd1b34a59771c074a7ae9eb5ad5ff10c6485c9eec355237c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.2.0b1-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.2.0b1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyfastcdc-0.2.0b1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9935484803e6895ec05eadbd6ba442896e5ed2b0c17103dce0c9b4486f1df82e
MD5 2edd082ad0a646a857c566d9be20c974
BLAKE2b-256 7c5a542ad64df42fd8c369d3425192f207d62ad2b9fa7ecf7e3bb6470a3e8643

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.2.0b1-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.2.0b1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyfastcdc-0.2.0b1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ab551580d49ea414e6abfdcc81250f43c1c2150172bd14cbb1b2ad814a5191fb
MD5 3442c803f540fef763c248744a12f1e2
BLAKE2b-256 172bc30f1c3bd0e4db6e46453cb8256a337af9c9b059822342dd73ebdcd6ff5e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.2.0b1-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.2.0b1-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pyfastcdc-0.2.0b1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 f8f941c7f9f7b234a0c0468b5b833584be5246c3c5524b57247a2e1a7c26eec4
MD5 6d6f9557592f8a09349ba2bc5a19ffaa
BLAKE2b-256 359e9dce2dff9082e7bc3b6feb89ac332a3954578dc37c68a765a5c492566dbc

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.2.0b1-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.2.0b1-cp311-cp311-win_arm64.whl.

File metadata

File hashes

Hashes for pyfastcdc-0.2.0b1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 dcedfb28f3459dfa5c604379dfccc0c873b301f4d86863efdb968022d5200e38
MD5 675b52228329476f223ac90034ad800d
BLAKE2b-256 09e2cf8b93767c4da1c2f14002118a41d3fb2066cb600f2c51d6c7b353bf117f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.2.0b1-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.2.0b1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: pyfastcdc-0.2.0b1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 435.9 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyfastcdc-0.2.0b1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 83cfeccb5ee3cf80e5d70058eabd8a8b0455a9dc68b7d9f4626150ffbd8d92c4
MD5 73ef404d741427b785700040919000fd
BLAKE2b-256 6cf6804cfc713e5bb385fbab8e300715ade0a164d255660345729fdd78f01fe9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.2.0b1-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.2.0b1-cp311-cp311-win32.whl.

File metadata

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

File hashes

Hashes for pyfastcdc-0.2.0b1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 7d059f307e57d3384594a90e8181a2451c6bd7c917654e89993f5cf478ef56a2
MD5 99a0befc8273c51f29b41e3fe47031e5
BLAKE2b-256 e1eff88869a4196a2347cc5aca7e724d62f4a0957d90ae4dd2891a9c5af68bff

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.2.0b1-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.2.0b1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyfastcdc-0.2.0b1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1fd8f29d322629832f6e48912f11d04c6079d320dd67b84100eed21424e9173e
MD5 d532a04a69d22524b2a4521d1a747349
BLAKE2b-256 7a18e94331259b47e5a0ce290129a2093f235138bfedfffa7712ddcdfa8125d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.2.0b1-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.2.0b1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyfastcdc-0.2.0b1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 59aae665bb0c2647184e71da963c36f5b7bb982392438e2507adfa47d08f1e5e
MD5 6a0dedbbd32459e25f725b31ffb6a5e5
BLAKE2b-256 9aededc69c5164693452dcc5282d5460815072d76c9a4d766c993867c595dea4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.2.0b1-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.2.0b1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyfastcdc-0.2.0b1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 056a77d08cc7cfa68218886358f2937dd7c17aa465df4916842e959cc82dcd87
MD5 93552875bf7de8e82cebd7ff2ba27ecd
BLAKE2b-256 b91a1fa6ab33b5f175d01982e9c63dec793e54946de284b60c667c343ed2c5ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.2.0b1-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.2.0b1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyfastcdc-0.2.0b1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cd242c2cf28bd76a13c0e12e31f63916e24c3225448391ad848a7ba731320c00
MD5 ab843b63e60a181863fe23e39b525c30
BLAKE2b-256 fb50a7f5c0c94129478331cc38e4a43dd30640c843d808ca3f1492fe49162888

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.2.0b1-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.2.0b1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyfastcdc-0.2.0b1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fe4d66c8b71cf7b1c3b4ecb3725be3824c3bc7b5c14fc3a93ba91c8b42c6f6b2
MD5 75d7ad589e3a7f7341bf4f129773bd92
BLAKE2b-256 9ffdda47daf41217d5dc6e2a7abddbbc3e83fdf8cdc90728333b0bdfdc9080b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.2.0b1-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.2.0b1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyfastcdc-0.2.0b1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 91c200f2ba47c9f14c4da30c8bed1ec7e54526d5efa124599ca6af3869c0a4e1
MD5 8e54b7afb8420d8db578c04a4fccedfa
BLAKE2b-256 628bb65677412891b995a6841e1ee874ae37b1524ed36d31505e03b6ef9fa7c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.2.0b1-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.2.0b1-cp310-cp310-win_arm64.whl.

File metadata

File hashes

Hashes for pyfastcdc-0.2.0b1-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 65e679aa65abaa34d3e78648a7af9636c58e9a2ba9a9cff0b088e95d738f2f57
MD5 72ff57a2b988fda6e2726772a0c8c7e5
BLAKE2b-256 03864cb5a070c8379a94ae3c226d9cc833496d39a9f5161c57fefb3dd79db1b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.2.0b1-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.2.0b1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: pyfastcdc-0.2.0b1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 435.9 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyfastcdc-0.2.0b1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d1cac84a31a4685b9b6246b54f0c4f8d0b75cdcb64b41dc302521ef6f6627f5f
MD5 f3d912d16efce5502ceabc968b9d53b2
BLAKE2b-256 8f1b75ec75e7958061af91667a5da971513efb87c4b300b45f2f9763734f7bc0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.2.0b1-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.2.0b1-cp310-cp310-win32.whl.

File metadata

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

File hashes

Hashes for pyfastcdc-0.2.0b1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 7c0a58d3f001b51d81399e1f1c171e9dc80e6d326361b5039663b9a45e5ecbc6
MD5 057e39fcffffbf867545c9ef653be637
BLAKE2b-256 c5ea583a7e631de711fd69e37c195be99d4ed5ee2191ea657a7a5521b34a01a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.2.0b1-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.2.0b1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyfastcdc-0.2.0b1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 760a87bae67f87becf59c4de53433de646947acc05531ed6355d51929c82fbeb
MD5 05484da258c61964284abb788a786cc2
BLAKE2b-256 0eddd1d15fae7909256ab31aa41cb4c5b094e04b5f20aadae53c4392a9adcf94

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.2.0b1-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.2.0b1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyfastcdc-0.2.0b1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 eef241005cf66edd403525f7ed5e07515234734607e172a95eb2c48d7fa69ad9
MD5 049f9b8785a609c131e22720f3e08851
BLAKE2b-256 30d65656c6cefc9fe1a073c53df5e49579ec19c061a5b29a526ae01bfd1ff4d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.2.0b1-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.2.0b1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyfastcdc-0.2.0b1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ac0ddb7e8d01e847b0b065d2210b29bae8ba8fa6820c1a289466cf8955bd73ff
MD5 e3395ec040cda4f4831988256a440355
BLAKE2b-256 c5b0de51bcc4a5264fc43da15cf41fb56e83d4b67de5c4a9982f9e1b78739bde

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.2.0b1-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.2.0b1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyfastcdc-0.2.0b1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a37bb43f5164e395c12facd4a5c8a73954c3be53675b09a757c63eb7c3dc51bb
MD5 4fd21453ebbd488d7e1a023092d19f6d
BLAKE2b-256 542e2540b09ace04b2c84f229e0b7afb4a3a7856d08d8c79c93346372eff127c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.2.0b1-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.2.0b1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyfastcdc-0.2.0b1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 adc032d415a87216dc8c6da399c826922b3003ae816b3b852b8b0aca83fc1ccf
MD5 0d4223506c2674c000f4b886da20640f
BLAKE2b-256 63509ce56f213bff3709a6c91051a4cab42ec6abef74b7cb6d3fd60ce4534d2a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.2.0b1-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.2.0b1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyfastcdc-0.2.0b1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 03c4a43b1cd71370f0d70847ed5d21dcda12e7d44d61344a188181e99961cd83
MD5 d812654b1e75d03552fd53a2974421b6
BLAKE2b-256 a774c84bd1c7f64527d97530e5f299aa0f568c5823a76e6b90e27f912caba4f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.2.0b1-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.2.0b1-cp39-cp39-win_arm64.whl.

File metadata

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

File hashes

Hashes for pyfastcdc-0.2.0b1-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 8f7749f8401827c45a78437b5099b6eba5a9040f2c166c6323c84ec22b80c2a1
MD5 6fa86c962b74f03780ef23f7c92723c9
BLAKE2b-256 b8133bfdbdbc945835cd3aceb6e564f2dc6d86ad929438cccf69010ccc08cf3e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.2.0b1-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.2.0b1-cp39-cp39-win_amd64.whl.

File metadata

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

File hashes

Hashes for pyfastcdc-0.2.0b1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 81752974cee31b432b9545a7a6b940ccf4194d46c3e94d85a4271e212e70e4ea
MD5 60534db0a768122b967a2c2e2b43dd0c
BLAKE2b-256 910fd574bb9ac50e7838e8f3cf48def99b0f3bae93f8d31590be73a2dc4df8b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.2.0b1-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.2.0b1-cp39-cp39-win32.whl.

File metadata

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

File hashes

Hashes for pyfastcdc-0.2.0b1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 1b07f32514010acc25c9cdb1eebf1ad6a178a20929440c78eb632cfad13088e2
MD5 53b918b94b4c306998bb87c954ad5c1f
BLAKE2b-256 edfbcfe6e5fec56d7feec18607e9a8fb821643c843520b0e6bb1e6e330b5623e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.2.0b1-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.2.0b1-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyfastcdc-0.2.0b1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 95c836c83614ae8d7c1b8617248d2590c8c9f706a3a76b97829b3802ca81ab7b
MD5 a52334764e8a7f9234a0e488c23fbfdf
BLAKE2b-256 1f1499c3fe5931cb0e7e2fd61568ab86e82ef323443e9aa9d941dc27ab921908

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.2.0b1-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.2.0b1-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyfastcdc-0.2.0b1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 67840593d985f4728296c462f139fe21e941c0b3f7abd9accbd6ba6cfc624bd5
MD5 1c1ac579015eee2f487f5354f9292753
BLAKE2b-256 2a0663aeb9444f8bcf856d178ea03c7c6329da7d9148dc1dff57fa109d1181b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.2.0b1-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.2.0b1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyfastcdc-0.2.0b1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 837b82df48f968b679030cf20c0b4aa46cdd65f802839a218fbcdf4799744483
MD5 6affebb532e6babfa546224cdc371689
BLAKE2b-256 8116ad3507a0aa3734d86c2734bd8e695a4347d891d0d82cb20e271d50432f86

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.2.0b1-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.2.0b1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyfastcdc-0.2.0b1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8b4d7037a0723cb1ec52e5c5bc62a933382bbb6068be2e27d30bc010c49ce87d
MD5 a483792b4511dd6c26185181c79dc9d7
BLAKE2b-256 f2066a59db75b5ccee9a2f8f5d6d48566639c3f3276737ce4ae2d67cca525337

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.2.0b1-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.2.0b1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyfastcdc-0.2.0b1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 da6aab810bddb77ad271b7b4217876d06cc2f00ee4b99c67aed23fb63e6fb3b5
MD5 69ab07f851642e10bbd30f73d91c6665
BLAKE2b-256 29c2a526230fbc372253d6643ef709443ee08382b0ff6fd89859da500875e85b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.2.0b1-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.2.0b1-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyfastcdc-0.2.0b1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1a3aa96139f27fb5ac1466545f2eef53f941ea9b7d1f5d77b1d5a6f40c083951
MD5 e8ad2a00fff83e17ac8273524a11e69e
BLAKE2b-256 2791a4d01f0e46900f1c987cee7687df798acedbf5d532754bfc37d5998cbf40

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.2.0b1-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.2.0b1-cp38-cp38-win_amd64.whl.

File metadata

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

File hashes

Hashes for pyfastcdc-0.2.0b1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 c1b10c6fcd834ce41fcf9d6d04b4dc0d35ab0aa833dce2af2fc0e6c98a5e1459
MD5 1024a088e666adb5039be1355230395d
BLAKE2b-256 dfa7c24beed6847bc57c9e34e716ecc0ca719891f40fe94e15ee0830fa8f45c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.2.0b1-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.2.0b1-cp38-cp38-win32.whl.

File metadata

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

File hashes

Hashes for pyfastcdc-0.2.0b1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 e6f634153bf83e9f482f33714fc3252832c4bb984d6db92cdf305e2173a2854c
MD5 b381825c52993921c2672833642594ad
BLAKE2b-256 2f380733343170597f71079af36e67f53de66c07239706cdd8d1a077d49c0c56

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.2.0b1-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.2.0b1-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyfastcdc-0.2.0b1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f1789fd61895c7e95bcbfefc8d54a3d60612eee8e17ac781324a73e6827ac549
MD5 7980fa04cb75c904e7a0eb90a56802d9
BLAKE2b-256 7daeb2cc0dd9d19e867bdc9a8ce0ed6d6874c857b0d4fc217e50898bb7627b4a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.2.0b1-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.2.0b1-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyfastcdc-0.2.0b1-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c6462af1a32de7d0d32dba338cbed5522bd80e4be722a186b4d1f1971759f24a
MD5 8d23c8c69774802f33a810edf5bf2cc7
BLAKE2b-256 f8c13f0e70c8d3c838f217f0eb1a910fbad7e8063ff0e952c7560d94acae967b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.2.0b1-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.2.0b1-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for pyfastcdc-0.2.0b1-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d6d424e2889f39301b7b3fd16ea98ce7f683b6ac369bbcb9844ac944174e4715
MD5 a814bd14c5612b4caa55f0b5752c9ed9
BLAKE2b-256 a0a0a54d96c49aa8e8368a19f01e95e67267f91fbedb67cb93a353c048858e20

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.2.0b1-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.2.0b1-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyfastcdc-0.2.0b1-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 66e9e49ed15cc0ae5a19da62f06c5e70ebd636e1137ffd4778cf3f6e3137fb5f
MD5 5d50a53c8b4194bf75b0bdf43dc47034
BLAKE2b-256 ac1651ec93104ad4f206b54dba4a05ee928776f723af472288f9388d3f0f4f8e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.2.0b1-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.2.0b1-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyfastcdc-0.2.0b1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4208f05376b9e0093fa2e164a21da4359b1f392d3df792ab98217c6a5a695d63
MD5 225d4cc0edb4476d96df0d478f65e76e
BLAKE2b-256 0d67395f5108b85ee7f8916ea80afbc7862f45cec0939bbe9256149a98dc9835

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.2.0b1-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.2.0b1-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyfastcdc-0.2.0b1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b59a199f5fe3438c7b92fcd70eb88734ba1d8ae7094bf429a1004fb9b421b95f
MD5 59f3e123eaa507c642723b07ae3b3dd9
BLAKE2b-256 ad6b80841622fa1d994f3fff4d98eb561babac6232d8a11f4ad6af7ba47499b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.2.0b1-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.

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