Skip to main content

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

Project description

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

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.1.tar.gz (28.1 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.1-cp314-cp314t-win_arm64.whl (432.5 kB view details)

Uploaded CPython 3.14tWindows ARM64

pyfastcdc-0.2.1-cp314-cp314t-win_amd64.whl (463.2 kB view details)

Uploaded CPython 3.14tWindows x86-64

pyfastcdc-0.2.1-cp314-cp314t-win32.whl (446.5 kB view details)

Uploaded CPython 3.14tWindows x86

pyfastcdc-0.2.1-cp314-cp314t-musllinux_1_2_x86_64.whl (841.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

pyfastcdc-0.2.1-cp314-cp314t-musllinux_1_2_aarch64.whl (834.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

pyfastcdc-0.2.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (852.6 kB view details)

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

pyfastcdc-0.2.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (867.1 kB view details)

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

pyfastcdc-0.2.1-cp314-cp314t-macosx_11_0_arm64.whl (155.3 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

pyfastcdc-0.2.1-cp314-cp314t-macosx_10_15_x86_64.whl (165.0 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

pyfastcdc-0.2.1-cp314-cp314-win_arm64.whl (424.4 kB view details)

Uploaded CPython 3.14Windows ARM64

pyfastcdc-0.2.1-cp314-cp314-win_amd64.whl (443.1 kB view details)

Uploaded CPython 3.14Windows x86-64

pyfastcdc-0.2.1-cp314-cp314-win32.whl (430.0 kB view details)

Uploaded CPython 3.14Windows x86

pyfastcdc-0.2.1-cp314-cp314-musllinux_1_2_x86_64.whl (790.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

pyfastcdc-0.2.1-cp314-cp314-musllinux_1_2_aarch64.whl (766.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pyfastcdc-0.2.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (794.6 kB view details)

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

pyfastcdc-0.2.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (785.4 kB view details)

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

pyfastcdc-0.2.1-cp314-cp314-macosx_11_0_arm64.whl (143.8 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pyfastcdc-0.2.1-cp314-cp314-macosx_10_15_x86_64.whl (157.8 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

pyfastcdc-0.2.1-cp313-cp313-win_arm64.whl (418.4 kB view details)

Uploaded CPython 3.13Windows ARM64

pyfastcdc-0.2.1-cp313-cp313-win_amd64.whl (437.6 kB view details)

Uploaded CPython 3.13Windows x86-64

pyfastcdc-0.2.1-cp313-cp313-win32.whl (424.1 kB view details)

Uploaded CPython 3.13Windows x86

pyfastcdc-0.2.1-cp313-cp313-musllinux_1_2_x86_64.whl (796.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pyfastcdc-0.2.1-cp313-cp313-musllinux_1_2_aarch64.whl (767.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pyfastcdc-0.2.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (801.6 kB view details)

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

pyfastcdc-0.2.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (786.7 kB view details)

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

pyfastcdc-0.2.1-cp313-cp313-macosx_11_0_arm64.whl (143.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pyfastcdc-0.2.1-cp313-cp313-macosx_10_13_x86_64.whl (157.3 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

pyfastcdc-0.2.1-cp312-cp312-win_arm64.whl (419.1 kB view details)

Uploaded CPython 3.12Windows ARM64

pyfastcdc-0.2.1-cp312-cp312-win_amd64.whl (438.6 kB view details)

Uploaded CPython 3.12Windows x86-64

pyfastcdc-0.2.1-cp312-cp312-win32.whl (424.7 kB view details)

Uploaded CPython 3.12Windows x86

pyfastcdc-0.2.1-cp312-cp312-musllinux_1_2_x86_64.whl (814.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pyfastcdc-0.2.1-cp312-cp312-musllinux_1_2_aarch64.whl (784.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pyfastcdc-0.2.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (820.4 kB view details)

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

pyfastcdc-0.2.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (803.2 kB view details)

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

pyfastcdc-0.2.1-cp312-cp312-macosx_11_0_arm64.whl (144.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pyfastcdc-0.2.1-cp312-cp312-macosx_10_13_x86_64.whl (158.9 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

pyfastcdc-0.2.1-cp311-cp311-win_arm64.whl (418.7 kB view details)

Uploaded CPython 3.11Windows ARM64

pyfastcdc-0.2.1-cp311-cp311-win_amd64.whl (436.3 kB view details)

Uploaded CPython 3.11Windows x86-64

pyfastcdc-0.2.1-cp311-cp311-win32.whl (423.7 kB view details)

Uploaded CPython 3.11Windows x86

pyfastcdc-0.2.1-cp311-cp311-musllinux_1_2_x86_64.whl (799.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pyfastcdc-0.2.1-cp311-cp311-musllinux_1_2_aarch64.whl (780.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pyfastcdc-0.2.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (800.0 kB view details)

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

pyfastcdc-0.2.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (794.5 kB view details)

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

pyfastcdc-0.2.1-cp311-cp311-macosx_11_0_arm64.whl (144.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pyfastcdc-0.2.1-cp311-cp311-macosx_10_9_x86_64.whl (156.1 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

pyfastcdc-0.2.1-cp310-cp310-win_arm64.whl (419.1 kB view details)

Uploaded CPython 3.10Windows ARM64

pyfastcdc-0.2.1-cp310-cp310-win_amd64.whl (436.4 kB view details)

Uploaded CPython 3.10Windows x86-64

pyfastcdc-0.2.1-cp310-cp310-win32.whl (424.7 kB view details)

Uploaded CPython 3.10Windows x86

pyfastcdc-0.2.1-cp310-cp310-musllinux_1_2_x86_64.whl (754.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pyfastcdc-0.2.1-cp310-cp310-musllinux_1_2_aarch64.whl (737.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pyfastcdc-0.2.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (756.7 kB view details)

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

pyfastcdc-0.2.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (752.8 kB view details)

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

pyfastcdc-0.2.1-cp310-cp310-macosx_11_0_arm64.whl (145.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pyfastcdc-0.2.1-cp310-cp310-macosx_10_9_x86_64.whl (156.8 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

pyfastcdc-0.2.1-cp39-cp39-win_arm64.whl (419.6 kB view details)

Uploaded CPython 3.9Windows ARM64

pyfastcdc-0.2.1-cp39-cp39-win_amd64.whl (437.0 kB view details)

Uploaded CPython 3.9Windows x86-64

pyfastcdc-0.2.1-cp39-cp39-win32.whl (425.3 kB view details)

Uploaded CPython 3.9Windows x86

pyfastcdc-0.2.1-cp39-cp39-musllinux_1_2_x86_64.whl (753.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

pyfastcdc-0.2.1-cp39-cp39-musllinux_1_2_aarch64.whl (735.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

pyfastcdc-0.2.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (756.2 kB view details)

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

pyfastcdc-0.2.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (752.2 kB view details)

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

pyfastcdc-0.2.1-cp39-cp39-macosx_11_0_arm64.whl (145.6 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pyfastcdc-0.2.1-cp39-cp39-macosx_10_9_x86_64.whl (157.8 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

pyfastcdc-0.2.1-cp38-cp38-win_amd64.whl (439.5 kB view details)

Uploaded CPython 3.8Windows x86-64

pyfastcdc-0.2.1-cp38-cp38-win32.whl (427.3 kB view details)

Uploaded CPython 3.8Windows x86

pyfastcdc-0.2.1-cp38-cp38-musllinux_1_2_x86_64.whl (785.3 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

pyfastcdc-0.2.1-cp38-cp38-musllinux_1_2_aarch64.whl (768.0 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

pyfastcdc-0.2.1-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (790.7 kB view details)

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

pyfastcdc-0.2.1-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (788.0 kB view details)

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

pyfastcdc-0.2.1-cp38-cp38-macosx_11_0_arm64.whl (149.4 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

pyfastcdc-0.2.1-cp38-cp38-macosx_10_9_x86_64.whl (161.5 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: pyfastcdc-0.2.1.tar.gz
  • Upload date:
  • Size: 28.1 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.1.tar.gz
Algorithm Hash digest
SHA256 0955c9d6be5d8323a6e8e2367160ac5fb3d566e5a9cb12ae9a25e04cc966a3be
MD5 59602808ff13c5faafcbe2022abd991f
BLAKE2b-256 8cf14b80bc2faf74c3ed3123b6767abf5ee630d1f07e0f29d8f36e700c5a5702

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pyfastcdc-0.2.1-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 f4239bf195d86f5b0bd84b03fa8d7ced8bc86180b5d04b6f168e03fa107a8ff6
MD5 c01f40a632234fe343264164c49a2608
BLAKE2b-256 fe1b0ecf6a2d9a478867e696c07e1dbc2547ecbd04513153a62c95c42687cd1f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyfastcdc-0.2.1-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 463.2 kB
  • Tags: CPython 3.14t, 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.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 a50b76b4d3944db02a5ba6a78a557f1300f625a84c6f45750b5a443eca1a6e2c
MD5 4dd89a489799a12156234acc2fd4f414
BLAKE2b-256 84d9c239729515923cc77df5560ac54bee54151b7500c1894914ac1195fbcc20

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyfastcdc-0.2.1-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 446.5 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.1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 0b5d32cb5f1e5060982b71acf3b2ccc198297216589b8805ce10744a628a0bec
MD5 eaa61bcfbec89ce115d4c7dff3e61cd8
BLAKE2b-256 b90d5aa1d7c0cb5c10b8f5cb3bd34b46eb9c91177eb85c57e56e95dbf1f5ae4d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyfastcdc-0.2.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4d7cc7f84ceedff2a46b4a81e7742be25c4586eb42201387ab98898f539ea2fd
MD5 7a797e7ed42753ad6104a5d98986b722
BLAKE2b-256 4ad601141baa44125cfdaa836b09f5731c367bb6f019c3de4d249501185ef5fc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyfastcdc-0.2.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 decdf29988719c2170f0e2f281059818fecc43bf82d337b6b49ad22871b3c341
MD5 7f5c9ca88a3e2283369d72e2bca3736a
BLAKE2b-256 24bf77a784032b9b8181813338a5ca5a8dc11affc3d7d559b1ea0249d45e3d07

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.2.1-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.1-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.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0142bf57f193c7c3d9a24e954a3839a6fec2f7ba33d52a5ec80dbff8c92738bd
MD5 9170252a1cda609d972bbcaa9b2c9d83
BLAKE2b-256 b32f1f1098a4bebb3d1d5517d55dbf67953a15715c83a604a3bddac32744c874

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyfastcdc-0.2.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 94fc1edf6e36af02abdb56b72b0eba902c1500eb84e772a60bff07b263f5e058
MD5 ed06306438feaf7320c0685bc7febc0a
BLAKE2b-256 924f79f308dba9dfdf65e3464d0e23b4f74dce94c3649ebd72cb9047687b249b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyfastcdc-0.2.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 be962fd5d5c642a1ef61e119d44e9baa57dfc3f48fdbc6d06b7862774e84d065
MD5 ea02549fbb63b9b11cfbbc4c16d91d39
BLAKE2b-256 8a93b66519347f535f5319347f91f27f1bd44f623be50b0b13beee618e72f8fb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyfastcdc-0.2.1-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 5e35277849453aafee46d99325798aff4caadf1b8674c9e3bfb060c989e3756d
MD5 e15b21a4219b3dc7adfe9f2fa1879cff
BLAKE2b-256 b855775bd2057bfda54eb00ee1af20e2e2ca5a7fe1f5bc2155938612c88ae74a

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pyfastcdc-0.2.1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 bdca112c861c19982ad2e2a9d7c7d7fd06cfe61845f6263bd9a394d190e9682e
MD5 3905edf01eaecc023cf14e02d772903e
BLAKE2b-256 530142ff9531de9497222f9f24bd84aeb8bbb42ad6c1074324799deb9a90502c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyfastcdc-0.2.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 443.1 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.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 f8cf20bba4efc2e80a322d5c9ac4ba0e619289a676e13acbffb4c5ad5bd725c0
MD5 077d346e60435e32fc709cdc59498d4a
BLAKE2b-256 2f7d3057d7f01fb92dc9f37528eb537a9be7c6e405487ca6cc7540c39e4e0163

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyfastcdc-0.2.1-cp314-cp314-win32.whl
  • Upload date:
  • Size: 430.0 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.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 61f97622e561f6e61109aa568f0c50e8fc07cfe7b3f3bf9be580d98ac74d6afa
MD5 7bb93841a916184cea6aa4eb2d3492f9
BLAKE2b-256 f0d524ef82d39c9446aef5fa028c11f2f94ad9ad59ec7157ca1f985a221174b4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyfastcdc-0.2.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 93c56cb8326944b1f87c67bf7b385d6715694487200a946ddca4aa066bfd71d1
MD5 dbc4c323d8091ce38ed29d6cee70cf01
BLAKE2b-256 18f272c17a867050e5444897d43b7467b9a2dcc71415fb1b04c630d8abba389c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyfastcdc-0.2.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 27ee8d04cf9fd047f4ae998b1211613fa32c65cfcd4c2beda03ccf6d65736589
MD5 97cae7449703971b50a9437780654539
BLAKE2b-256 d521af1bdc0b00ddb58b0e26a6d8b13ee8cb2b23f0b32d29ea3957ec30860462

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.2.1-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.1-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.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c8b2e1b44ea20ae0c3d082f48afbd35f91687301642840df5e0c246f8bfe01c5
MD5 b7cb05e4aa29974cf54c2a07a2669fa6
BLAKE2b-256 815d9cc65e923df4265222522541404ed24c22f3f695e3f6b17b768665b96ff5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyfastcdc-0.2.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d9db64929ba94bf706bc0b2aafbe1965c01b6c08752811eb83df893b560bd6f2
MD5 acf4a06193ed5734b5740317ba6a4504
BLAKE2b-256 304e0070627d011fc1724c1d6d8445cee949a291168d3e115d394cc16875a63a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyfastcdc-0.2.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 49ebc6b65bfc00f347535bc94461b422ae614a9774ed71f949b9cf251354aaad
MD5 e48f50a121373d59d201e63513663174
BLAKE2b-256 5e743c663c8e5685006307667bd9e1c00900d8bb95ca5ea3c85725b2e5d1d018

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyfastcdc-0.2.1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 5a02572f7fe2f7e62d4136dfaf234cb9c7de9352c869b29a0ab2c7c36c8e5363
MD5 55f7be67c0de8d9b12428adbc3d4539c
BLAKE2b-256 5837333433525885e464b41dfa5f8463479a8caa6d4d4fa2e75cf70455105e35

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pyfastcdc-0.2.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 b6ae548628d66d8ddc4be41407f32acac376528386c0cd9ed38a1916fd550863
MD5 ee2d3dd0e8acde2393b52c51c7684abc
BLAKE2b-256 739816d92f5a2c52cefb710581abea8ff06025993271908b0bc3086c66541829

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyfastcdc-0.2.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 437.6 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.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 0a8974c212b27f8b884a56885907d659655aa49771e1d47a62e9a8c065dbf8e9
MD5 18b2d76f0bbcfa4b29d17ddd98bf6ce9
BLAKE2b-256 35b3701d56253adc3d8abaed99ef390f0af553a962952a81d38c5bc5dee0d297

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyfastcdc-0.2.1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 424.1 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.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 56d8d317b7045dcd6d5e09bea6944fd9238fe8774ad56fdd287a717b1951ad30
MD5 beb983a2d5a0257a29e5dab45c2ce97a
BLAKE2b-256 9f48c6883941f02f331d186b334b36ff024ac1636732d51877b5a2c124f612d4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyfastcdc-0.2.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 88289b52ed35152818fdb0dbe44dc69a1a74b5c8993174ae7095262dd6a3286c
MD5 171c8fde7c99a21f4aae0c8ceb49edfb
BLAKE2b-256 91bd0182e08e846f6b1546e2d786e7a8b83fbdce5a4dd0c2041369546cb48609

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyfastcdc-0.2.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2936002efee301cce14be727da26e851baeba9cfefab5fa8381973d84c7f72eb
MD5 96ed1d1a9aaa75bd0345fc67d1aede2b
BLAKE2b-256 6892dde0f7ce7b8fefe29c98ca24ec6ba0017d18d50df102beb74d9fddba2d9b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.2.1-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.1-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.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9137bbf1e05617917e26abec25d05323544f29079ef5a2481fafacf86056026a
MD5 3a3d8c54df6492c335970b4d295cada0
BLAKE2b-256 7de41a46522d774e6c1318713e347b58bcd5fe3d25eb3ee34813da8dfdec5ae9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyfastcdc-0.2.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1be4e33949833c30c4437e16819d70ba3ee64d2408e9c17d5ca3601ad7e9d896
MD5 ef862c7474d670972b92f1599b794f20
BLAKE2b-256 e11fc7ceacca0cabe544cdca654f2d0a51ce27d8ff3db92ff862c7fbcb94731c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyfastcdc-0.2.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 76b89105dd19babdfef14242cdd24d84612573c954ea6d1de52d6c34b27e1e5a
MD5 d3a53cea359bf969bd733b5037f0d74e
BLAKE2b-256 e545859c4cba6a8b117fad0fc835c40c084ff83e9f4aec9e8e10bf7ee16a894c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyfastcdc-0.2.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 91d3f81dfaa9b965c15411f9685c79f41a855c741ca2d252be82ad21cb688370
MD5 3ef12abdf549d35c870a5e111129f60b
BLAKE2b-256 5c0ebad93cb97de1c5af7f06bff3546005cf9be6e9aac56e21b3569504b66f9a

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pyfastcdc-0.2.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 ea6853bd6d3dd2f0ae7692eb9a86c1ff731eb7e1ebfd409576b280f54330fcae
MD5 b9f2cdb0a5facde882607c2fb4cf1ded
BLAKE2b-256 886f0c225f4122ff0c093ebb18c3a26206efa6a7e49f23060b443538e4403e00

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyfastcdc-0.2.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 438.6 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.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c67d7cba28a9bc0640e1627652feff3f7dfeea4381d12905e4839bd2e9f6bd26
MD5 9f85ece4ae358a02307e40c881d5bf1e
BLAKE2b-256 48b5669de283bbcdfc9f8141ad82b57ad9a26ec36f802c22d1780f5573dd4a08

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyfastcdc-0.2.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 424.7 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.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 7de4ad92dbd45d7083964b03a11e73cf99bbbbc38a7620671c89105cb39f96f0
MD5 2240271e25e1341cc814849a494ae3b6
BLAKE2b-256 8512fbd30ee96f6ac128b1bcf0801f817803d4b38ef6bfa9a00a1abc9a84cd56

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyfastcdc-0.2.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 949681ff920e89cbe1777450588bede78620852d98123286d4467ff37006150e
MD5 d5d65e43bd9b80e3761712c071c78a20
BLAKE2b-256 41995ebb174644a6b5017683b75fc3a1cc24a0246f73d678e2673d5a08cdac8a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyfastcdc-0.2.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 84d467a2802dce4fae5ce89a3784bf9b8061fa863a4e0142ed7cb9ce56fcd592
MD5 a7538c56b37aa8e698af485069941d60
BLAKE2b-256 8e448c2e6cf85825b6aae8ff39488036440483505dbfec1b701112183d7d0063

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.2.1-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.1-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.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e66f27952d1391d19b804ffa5ea8e48afc59b4b9d4258ab41e195930fc84486c
MD5 8e5ab03a79ae0d54544484bcc330baa7
BLAKE2b-256 94b186aee0330b305fa75378dcd9fe9866055fda7c1a023a8199e3e82d82d4a1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyfastcdc-0.2.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 08cd037f8c7e9e1363cb5fa386d12546e8f9cb94a78dd5faf6f91878c996edc6
MD5 45a3dcc2c7f7d7c78481ac7ae731dd89
BLAKE2b-256 08115c6f409be5651ee5ee5dc5a54d446022a1768b7ea33a87ea7fd28b624dc0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyfastcdc-0.2.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 64125cc4414bf005fe88b04e35f82cfd19ef941ad5dae5e793cd3ab95a5187b1
MD5 1c11840fea6ae71b6ef06963539865d4
BLAKE2b-256 420448e7630e0e1d4977fb307b9814042538ab19e8291a989e2e7298640a40ee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyfastcdc-0.2.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 2e2942214934e8509bfc3dfdc205cb1bfc0d1529c88ad01d1cbdb136fcfe31f4
MD5 946cd89d05811aaef6c2bc9fd3f80e7f
BLAKE2b-256 9b6cd1a1e38d09f11d0b1fcd48b8cf2c512ad7276a4f6724bbefa59bf8719b41

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pyfastcdc-0.2.1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 da7c2c7d76115b11cb0319963e75eed872b6eacb92e97bc8fb21fbbeda971d2b
MD5 567ce842cdf5fa292b0d7cc9613db046
BLAKE2b-256 deb5fae0ffa43c117158dcefb00459d8a40d23708ba4b692340dc0d7d03ca863

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyfastcdc-0.2.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 436.3 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.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a6cc520e5830b81ea87be52cfe46044e18be55b07f3f6609f809caa36562fe53
MD5 06193094f971a517ab6b539876d561ad
BLAKE2b-256 263a1e2de33db52d8efb0972951151c4cce76e8245778ce8756a82cf2e9ab5d9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyfastcdc-0.2.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 423.7 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.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 17df1b29ccc445d42818a101e2b6fba7accf2d32f297072e18ad7e2ab4835aad
MD5 2f4660cd4decb06f94fe038413c66236
BLAKE2b-256 77b586c5373f3db80f28dac1f7a5c62446e2de9637d1cf29ff7e02f4a580c455

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyfastcdc-0.2.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ff17cbca7136c37968895cc75751ba647eff51424beace83fdbb01243f298987
MD5 b43b81a0d99dc3ba629d7bdd85e11ed9
BLAKE2b-256 ecb141ee069337a566deafe33b20a7a4daf447ec0407f08f1b3b7644fe6849e5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyfastcdc-0.2.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b246142e64c9a93af631ab529e1ddef840b6262a95229e9eb21091bc69032241
MD5 16668ae0d5e24e77795e95f5dfc3f21c
BLAKE2b-256 753f0b10f9b8c6786733ea32dc2e911984bf49469e2785b8ca6c365fa742844a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.2.1-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.1-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.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b1a9d37094a33e4b5a769bcf49efcb3c7187dbf1ce9c8c47df9d314425992e9c
MD5 04b22817f476df471a6d1e4833413925
BLAKE2b-256 491ad1a002fb4daaa0f00c07def8d4621eb9ddcdfce5edeeeb6e09c95863877e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyfastcdc-0.2.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a61236b8f29ba0749363f4c1dd16205d427f6c33619bf0c28d3bbe8215957409
MD5 6127109c90e258356f50a2d2dfad2117
BLAKE2b-256 a75d41bece425ae6cacf5b15e0b8431c2c4d0d983ce0bd53e8ec9e720b888541

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyfastcdc-0.2.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a67e2833aeaf2bdbca8e364fd2b3e550a0f3d8e41226787e1339d4889bc45e03
MD5 7e848b5743d6c15b5073f10644072df1
BLAKE2b-256 88bbf88d47a42b8a813b191cd5e7d7583186fb8fe95523483f93b126a94a2403

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyfastcdc-0.2.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4ae67603bf2f38d9b4dd50edeb4b65b2366e74c17da9f6092be1e32851659fb0
MD5 87f9157405520671dbba8c592c528d39
BLAKE2b-256 10b3be825c29f2011f8b995927697bfe46cb97c5a55ec8826bca6f7493f8ef35

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for pyfastcdc-0.2.1-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 db01659e919e938452f3764c80c5b8838eb6a90f1222bded38d45706a518b040
MD5 b94c9ef2f39f107274251380fa4d0dec
BLAKE2b-256 edb7899cbf4802cdfffec752b61db965b2929a8fe1f9d635db3c103a76b974f1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyfastcdc-0.2.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 436.4 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.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 3d6777c21b0067ec907a2c3445cede65e992a5e618eb3692ca49b9c138b6dccb
MD5 ee80040c2aa3ce0e9291d064cce7b099
BLAKE2b-256 01194ed0d7af4bd1f9010288b7b9074ebfe5272b6a254bdab1f16a7163aba64d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyfastcdc-0.2.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 424.7 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.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 657e9cb581807ff2f5e69da5a5c119362188ff04bc1b59045900c90dbd3c7159
MD5 5ae40a648ac3c5d59e5eb69f324599b5
BLAKE2b-256 efc6af2bda45125fa762e60c4f2f1d3d4b3f2962706a1791a61f91998f3775c4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyfastcdc-0.2.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f44e37f9f73221d104ea057749d7e1e9985fbdcbf499326bb35a24344ab6d5cf
MD5 c8f5a06a34f8dfb342d633663a680fbe
BLAKE2b-256 850dd05d7c0cc687e60a19b2dd5795ea179de4f5ee1981531115da09157ee300

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyfastcdc-0.2.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fb74b83fe2a37d3e85c589d6b0240c8577d6ea0bf292ea638b96c2c8046ef728
MD5 28ee422473defbd7265b75bf107002af
BLAKE2b-256 b79aa04764713e7623dffe2e4aff1ce530e0f8a14ee8e9bd054a620d26fed12f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.2.1-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.1-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.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 300a2dd583687d9c42a49f834de4fcfc8012d48c154d69304af58720a137ffa6
MD5 a12a86735a20d33c51af57f3b75271f0
BLAKE2b-256 7292a78d8feb431ae959e409fc37377c98857ee236b48e042edcf8a1c9f3f34f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyfastcdc-0.2.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5f23ed0df5191a1b512bc37aae2fa0959786992a1b1721e4cde75f4865fa4e2f
MD5 e607d3bb861050122e736a1f5568e07a
BLAKE2b-256 74a46b3654c8995180f9d91e0e0395af2d58b70cfc010f3f1839b012f3643b60

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyfastcdc-0.2.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6e5b91b003395ed0e7d51b3effb9b91c361947df9908f61ab4af8328e889173b
MD5 98610dbe67996f9a9719a917c22b03b2
BLAKE2b-256 3553a78050d5f83da283d9de4b98a62db2b37215ec8998661c66767b3c07400d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyfastcdc-0.2.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 25635b6188a7675550dacf81d4b43f7a709cba854736e072f8d6da8ce106d714
MD5 4b2952aafacab7cc92bd6efc8e00620d
BLAKE2b-256 514e385cd4f54186e78d3aa5aace82397b946058d5ec777636b66f9dd3d4d8fa

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyfastcdc-0.2.1-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 419.6 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.1-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 24bf297a068157d69f8d24f01b8ded24b5e0da5a4a23f188848c415cc89f6503
MD5 b138e898cddcd7c0af80ff641459ef74
BLAKE2b-256 3fee5546aa4dcf9d52b06aaad2d7f3c981b1df452502d34959db13be0c96d51d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyfastcdc-0.2.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 437.0 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.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 b406762a1fad209c296f3cae2a75f0a66e265e6266211cccb72c8223866d32c1
MD5 7a6c943a2c71d83e311deaeaa72e508e
BLAKE2b-256 0c9ffb94ce2df3b16de4fd9149484bcb9e429fc9537689880baefb8a831471b4

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyfastcdc-0.2.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 425.3 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.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 6f107d16e2566409208a1fd3b92f67b070dad8a08f1f19bf246df138ffb46c59
MD5 49ca5870698c83eda0659a2b471f61f8
BLAKE2b-256 bef2cd7d67425fef0efbe3d2d92cde241319c45a187cc3e9d1f4846aec8a0d5b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyfastcdc-0.2.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b9ac793e1f852035789821ea273063d4803f5a77912bcebb1a4ccec44b778e23
MD5 cd6ea1f6716e316c80e1098ecd013b13
BLAKE2b-256 83044223649256a22bdff2de4fe4584266be5fea004c18662a4f68e78da6c7aa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyfastcdc-0.2.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 76922bc2900e9be7c21b374caa9067f80172b17966b316905e47cf0fdaa96971
MD5 b05b6fcf4f8e5cd587f1d7a190971104
BLAKE2b-256 02347d95e6f4c49585f69ddae8d3044687abff37c60da4642cd43713edee8179

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.2.1-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.1-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.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 518746d79ff93f514b5d6d38c21eec538cd6f1365f02d1b8b4c5ba7374d62192
MD5 71ca64fa1206a2a3a30ed596992bdd34
BLAKE2b-256 e717fcad91b1afd3cde38e9193c34d05102e9bb3675af773e21bf6aa3debf9bd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyfastcdc-0.2.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1e4a0a8a404c151528dfc7f1a92b1d8fea91b3acde3066f7784a3e92d374f63c
MD5 619e89754af319bf05bf43dc4f4d5153
BLAKE2b-256 274ffde1b67afbe2fba49b22ac1c8c0ed8a0f6c64c03370ff959fc23a7add7f1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyfastcdc-0.2.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1a0ebecbfd10e7eddfc7bee2493b094d1fe11afd9fae617951cdd20c359917fd
MD5 c8a93c52398595fe9822d45b31a249e3
BLAKE2b-256 4ecd300fccf3d44b6cfd627b271fc845207df18a4c81579fc0a1d91e5d09c4e6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyfastcdc-0.2.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4d4e5a9c77c404ea21cd7acbf99779d5e9b3160b43668c54551bed92978ed7f4
MD5 8acd4323b50cff734ec32cbaa4d9463e
BLAKE2b-256 d49649abbe5060b099e359f20354eef03b24ffc58f34a0e2a2e4c20c6bc595f8

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyfastcdc-0.2.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 439.5 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.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 9d1507265088b55a843222c212b4af90fe5c993eb345838bc7df8619b05706d6
MD5 caabeb69d89644f470d449656c865f95
BLAKE2b-256 7f7deea9b1046fa20e37f3c157ba2ba5b3e5711f94801978e65b5c3d21a5309f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: pyfastcdc-0.2.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 427.3 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.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 60dacbd62d56f258af9af92e57740474d76dd3f9d51c1b3b918c2e57f3f2f38f
MD5 420e28efcb61aee18aff43bbfda5b44a
BLAKE2b-256 69cd56f4ff364920d9bc73aaf1c53d3beba534cbc1256114b038081a4d6e2423

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyfastcdc-0.2.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cf7a2bd4ef9f6afad62b07a595588e75359d12eca69d1a17697cbe441736cb75
MD5 a6531cda0f5ffb42a2cbc3e0e13c3650
BLAKE2b-256 7d976426c11397c3f909251d8d582f559e0bce1ad0f35b47fdb74cf7f6bf97cd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyfastcdc-0.2.1-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7eec23700f3dde944c87d7157aa46a9190b066777955cf1b62fda5a12608387a
MD5 c06da04193469eb858ffb3a27e25cbdc
BLAKE2b-256 258c34c57fd199b396c33f1c9a4110cbf06a8f2475b292bce7bae8063235abe6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfastcdc-0.2.1-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.1-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.1-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7305aaba8e29dd341c000cbcca2b5afd6d4f7c7d9b706722e21d2ce8f385fe4b
MD5 673e741a1b006d06a2126d7d91af7303
BLAKE2b-256 36d2b64b06066b815a3856af15325c42f0f92989dbce018d04ce022f3bffee58

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyfastcdc-0.2.1-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1cd8d5f98c16fc88c7239689aa0761f1e55068bfc78ff28d3e4fbc40ca809d2f
MD5 09fa970d5f7f790a815ba8e02bc5dd90
BLAKE2b-256 5325c0d7d786b4e6de8fd8fcfed1c96644596aaef3262605d31c9f9272352bc9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyfastcdc-0.2.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7781240eb46dffa8d9fca1bc2253e059c2eb776de2cbe6487678351f64ad2252
MD5 05a3331647f2e72b5696704eb046d15b
BLAKE2b-256 705088eca7d81b1b3b28e2cd4f252f0ed36637155ab0065aa8b3b0fe548481f2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyfastcdc-0.2.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e7c8ff266f5b0137ab82b1d5456e219d53f8a74fd9ca8eb891e8a554205bd431
MD5 891a66f6ebdd9b443b405abe89187047
BLAKE2b-256 1d8a885e05435b22eab692c5ed7250dd3e1c1bd1a7228db01942066123ad9b77

See more details on using hashes here.

Provenance

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