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.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.0.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.0-cp314-cp314t-win_arm64.whl (432.0 kB view details)

Uploaded CPython 3.14tWindows ARM64

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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tWindows x86

pyfastcdc-0.2.0-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.0-cp314-cp314t-musllinux_1_2_aarch64.whl (833.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

pyfastcdc-0.2.0-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.0-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.0-cp314-cp314t-macosx_11_0_arm64.whl (154.8 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14tmacOS 10.15+ x86-64

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

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

pyfastcdc-0.2.0-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.0-cp314-cp314-musllinux_1_2_aarch64.whl (765.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pyfastcdc-0.2.0-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.0-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.0-cp314-cp314-macosx_11_0_arm64.whl (143.4 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.15+ x86-64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

pyfastcdc-0.2.0-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.0-cp313-cp313-musllinux_1_2_aarch64.whl (767.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pyfastcdc-0.2.0-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.0-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.0-cp313-cp313-macosx_11_0_arm64.whl (142.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

pyfastcdc-0.2.0-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.0-cp312-cp312-musllinux_1_2_aarch64.whl (784.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pyfastcdc-0.2.0-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.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (802.7 kB view details)

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

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

pyfastcdc-0.2.0-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.0-cp311-cp311-musllinux_1_2_aarch64.whl (779.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pyfastcdc-0.2.0-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.0-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.0-cp311-cp311-macosx_11_0_arm64.whl (143.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

pyfastcdc-0.2.0-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.0-cp310-cp310-musllinux_1_2_aarch64.whl (736.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pyfastcdc-0.2.0-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.0-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.0-cp310-cp310-macosx_11_0_arm64.whl (144.5 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

pyfastcdc-0.2.0-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.0-cp39-cp39-musllinux_1_2_aarch64.whl (735.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

pyfastcdc-0.2.0-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.0-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.0-cp39-cp39-macosx_11_0_arm64.whl (145.2 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

pyfastcdc-0.2.0-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.0-cp38-cp38-musllinux_1_2_aarch64.whl (767.5 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

pyfastcdc-0.2.0-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.0-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.0-cp38-cp38-macosx_11_0_arm64.whl (148.9 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

pyfastcdc-0.2.0-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.0.tar.gz.

File metadata

  • Download URL: pyfastcdc-0.2.0.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.0.tar.gz
Algorithm Hash digest
SHA256 9cf52dcc42f0c363fdaee9009f8e26b191eebc4620854b05e8c1a0bf55b7a77e
MD5 fde8ea4dc36219ad50785b605e015009
BLAKE2b-256 93303724393fd166f6af7a9de63039fd3128ed63805c5c43d2854c23ccab1e3b

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

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

File metadata

  • Download URL: pyfastcdc-0.2.0-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 432.0 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.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 3adb6199d3d37271818ae83f1e51d751a8c5de5756d4ece069478880f0f0e291
MD5 ace7ec6b99c33463f14ea93ea23b5142
BLAKE2b-256 f698e531cda1520d67c66cde0e072d3f1183f499634b25e8434bde295409015b

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

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

File metadata

  • Download URL: pyfastcdc-0.2.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 462.7 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.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 bfd5ed85c8ca04d23a4439c3b2fc54eb3954d55eaa65d9a87207d510ce67be7d
MD5 939f35d8c98e83457b2ca5b81c89fd8d
BLAKE2b-256 e044543685c58c32e282727806469e536b3bbef758abb952b41bd74a57bf48fc

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

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

File metadata

  • Download URL: pyfastcdc-0.2.0-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.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 955b76d01868151d15fdae7810cc429461f7478c5d6d5e03a8e38a4e4fdd8a90
MD5 51afbe110bd5d93c1b9ffc00d989862e
BLAKE2b-256 108014c4e4b3350e121f11a804945c1cae0fda64731a11079fe1f688c1016074

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

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

File metadata

File hashes

Hashes for pyfastcdc-0.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6d34efd65a2c2d984f07cbd3caf036f9c8bb7258e4296ebe9f473ef0bdab18d2
MD5 c8273d4961e6dea5ca3a630052fd3bce
BLAKE2b-256 aecb3d4f59f0f3db52612b71cdf9e005c1c6d1abc39b254ec94b2a6bec0ac3bb

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

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

File metadata

File hashes

Hashes for pyfastcdc-0.2.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 988c2b7fdb42fb92e4d279e9eea912270ec8f2609799effdbdc72bd9d6351688
MD5 03f04ae75830fce8cb5ed430f253129c
BLAKE2b-256 40a51f37d0ee8f1b51efab413f3e40d576e2a4b943e3845e02fe1c6ed5fdb008

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

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

File metadata

File hashes

Hashes for pyfastcdc-0.2.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3385fd890b177449f1147f61691100b829687a486204de6e34a11b8f0f7e4ddc
MD5 825fe725db95adf80b65d4b5c263d053
BLAKE2b-256 d748b4910063db5744c12bdbf2b804c90f01752b10e89c1335b65dcc22682229

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

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

File metadata

File hashes

Hashes for pyfastcdc-0.2.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0f327c4c96b49386bcefd5f2e1fc086cd297e3ccdfed29ef7a1295f5e21c5f25
MD5 fb15f7c67606ffd3f5ea1045c9620c06
BLAKE2b-256 7578995fdd6a6dc2cee772633bff634ac5820be4e1889c2f52bafeb7da4da423

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

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

File metadata

File hashes

Hashes for pyfastcdc-0.2.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0267222a6571c13cbf3aee834bd789702eb19900330deb12308f9ff83b1ccf30
MD5 0120beead20e5f31cf69610fd2fe8e12
BLAKE2b-256 c09163e5cb73ecfad10c33f9f4e16b85abcd2cb25380561c5d4783d116d3ec5d

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

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

File metadata

File hashes

Hashes for pyfastcdc-0.2.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 33817847bbb23e58db2c16a3d432d94be39c4fadf7ee0ec56d743b25a88212ec
MD5 bcb388a8a22ef81017bc8a1098da0511
BLAKE2b-256 56c66efa9a8968630b96800ed9b34abfaa922309d5bfdfaecb2a6cd32c3f045d

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

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

File metadata

  • Download URL: pyfastcdc-0.2.0-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 423.9 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.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 c25ec670f1a0f2898a9fbc0b1aba44d03a69f657621cc116f06541b60761acd2
MD5 a2bcc4fec889b32eff8bcf9e4bba363f
BLAKE2b-256 46646717e45131af4352486a8bc692fdcc2c00698feec3fe42a892c6a23ba32b

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

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

File metadata

  • Download URL: pyfastcdc-0.2.0-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.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 95dcdeba74c053a56f20b74699ab083f0a3f2dfe677cd39fad673b2419bec162
MD5 bd49827848542dd4cb77c35aae8445a3
BLAKE2b-256 3a4258ff1f4c43e9c7c543d646354fa5aeccf7d8076dec556473091f4f234eb8

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

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

File metadata

  • Download URL: pyfastcdc-0.2.0-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.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 1be2fbd5db8488a8429392eeca134552fac8db0ee4db8fc78992aa718f748461
MD5 65b71dbcb622cae114066f3c9bcbbb26
BLAKE2b-256 458ed5c0310941ee14f84c9aab48be4a7652c1e3298742508f89c77cdf101e6b

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

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

File metadata

File hashes

Hashes for pyfastcdc-0.2.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 029c6d903fa56b5008267ad5b59eea182394436f61620cc1d4c455d2d00d69ae
MD5 f199ac0a8b7ad7b2bc2cf3203e314bcf
BLAKE2b-256 02f0ca7d11f0beb3814e82f38ee25e20ee16541fe17a119db903c7fd3270b628

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

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

File metadata

File hashes

Hashes for pyfastcdc-0.2.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 aecee8b18e3896622b09c12187e1b109a6299b433d98de9e8d8bbfd56ec7044d
MD5 916518968160e22db1ecbf57ec82660a
BLAKE2b-256 1ccf96e160cfeff49c8a31c90dbd848f10d199fffa1578ca8507f3510eb4994a

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

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

File metadata

File hashes

Hashes for pyfastcdc-0.2.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d43dcfc7e323ebcce40eec4038c46dd6a092d5358bb70235934c1370733a1c3a
MD5 9c219e17f8094c25c513cedb5a259e4f
BLAKE2b-256 bee51ee1840c85881bb3afa9be140875dddcd00e7dc4642f8b2e403dc07e9273

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

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

File metadata

File hashes

Hashes for pyfastcdc-0.2.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 aebf1995e801e359027c1e07ca421db88afb936e02be00627521ceccde4c6f4d
MD5 497dd53ee42b84d51a3374f913012dad
BLAKE2b-256 581f7a877eccc5dfa14aa76f87bd2032577ca015fc999e9de7e15a29620ea10b

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

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

File metadata

File hashes

Hashes for pyfastcdc-0.2.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4759effe1ada34cc67b88c0a58d611fb4e6342b67bd11979b5de4db851d9aa40
MD5 9b921f7d3011c35c00b4ef0892004fe4
BLAKE2b-256 67da1da66b22449b5a24dec73c26f0f7137d86177ee56cf6ea313de98a700cf9

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

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

File metadata

File hashes

Hashes for pyfastcdc-0.2.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 4f78e31da5547e96cfeb439dc4ef57ac96ca3c3bbdbb42dfa52bf01e01e60a71
MD5 7ee1cfd057c339e60c187caccea6a623
BLAKE2b-256 c76423470db4239370fc639452e64560be769039a7ad986996651291d7a9d079

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

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

File metadata

  • Download URL: pyfastcdc-0.2.0-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 418.0 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.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 4eded79a38def8a61287d39867ad939b33c54cbed80d754b89b8962ac8dd1f5e
MD5 7a03bec107d99d8a47138b12694defb7
BLAKE2b-256 a92c979ca9b205e9edf3c7f74c154c769a79b7bdc2b8bd8d065c5f9a0570df44

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

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

File metadata

  • Download URL: pyfastcdc-0.2.0-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.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 0a846f4d9dee73932f16a4a9eabae1920942c1f7030056243552fde059f4376e
MD5 6196b40f36dc8906a505eabb66113423
BLAKE2b-256 d5d1765d1a5aafd13d38af0cd3a6499886b3cd2306ddc5ac9b8b4d439f2ce658

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

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

File metadata

  • Download URL: pyfastcdc-0.2.0-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.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 883c7faaa2dec905c75b213b885016d52dfa07a598b118077864dd0cb81556a3
MD5 9118646bf8032816c6e7c61eeef59262
BLAKE2b-256 d26f7a5999561a6bcc3a757b23a7d420ed6b785bebe7e506731e7378f380b391

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

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

File metadata

File hashes

Hashes for pyfastcdc-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e416d2781548ec0433fa7a0ba6896dd1ed5bb7470be7b1f7a2a856cd98bb3c3c
MD5 73275929ca927403e7de4fb764199b5c
BLAKE2b-256 c8e53bafa7cd7a9c5d9947365ec54e6a174966b2f3037362e892feba2195dd5a

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

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

File metadata

File hashes

Hashes for pyfastcdc-0.2.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 54afaab2842a484aa9ee79d02dc40f5589d4de600c082da685597d8059e8f7d6
MD5 3bd5e13760d8e474e82ad68bf215ac36
BLAKE2b-256 7aee4b41653224d2aa2b1a68555ec0ba85b25ec4d05f54e5de5dc9ca51db239d

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

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

File metadata

File hashes

Hashes for pyfastcdc-0.2.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 78c4863bb1b956cb9d8c1c9f1b8164fda5322777dd7dd89fd5e11b880f19ee39
MD5 930ff2d27dfe1c5e73d9c939b56906fb
BLAKE2b-256 5873d8fecf647f6c00d69b7b7bf5eb0146db2cac923acbb9e4142a47e5c7eff0

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

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

File metadata

File hashes

Hashes for pyfastcdc-0.2.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 21f48327c2259d97b08f08011f6f13d9ccd43ff991f4e48b8c05e36e864443c2
MD5 627876815725476d590970d4054136ab
BLAKE2b-256 9a2ce69c08bc6d4b29e72c83209d53fcbe773507a91443a10dcbf76f09753977

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

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

File metadata

File hashes

Hashes for pyfastcdc-0.2.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1dcda1929fae8227b46243b01a2d242d2bbed5e934e11ffc3ba7ca58d73faf7e
MD5 70855c3d5e3a572ae59a08ec6ce41aac
BLAKE2b-256 16dd2ed53c404507062b774ffcb4d05831501d9c6559d11afa3fc9143e2987a3

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

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

File metadata

File hashes

Hashes for pyfastcdc-0.2.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 a5df614517a91c5f0f16340e75a7850f3e3f3ee789397f4571b8eb1db83f86e6
MD5 575a68867e4e7b28b640377a0777623a
BLAKE2b-256 6cc19c28b88ea5347db109db6835822c828a5c5d3940e09a0dd676afc9d4b549

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

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

File metadata

  • Download URL: pyfastcdc-0.2.0-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 418.7 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.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 032a513828cf02e2709bf409798f18ae9213196251d326910822dbd3b2aba161
MD5 b6b7d83f17a7b293af88fb56a10bff23
BLAKE2b-256 5f1d0cefe41a685ced1e2bfd314655ab2e26cbce194a16dd34d732a04b565851

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

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

File metadata

  • Download URL: pyfastcdc-0.2.0-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.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a0f3331a1cb93312ece8b73c0583ade98bb7911a3ae49e239f39f84a5eea85f6
MD5 852dd6e5d98453a1877800e30180af00
BLAKE2b-256 71d5da643d923d10022cb19cb09e96c28a1ef77b4fb253aa36a84f8e8b25a463

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

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

File metadata

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

File hashes

Hashes for pyfastcdc-0.2.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 758d115649bf4fefa96240deba13436d366cc43c3fcb5dc58f59a4d06f2abe33
MD5 f63ba7f0aa26ef6702333facb351b75b
BLAKE2b-256 90117afbd5828fbfa7cc621fd8fc0e67d03cee53a901209d114859cbfb1dc9f2

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

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

File metadata

File hashes

Hashes for pyfastcdc-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c8c07f9dfe36cc0633cb40107197fdc65b4ad6c0c7a86508f5c4cbbe06937a0d
MD5 811a6c13b67a0ba5496c647ec540e949
BLAKE2b-256 698e2b91924f0073c11b518df5ba328ea8f756f358a65eb8936d2bd60835c669

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

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

File metadata

File hashes

Hashes for pyfastcdc-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 35afdd21d9f0b18de62d455c17e3664d4d73cf64995a67211e8b72e3091a6272
MD5 b2e86d08e9c0c49102608c4b49313d79
BLAKE2b-256 6f732e565120062d17c0549d683db40664663a69cddad03b1b5ed70aa69ddf8e

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

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

File metadata

File hashes

Hashes for pyfastcdc-0.2.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0d572048433bc2e219cb345b4ab89117f09e3e404835ab08952a75456d4a0244
MD5 bceb6331117ad6eee7d3d12ccc677f27
BLAKE2b-256 be85f6c072c9806c38dbb910ac7b8d3a9c4a74fc237584c5c5a0739b0404dd27

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

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

File metadata

File hashes

Hashes for pyfastcdc-0.2.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 23ea7788896311d477658a55687cecc18f9d697fcc568f1905831126c0d1738b
MD5 771a4991b756b80dce4f656b8d7bd9ab
BLAKE2b-256 a9445ecd48877b48f23818fc36abc6011007edb2a45738f300463206feeb024e

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

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

File metadata

File hashes

Hashes for pyfastcdc-0.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 56ff25081af53b2de4858e380f036939ee22d4156f703b38582c158d1e6ff0ac
MD5 8ad82f8188bb98ef492d457dea160661
BLAKE2b-256 b0031b2730b9eb001b163b5eaa0139496879bc6c9705a0e13d1d20401612d626

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

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

File metadata

File hashes

Hashes for pyfastcdc-0.2.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 dcdb1786df8e3e808fa041699b59da4a3b4e1644fcee234d2a6c57c577fed60e
MD5 61f30617b1e3f78ab601615a3ba9c6f6
BLAKE2b-256 74004344c477a2513de397c0119b98f9cc9869a66b26538debd55826a82bbafb

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

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

File metadata

  • Download URL: pyfastcdc-0.2.0-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 418.2 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.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 705112a28f8bb06369ac7fb4f51f80b97a561376f21377eb8b296c1ddc440c2e
MD5 cdff2e5835b2f496a3ad5eed94164f8c
BLAKE2b-256 939eac184cb2fa7152da69c77d25636801e0aa1a02f19db5dcd01fb30ac83a49

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

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

File metadata

  • Download URL: pyfastcdc-0.2.0-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.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9fee5f590454cf8239f7f8ae3f9bc8331d9ecf7e79fe196b72358546cf9e539c
MD5 5d7a8b31ea2147d4107ec5594f72b062
BLAKE2b-256 1b268b242205f0bac3643d8d794d2bf6f65f437da55833e23dea002372df6a48

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

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

File metadata

  • Download URL: pyfastcdc-0.2.0-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.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 319ee992b73ad9bd5dc0c59de5797aa8115eb56e1c19ee02994658b84e6e0f71
MD5 37cf4ea04600dd929818223186aea8ec
BLAKE2b-256 a29b0919cfe21b5c904d31a84873f551d0eb71e1d991774d5a96e39b96e42899

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

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

File metadata

File hashes

Hashes for pyfastcdc-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ddc23f8008640e20cd562ca6b155541eb7b7adcab07208ddcac4d6398dcb53ec
MD5 acd64cdc109adef0a83824757163bad1
BLAKE2b-256 be1556c8562d0f2bee72f9d3c4735209db6fb7a026efc858cef67fc27ef9edd0

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

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

File metadata

File hashes

Hashes for pyfastcdc-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2181b4d461cf799f41bfd9d47925dbe718a75e7d637f5e836bcbf1b4bf34edf2
MD5 5f0353c0d38ebaaa7fcb01cdd84b905a
BLAKE2b-256 f03751fd9fe4b55f25c8c6852a278f8f5a731f6cfa1b30ba36a48116e5e2eb93

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

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

File metadata

File hashes

Hashes for pyfastcdc-0.2.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 64f533778f9da6aae8a81b1beaada2331220c700ca70ab394ad9e836435afbdb
MD5 2e89d7738c36b68a036aacb4bfdee565
BLAKE2b-256 cef93fcdbc67f7903aaadacb56a4fc2b4c0e81e177885c1526bef1dd66b941a5

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

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

File metadata

File hashes

Hashes for pyfastcdc-0.2.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 361384c17d9cc3540d9306d0d9d4fdd78588e9d7702c6b8df38c53d896814215
MD5 bce50ef3d4f1b12857fb0808922a92e4
BLAKE2b-256 64a657fc4e9df5b0d8c3e4da9ea8b6b2d5d6c459da45a89a40b9a4e8be30f5b6

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

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

File metadata

File hashes

Hashes for pyfastcdc-0.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 954bb7d9cdbd0fb6c6efbda56058c30778e574086c58e5e2814ee4fad65834e3
MD5 1e854834043fcab3316da0ed3630eccd
BLAKE2b-256 85224137edc328c77a94d0c4b1e66086cb44a160de04c899e0ed5969a085b1dd

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

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

File metadata

File hashes

Hashes for pyfastcdc-0.2.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 eda392addab301833c20397bde666db8482321c41c59a4ba59479a74b0d0dd7f
MD5 3946b9c18ba59ff7476b7ea8b28b687c
BLAKE2b-256 3da7d0c8937ff8fa457cbc5b1f674439fb27e666cc2173485d086a315e94758e

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

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

File metadata

  • Download URL: pyfastcdc-0.2.0-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 418.6 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.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 ac718b6d7ee8945f3d5c5122281f4c0f0ba47f62ea1e7599cccc32be217a0bbc
MD5 b53cecef4414c7a876f12b8850d0f504
BLAKE2b-256 bf6fad9b2e728dbd43b1c2c1a0eb0550e2a2cbde031183a8ea9636f5aca5b7ef

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

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

File metadata

  • Download URL: pyfastcdc-0.2.0-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.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0b27d15843b4d80a229fc6d4f3f6839b7fed64ca0f53b07ba3b64cf86b3257f1
MD5 6e2788b00083c7e966ad612f09d845fb
BLAKE2b-256 67b56a5dc533c84db80a42b155c8936d1abc798fb761c2a2f9eb55f60d627283

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

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

File metadata

  • Download URL: pyfastcdc-0.2.0-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.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 914b822bb86d939c6baf356d15205db4f3d0dca857c08a213800646ee69b6bd1
MD5 206a11e43cba71e5eda1d48931c3aec3
BLAKE2b-256 a09568e62b74206dc4138305520cedd2f02c062daf87f5ebeb7b92dffc1155ae

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

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

File metadata

File hashes

Hashes for pyfastcdc-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b51989df7478c40b9f5d1798c378fe345bc114ce5a9e6c8898d20df6650378c9
MD5 c18888b58d446e47b462692bc1fe54c5
BLAKE2b-256 fa922f7078a7564645511731030b8994ad0b63ac508bc3725576105baf859898

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

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

File metadata

File hashes

Hashes for pyfastcdc-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 984e2e444906a65eb6fa5596b36a4b96ad30311782f1303f733a8dcf17f0e486
MD5 034eb4906e339cc3b759167925e96c01
BLAKE2b-256 5f24c7fe8cbf874bdf86d9b71662bec668654050a85eb944a920dc3e6bcf16dd

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

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

File metadata

File hashes

Hashes for pyfastcdc-0.2.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f1826caea686a3d0d23fe0e0ed20155c92f6c32d0975e68b9bc6735cd72abc1f
MD5 2e81d19115636f6237815de9e943d6ca
BLAKE2b-256 236878f160be44d1ed5ba7930a180dfba04607fb260906a2b57fdbcf23f83d2d

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

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

File metadata

File hashes

Hashes for pyfastcdc-0.2.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 90f35c882fc55e0cda51ec187975eab9e21f2a076921b6fa4730ceb45e03daa6
MD5 3c77367021c77c1566acaea74436dcad
BLAKE2b-256 0a254476761385922b3796816acfb3f432e3c2ca66a787abb8f3c42bea54ccab

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

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

File metadata

File hashes

Hashes for pyfastcdc-0.2.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8a321052247695487acd0dfd3c7655a10a93ef1b3c52e9840f460964b3cd5dbc
MD5 2a0e36bbfbffef4ddbf21918559dde77
BLAKE2b-256 b6e54ce0a3300691746cc1aac9f0a87efd7f4db15c436af43d2c5e0822904f46

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

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

File metadata

File hashes

Hashes for pyfastcdc-0.2.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 534584995d6023d1ea71a3a9568671a7c09185831fb37ea12e027706359cca27
MD5 5fe382d0bbb0321bfb8da7015ad1adec
BLAKE2b-256 b5201e45ab6b4cc2d07c99df274fcfd01f4539701796d6732fcfe05a24f12063

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

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

File metadata

  • Download URL: pyfastcdc-0.2.0-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.0-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 233d28098684e949dbd85906540aae3a52604fb302f10e5b17e98826815d4625
MD5 f05a1c03e8317bc345b094b6a93bfcd1
BLAKE2b-256 687d590a4cbcaaad69c6c7acbd6464a9c8682447b9135ce94a2afb16b94007bf

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

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

File metadata

  • Download URL: pyfastcdc-0.2.0-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.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 a4d1893182e2d10afb7ed8f80be6bff4ca235c13f31385143d4afc2e77946d72
MD5 ee0d52f01026b1903b384e7b0ffbe344
BLAKE2b-256 1bc672883d35b39f997a44fb35017b26893a723e8cd56f6f8b630c8d4d5517c1

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

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

File metadata

  • Download URL: pyfastcdc-0.2.0-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.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 052b94c03f06cff0dd6dce627e75e6659133d6c7163960b655608ea5153f1564
MD5 829fdaf3c9f41c8cae399c8867679b65
BLAKE2b-256 c5e780c5f534884705d3a9ecfb9be6973a3b34c2810d25099a1ed287a84777b5

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

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

File metadata

File hashes

Hashes for pyfastcdc-0.2.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7708fa5443afa9cd53c25e166a6a69b871384e973f1424d13dafd18d353e1b64
MD5 65fad8663f8e7adf5a67c5a9828a145f
BLAKE2b-256 308334193e923f8b253aac041f55a9e6b8edf048e3aa94bb0284059678d4c158

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

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

File metadata

File hashes

Hashes for pyfastcdc-0.2.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 12ecfbfe374efe82f74294a91ba814ff5ea18b7729b94f39ec8df76deede7c2d
MD5 e4103d74777f7ae3c0f878c009f333b6
BLAKE2b-256 184b6c63dfca3eeb995af7940c705489938250a4655ebcd83632f65d304f15e7

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

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

File metadata

File hashes

Hashes for pyfastcdc-0.2.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6f1294dcf36a73a638efd35f599925405080c70f84aece005f11bdc8b7f19f06
MD5 ef43d38fabe232263e32236ce7dc81c2
BLAKE2b-256 e86097a0903402c7d856d0ee5e9cdcdee1cc7530e5d08d1f67b93d30439ff553

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

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

File metadata

File hashes

Hashes for pyfastcdc-0.2.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 eee687a13a98909accb17019d0093f942aa30b55c908a00d16be097969e27f05
MD5 e5ad09c9b16f4d8774348d5cbbce218e
BLAKE2b-256 e6e3bf1d9568f6bd08c5331038be79fa061d9a9db2e3770aa373a480f67c0822

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

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

File metadata

File hashes

Hashes for pyfastcdc-0.2.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c2f7ad47f0d45a1bdddbafb71636488face51f39f789d9a9fd7b6d5fcfd06605
MD5 d2dd091173f0a3f72ffba56e959e6457
BLAKE2b-256 2eb3854b81a949162d318498d182acf3e7e952e1712c84659ad94d52e95d2e93

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

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

File metadata

File hashes

Hashes for pyfastcdc-0.2.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b429272678f4e872b6537868f0f74ccbfdc1f8d46d0560d8a79d08de28717040
MD5 cee04d002e6e110153ddd4abbcdddd05
BLAKE2b-256 dbc590458747157bacb39e62d68ef3b2a4470ce60e5dcf9b2f1b0a1ab158c351

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

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

File metadata

  • Download URL: pyfastcdc-0.2.0-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.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 3a40f7874db9b83d1303016a7a7d99ec90454226823c6dab1bb8cf6934cb3da5
MD5 fd8f29b746762b64237eb15950c9e755
BLAKE2b-256 a9f532883b6b4bc331c34f2d0076cf70dde724ce76902c5ef3f93b38ad662c20

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

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

File metadata

  • Download URL: pyfastcdc-0.2.0-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.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 5cf59a543e7790517b0aa1953fae9fd319e5067de803aca65af812eb412983d1
MD5 af9314419fb243c46e941ec6c3914a57
BLAKE2b-256 c0d0471281fe78dc26d53f2e8c7eb9464097e1eaa5d1721f431ddd7e679025e2

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

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

File metadata

File hashes

Hashes for pyfastcdc-0.2.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c4a40001c2446d6dde529a0d059409d0e15275c8b5af6cd2fea69f3ade5e2557
MD5 5f140d86ef564769f9e63a8bbfc2e5bc
BLAKE2b-256 f12b75fa9372dbc0fee9a1caf8d118e78e7c307da0c88c784bc49e580106f473

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

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

File metadata

File hashes

Hashes for pyfastcdc-0.2.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 04035dc9f45b89c4f74f9507235942b459962c6a133d7586128f655c5e8e4584
MD5 28b7910da53a2202ea798894294736c6
BLAKE2b-256 365db53091987a638ea067ad4a01c505dccb9b7d486b4cb69ae68228411ac576

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

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

File metadata

File hashes

Hashes for pyfastcdc-0.2.0-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 125d6a1093686c0d7ae79be9a7c381fbe614f07c28005bbbdaf282f03c1c38b9
MD5 6d6cb43ab8f653bfd0774aacb3597631
BLAKE2b-256 6907e287ccec1847f9b62c3371a6a771ab6812d7963343b424f72849efc9b8de

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

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

File metadata

File hashes

Hashes for pyfastcdc-0.2.0-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c8b07412e3a574e9bfc8c4b233b7383b68b766502073756130f642953cca9b89
MD5 15ef085c829c13add90536934d017a8d
BLAKE2b-256 37356bc2aa5a3fe804073874ff0a04fb9234d5bb0cfe4fc91825897d14bd2de8

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

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

File metadata

File hashes

Hashes for pyfastcdc-0.2.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6eb30b2139a59cb261935a88e91d25c30f4bb4cfa14719746afeaf2733cba7f0
MD5 08923d1101d15f9b3393dc548cd2e051
BLAKE2b-256 bb29c92345261d71b2c1a69a38d784f5bb331316e4d438e7fff0c5084f980923

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

File details

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

File metadata

File hashes

Hashes for pyfastcdc-0.2.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 799c448f54560b87dc818c81b0572dd7617e8f1137be3829d29947a28dae8089
MD5 1ec156b8b32604fba4a5ae5cbbad9ab8
BLAKE2b-256 646017c832788f009b751ac2dff0a85b6b87a8e58ab6a49a5b6a517eee338d4d

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on Fallen-Breath/pyfastcdc

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

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