Skip to main content

Celeres Data Loader — A Parallel Data Loading System with Constant-Memory Shuffling for Scalable Deep Learning Training.

Project description

CDL - Celeres Data Loader

A Parallel Data Loading System with Constant-Memory Shuffling for Scalable Deep Learning Training

Python 3.8+ License: MIT PyPI


The Problem

Training large models requires shuffling billions of samples every epoch. Traditional shuffling creates two scaling bottlenecks:

Fisher-Yates Shuffle CDL
Shuffle memory O(N) — 8 GB for 1B samples O(1) — 24 bytes
Disk seeks per epoch N random seeks N / block_size sequential reads
Epoch initialisation O(N) permutation O(1) key derivation
Checkpoint size ~8 GB shuffle state 24 bytes
Distributed sync Broadcast O(N) array Zero sync (same seed)

How It Works

CDL replaces the O(N) permutation array with a two-level Feistel network that computes shuffled indices on the fly:

Level 1 — Block Order               Level 2 — Intra-Block
┌──────────────────────┐            ┌──────────────────────┐
│ Block 0 ──────►  B3  │            │ Offset 0 ──────► O4  │
│ Block 1 ──────►  B0  │            │ Offset 1 ──────► O2  │
│ Block 2 ──────►  B4  │            │ Offset 2 ──────► O0  │
│  ...                 │            │   ...                │
│ Block N ──────►  B1  │            │ Offset B ──────► O3  │
└──────────────────────┘            └──────────────────────┘
  Shuffles WHICH blocks               Shuffles items WITHIN
  to read from disk                    each block (in RAM)

The disk reads stay sequential within each block (minimising seeks), while items are still fully shuffled across the epoch.


Quick Start

Install

pip install celeres-dl

As a PyTorch Sampler (drop-in replacement)

from torch.utils.data import DataLoader
from cdl import CDLSampler

dataset = torchvision.datasets.ImageNet(root="./data", split="train")

sampler = CDLSampler(dataset, block_size=1024, seed=42)
loader = DataLoader(dataset, sampler=sampler, batch_size=128)

for epoch in range(100):
    sampler.set_epoch(epoch)   # O(1) — instant!
    for batch in loader:
        train(batch)

Full I/O-Optimised Loader

from cdl import CDLLoader, HDF5BlockDataset

dataset = HDF5BlockDataset("train.h5")          # block size auto-inferred
loader = CDLLoader(dataset, batch_size=64, seed=42)

for epoch in range(100):
    loader.set_epoch(epoch)                      # 24-byte state change
    for images, labels in loader:
        train(images, labels)

    state = loader.get_state()                   # checkpoint: 24 bytes!
    save_checkpoint(model, state)

Benchmarks

Memory Usage

Dataset Size Fisher-Yates CDL Savings
1 Million 8 MB 24 B 99.9997%
100 Million 800 MB 24 B 99.9999%
1 Billion 8 GB 24 B 99.9999%

I/O Efficiency

Metric Random Shuffle CDL (block=1024)
I/O Locality 0.03–0.43% 98–99%
Disk Seeks / Epoch N N / 1024
HDD Speedup 25–30×

Shuffle Quality

Metric CDL vs Random
Batch Entropy 96.85% 0.03% gap
Training Accuracy (CIFAR-10) 69.79% +0.50% vs 69.29%

API Reference

CDLSampler

from cdl import CDLSampler

sampler = CDLSampler(
    data_source=dataset,     # or dataset_size=N
    block_size=1024,
    seed=42,
    rounds=6,
)

sampler.set_epoch(epoch)     # O(1)
state = sampler.get_state()  # 24-byte checkpoint

CDLLoader

from cdl import CDLLoader, HDF5BlockDataset

loader = CDLLoader(
    dataset=HDF5BlockDataset("data.h5"),
    batch_size=64,
    seed=42,
    prefetch=True,           # async block prefetching
    prefetch_depth=2,
)

Block Datasets

Adapter Auto-infers block size from
HDF5BlockDataset HDF5 chunk metadata
DirectoryBlockDataset Subdirectory (shard) file counts
NumpyBlockDataset User-specified (in-memory)

Architecture

src/cdl/
├── __init__.py       # Public API surface
├── shuffle.py        # Core: SplitMix64, FeistelPermutation, CDLShuffle
├── sampler.py        # PyTorch Sampler integration
├── loader.py         # Full I/O-optimised loader
├── datasets.py       # Block-aware dataset adapters
├── prefetch.py       # Async block prefetcher + LRU cache
└── ext/              # Optional C++ native extension
    └── __init__.py

Algorithm

Input index X
├── Split into (Left, Right) halves
├── For r = 0 to 5:
│   ├── F = SplitMix64.hash(RoundKey[r], Right) & half_mask
│   ├── new_LEFT  = Right
│   └── new_RIGHT = (Left ⊕ F) & half_mask
├── Combine: result = (Left << half_bits) | Right
└── Cycle walk: if result >= N, re-apply

When CDL Helps Most

Scenario Impact
GPU + HDD storage ⭐⭐⭐⭐⭐ Massive speedup
GPU + Network (S3, NFS) ⭐⭐⭐⭐⭐ Massive speedup
Memory-constrained (>100M samples) ⭐⭐⭐⭐⭐ Essential
Distributed training ⭐⭐⭐⭐ Stateless checkpointing
GPU + NVMe SSD ⭐⭐ Moderate benefit

Citation

@thesis{cdl2026,
  title   = {CDL: A Block-Based Constant-Memory Shuffling System
             for I/O-Efficient Deep Learning Data Pipelines},
  author  = {Your Name},
  year    = {2026},
  school  = {Your University},
}

License

MIT — see LICENSE.

References

  1. Steele, G. L., Lea, D., & Flood, C. H. (2014). Fast splittable pseudorandom number generators. OOPSLA 2014.
  2. Black, J., & Rogaway, P. (2002). Ciphers with arbitrary finite domains. CT-RSA 2002.
  3. Morris, B., Rogaway, P., & Stegers, T. (2009). How to encipher messages on a small domain. CRYPTO 2009.

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

celeres_dl-0.1.0.tar.gz (469.4 kB view details)

Uploaded Source

Built Distributions

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

celeres_dl-0.1.0-cp313-cp313-win_amd64.whl (126.8 kB view details)

Uploaded CPython 3.13Windows x86-64

celeres_dl-0.1.0-cp313-cp313-win32.whl (117.1 kB view details)

Uploaded CPython 3.13Windows x86

celeres_dl-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

celeres_dl-0.1.0-cp313-cp313-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

celeres_dl-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

celeres_dl-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (164.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

celeres_dl-0.1.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (179.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

celeres_dl-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (154.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

celeres_dl-0.1.0-cp313-cp313-macosx_11_0_arm64.whl (124.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

celeres_dl-0.1.0-cp313-cp313-macosx_10_13_x86_64.whl (133.8 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

celeres_dl-0.1.0-cp312-cp312-win_amd64.whl (126.8 kB view details)

Uploaded CPython 3.12Windows x86-64

celeres_dl-0.1.0-cp312-cp312-win32.whl (117.0 kB view details)

Uploaded CPython 3.12Windows x86

celeres_dl-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

celeres_dl-0.1.0-cp312-cp312-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

celeres_dl-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

celeres_dl-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (164.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

celeres_dl-0.1.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (179.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

celeres_dl-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (154.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

celeres_dl-0.1.0-cp312-cp312-macosx_11_0_arm64.whl (124.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

celeres_dl-0.1.0-cp312-cp312-macosx_10_13_x86_64.whl (133.7 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

celeres_dl-0.1.0-cp311-cp311-win_amd64.whl (125.1 kB view details)

Uploaded CPython 3.11Windows x86-64

celeres_dl-0.1.0-cp311-cp311-win32.whl (116.0 kB view details)

Uploaded CPython 3.11Windows x86

celeres_dl-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

celeres_dl-0.1.0-cp311-cp311-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

celeres_dl-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

celeres_dl-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (163.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

celeres_dl-0.1.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (177.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

celeres_dl-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (153.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

celeres_dl-0.1.0-cp311-cp311-macosx_11_0_arm64.whl (122.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

celeres_dl-0.1.0-cp311-cp311-macosx_10_9_x86_64.whl (132.1 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

celeres_dl-0.1.0-cp310-cp310-win_amd64.whl (124.6 kB view details)

Uploaded CPython 3.10Windows x86-64

celeres_dl-0.1.0-cp310-cp310-win32.whl (115.1 kB view details)

Uploaded CPython 3.10Windows x86

celeres_dl-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

celeres_dl-0.1.0-cp310-cp310-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

celeres_dl-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

celeres_dl-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (162.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

celeres_dl-0.1.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (177.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

celeres_dl-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (152.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

celeres_dl-0.1.0-cp310-cp310-macosx_11_0_arm64.whl (121.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

celeres_dl-0.1.0-cp310-cp310-macosx_10_9_x86_64.whl (130.7 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

celeres_dl-0.1.0-cp39-cp39-win_amd64.whl (127.1 kB view details)

Uploaded CPython 3.9Windows x86-64

celeres_dl-0.1.0-cp39-cp39-win32.whl (115.2 kB view details)

Uploaded CPython 3.9Windows x86

celeres_dl-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

celeres_dl-0.1.0-cp39-cp39-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

celeres_dl-0.1.0-cp39-cp39-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

celeres_dl-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (162.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

celeres_dl-0.1.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (177.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

celeres_dl-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (153.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

celeres_dl-0.1.0-cp39-cp39-macosx_11_0_arm64.whl (121.7 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

celeres_dl-0.1.0-cp39-cp39-macosx_10_9_x86_64.whl (130.8 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

celeres_dl-0.1.0-cp38-cp38-win_amd64.whl (124.4 kB view details)

Uploaded CPython 3.8Windows x86-64

celeres_dl-0.1.0-cp38-cp38-win32.whl (115.0 kB view details)

Uploaded CPython 3.8Windows x86

celeres_dl-0.1.0-cp38-cp38-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

celeres_dl-0.1.0-cp38-cp38-musllinux_1_2_i686.whl (1.2 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

celeres_dl-0.1.0-cp38-cp38-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

celeres_dl-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (162.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

celeres_dl-0.1.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (176.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

celeres_dl-0.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (152.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

celeres_dl-0.1.0-cp38-cp38-macosx_11_0_arm64.whl (121.5 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

celeres_dl-0.1.0-cp38-cp38-macosx_10_9_x86_64.whl (130.6 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

File details

Details for the file celeres_dl-0.1.0.tar.gz.

File metadata

  • Download URL: celeres_dl-0.1.0.tar.gz
  • Upload date:
  • Size: 469.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for celeres_dl-0.1.0.tar.gz
Algorithm Hash digest
SHA256 7202cac5c899083b5884e4b032197e61882741ad04dff1ea800c1e9299377bac
MD5 9c657a0418aeb7ade05a8e66622855fe
BLAKE2b-256 f4c572ef2c59f9a22ac0f6e0359e08c7e694dc946ac43f72a2ba89760cccf257

See more details on using hashes here.

Provenance

The following attestation bundles were made for celeres_dl-0.1.0.tar.gz:

Publisher: wheels.yml on anthony-celeres/celeres-data-loader

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

File details

Details for the file celeres_dl-0.1.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: celeres_dl-0.1.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 126.8 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 celeres_dl-0.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 34124a4aff64bf35b5bf8f91fa40b65d7e22c30ad7a9c331f38aaefc67b525ea
MD5 30e239f9b1bd48f2298efc352b6692c7
BLAKE2b-256 53ce36ce3ad800e4ca1cb6fd753dc25d311e643a3b41599140731ae371251d35

See more details on using hashes here.

Provenance

The following attestation bundles were made for celeres_dl-0.1.0-cp313-cp313-win_amd64.whl:

Publisher: wheels.yml on anthony-celeres/celeres-data-loader

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

File details

Details for the file celeres_dl-0.1.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: celeres_dl-0.1.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 117.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 celeres_dl-0.1.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 86445baad5a8d7d616b5b9ed64e28da28180e0e1cef205093ea2a6e91772219c
MD5 98edac9f7bb4858c8b26843fd0a19d9c
BLAKE2b-256 07196e4e1cbe6844fea074a38ac4b3204d07a9cdfd359c9486c9521bcfbbd4ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for celeres_dl-0.1.0-cp313-cp313-win32.whl:

Publisher: wheels.yml on anthony-celeres/celeres-data-loader

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

File details

Details for the file celeres_dl-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for celeres_dl-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 46bb3205a533519af9173d215de059a89d2457db109803abf6bcb9a1ab561c07
MD5 d0932b792d0d9c6b3880c62663f59214
BLAKE2b-256 d936c19f2000bc4eba6cbb0b7a518e8545bfe6c0b1bb2de64d054899f78ef3b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for celeres_dl-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on anthony-celeres/celeres-data-loader

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

File details

Details for the file celeres_dl-0.1.0-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for celeres_dl-0.1.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fb3a254b40edb7d98e84c2e5c43afafa1fe907776496c84362dd4c55ba039056
MD5 294718ce0a86242b1c4d9826bb90ba76
BLAKE2b-256 4ead833a93ad47a88c5d84c5e2c02a5447daad5529c1e894ca9ab4d4e04d08f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for celeres_dl-0.1.0-cp313-cp313-musllinux_1_2_i686.whl:

Publisher: wheels.yml on anthony-celeres/celeres-data-loader

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

File details

Details for the file celeres_dl-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for celeres_dl-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2fb32faab70ba5c85fa7ff4ef9202f5c195527e0c4574393c8d5ff39f64032e9
MD5 79a1d84f1ef8702ab52a3b42594fa166
BLAKE2b-256 a9961d8b7d5b9d731c29f8296ad76ffc0de5460a08bd2167edb22d61154b86c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for celeres_dl-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: wheels.yml on anthony-celeres/celeres-data-loader

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

File details

Details for the file celeres_dl-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for celeres_dl-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a7ce9550032d6eca0aaf6b3df8e6f7e1040f5f92983729a36868d690737aae56
MD5 3581094452a29c0692e2ecff51d736a8
BLAKE2b-256 1b2a3f61c4b1e6f03a0dc51bf623da7e4391cf2afd14877ebaf169b98f844e4d

See more details on using hashes here.

Provenance

The following attestation bundles were made for celeres_dl-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: wheels.yml on anthony-celeres/celeres-data-loader

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

File details

Details for the file celeres_dl-0.1.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for celeres_dl-0.1.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 73ed9601ffd73bffd2b62d5c38d94b0b20dabf8c72342673feda64e7329f3169
MD5 469d37a2990383ad07dd7a55d88ea901
BLAKE2b-256 01feea4d6de1977b58c702dc5b72f28f2f08d1c74c944abaff87009e2eebc4ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for celeres_dl-0.1.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: wheels.yml on anthony-celeres/celeres-data-loader

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

File details

Details for the file celeres_dl-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for celeres_dl-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 893d77c8eab92c3f19556009e81f5c67ea0d4717805176c1993ccc95190516e9
MD5 fb20237ef0fc94874db8d9fb5f3266a6
BLAKE2b-256 0193f115f9acfde183fd4ae3e63fedb56a577a4c3bf24d3b4ce8a4e0047a71df

See more details on using hashes here.

Provenance

The following attestation bundles were made for celeres_dl-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: wheels.yml on anthony-celeres/celeres-data-loader

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

File details

Details for the file celeres_dl-0.1.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for celeres_dl-0.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3e3997626571695fb2f9cd6531eaa97191e81020b63ec9c2363a4c62db9c5e0e
MD5 a10adfec55c610ae42c20c6aec8ce197
BLAKE2b-256 240b5cd35fdae8602f6198b6231e12ea6160cf7f3bb2832a93db6b9cca6363b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for celeres_dl-0.1.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: wheels.yml on anthony-celeres/celeres-data-loader

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

File details

Details for the file celeres_dl-0.1.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for celeres_dl-0.1.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 928156c436797f70b608cc2a6bf6303836730a53ca6abcd7e789de30c05494e8
MD5 fe689da4457ed62ccaa6409f7fe0cb1f
BLAKE2b-256 613b15f996b492129e824b3272350fe3c1ed25ab1587bb0d1422a8e10983454e

See more details on using hashes here.

Provenance

The following attestation bundles were made for celeres_dl-0.1.0-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: wheels.yml on anthony-celeres/celeres-data-loader

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

File details

Details for the file celeres_dl-0.1.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: celeres_dl-0.1.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 126.8 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 celeres_dl-0.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 770713f468861dc7f116bde2222884dd3c28960bec9bc4f4e3e64ab9c7a7927e
MD5 549442782f16c85814e42174997f7ff7
BLAKE2b-256 be853a6ab926a011098bc9d2814c5e926f543f0fdcca6125c1cf0cc7015b4d9b

See more details on using hashes here.

Provenance

The following attestation bundles were made for celeres_dl-0.1.0-cp312-cp312-win_amd64.whl:

Publisher: wheels.yml on anthony-celeres/celeres-data-loader

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

File details

Details for the file celeres_dl-0.1.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: celeres_dl-0.1.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 117.0 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 celeres_dl-0.1.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 069c58339614299558bf621b06cc4b66497f86ed095a342ca5a0bb29e34f975f
MD5 ca3f73230d8150527bc444a2fefda402
BLAKE2b-256 e6146dea37cbbe9200acdfb45e1d744508e332ae22d1d15251e5dcccf79dce0f

See more details on using hashes here.

Provenance

The following attestation bundles were made for celeres_dl-0.1.0-cp312-cp312-win32.whl:

Publisher: wheels.yml on anthony-celeres/celeres-data-loader

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

File details

Details for the file celeres_dl-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for celeres_dl-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bf0c61da9ef960fc1b55c550ccaa5b05aa5aa08abe8b2bafd9ba92d477188b06
MD5 3aacf5552c8702aa16414a87ec4d97bf
BLAKE2b-256 1d2b59bae4fbacd988bfa5c6e57b680f500e80ef5f9ff888c690f68bf875733b

See more details on using hashes here.

Provenance

The following attestation bundles were made for celeres_dl-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on anthony-celeres/celeres-data-loader

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

File details

Details for the file celeres_dl-0.1.0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for celeres_dl-0.1.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 30229a5282df9e2ad67a9c7b84460f5b1e00e5ad1266777437e6bc5d0aa05906
MD5 9e78030e98ba5be56f44198ebcac41dc
BLAKE2b-256 48759192f462c8d9ae3f1d2d5e129faeb07a4ca2a4a276110b0a6c22f5efa74f

See more details on using hashes here.

Provenance

The following attestation bundles were made for celeres_dl-0.1.0-cp312-cp312-musllinux_1_2_i686.whl:

Publisher: wheels.yml on anthony-celeres/celeres-data-loader

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

File details

Details for the file celeres_dl-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for celeres_dl-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 199facd64fcff2065bf07416fae415fdb40dbd9e995d9c22b51f2ee2ba934242
MD5 d172e240326c97419853285d557ac61a
BLAKE2b-256 8a9b89bf5102502ad98651f171c75b061e025d553449ddcfcc163a2c81f6c302

See more details on using hashes here.

Provenance

The following attestation bundles were made for celeres_dl-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: wheels.yml on anthony-celeres/celeres-data-loader

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

File details

Details for the file celeres_dl-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for celeres_dl-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8598077ab73971bad65cabf9d32b3fe9cea6784388163360b9eb1357e96d2154
MD5 47fc7e628379d814309fbb3ac3a7d7b2
BLAKE2b-256 d024f0df6712c895e2ebf8d8d1441fd19579a029617a957aed1d5d1712c7f1d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for celeres_dl-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: wheels.yml on anthony-celeres/celeres-data-loader

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

File details

Details for the file celeres_dl-0.1.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for celeres_dl-0.1.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 574a641b0443179c6807532918208cd9d68b136378d6a4abc4a6fc61c6c35c75
MD5 fbc787a1ccd72bb83fa7389042e03992
BLAKE2b-256 0bc0f1e50413663e2a0bf8fe722bb008d3822d103a0fb6a8a9b80bdb351a4358

See more details on using hashes here.

Provenance

The following attestation bundles were made for celeres_dl-0.1.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: wheels.yml on anthony-celeres/celeres-data-loader

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

File details

Details for the file celeres_dl-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for celeres_dl-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 620ae3c9ecbda3b8ec7f119717b4fc790cc234f957b563bf6d8d0fc5bb7f279d
MD5 ea2e8fa6e012c5a09fbed959c2b91cf0
BLAKE2b-256 8c6fc5db6d6a4087801e6a12a92955edd1a4bc10a4a66110aa8da038b1f55447

See more details on using hashes here.

Provenance

The following attestation bundles were made for celeres_dl-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: wheels.yml on anthony-celeres/celeres-data-loader

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

File details

Details for the file celeres_dl-0.1.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for celeres_dl-0.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 03ca1bbb8e72504b130ec927ec5c17506e35526043e25b21530a3269f70ca2c9
MD5 5683a9cdd5ed5f39d58fcfad6ec75c81
BLAKE2b-256 4f65387991c83d44379c29542abde6f47009dd5ebd29b256dd686c9fdcc55b55

See more details on using hashes here.

Provenance

The following attestation bundles were made for celeres_dl-0.1.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: wheels.yml on anthony-celeres/celeres-data-loader

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

File details

Details for the file celeres_dl-0.1.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for celeres_dl-0.1.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 8df108ae54e43d193eec2e7eceee84ebb9aa02d3bfd28337b2a9a51cbe7c015e
MD5 896e6265a2f20591116269e0c1fc0a6a
BLAKE2b-256 aa62df832dc6747b00a42522ef248a59516f164a87aa2148bbf3bcd3aff50ef5

See more details on using hashes here.

Provenance

The following attestation bundles were made for celeres_dl-0.1.0-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: wheels.yml on anthony-celeres/celeres-data-loader

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

File details

Details for the file celeres_dl-0.1.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: celeres_dl-0.1.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 125.1 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 celeres_dl-0.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 84e1945727ee3a65b72de182bd117e318c2322b1b40262c9a115e7e2d85eb032
MD5 f226ed1d636801c8ccbcb46ed8e78fef
BLAKE2b-256 aef9a24662a4191f2bf7a83acd8510b3c4e0d1d6c00f0ac440ba7a4f3cf55a2f

See more details on using hashes here.

Provenance

The following attestation bundles were made for celeres_dl-0.1.0-cp311-cp311-win_amd64.whl:

Publisher: wheels.yml on anthony-celeres/celeres-data-loader

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

File details

Details for the file celeres_dl-0.1.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: celeres_dl-0.1.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 116.0 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 celeres_dl-0.1.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 579be2fec21c73c21e1d3e55eb26fc3e62432f5a4aa51569c5b39912cfbd1ce6
MD5 5a68ddd8f7c81ba01fd8ccabb8421ce2
BLAKE2b-256 0bf1fac56806789b53d879f242efb11e46b49ec5781edb0f850b77877176e9ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for celeres_dl-0.1.0-cp311-cp311-win32.whl:

Publisher: wheels.yml on anthony-celeres/celeres-data-loader

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

File details

Details for the file celeres_dl-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for celeres_dl-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 074eca1128d87e8630ff5e40618c7938d5b9c9d9d923ec513f16c8b560e24966
MD5 dafdf3ca19c6e3e247080c668e16fa4c
BLAKE2b-256 9da35ba4dd6fc356d6d3e8b2ddbbb69f455a0218b9a460e04bccf6c01b2a9b42

See more details on using hashes here.

Provenance

The following attestation bundles were made for celeres_dl-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on anthony-celeres/celeres-data-loader

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

File details

Details for the file celeres_dl-0.1.0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for celeres_dl-0.1.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6c2f0e377254d39d4caee702b1bb85f5e9e4c098f38803e2bdc3dfeb37f02330
MD5 c86350c9d0e0c2be1a2dfcd804fdea55
BLAKE2b-256 02a882bb6d5f5185cda015953504d5bfd154313f8f171a11e35fe6f68d1d754e

See more details on using hashes here.

Provenance

The following attestation bundles were made for celeres_dl-0.1.0-cp311-cp311-musllinux_1_2_i686.whl:

Publisher: wheels.yml on anthony-celeres/celeres-data-loader

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

File details

Details for the file celeres_dl-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for celeres_dl-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 eac3464e6bafbb51a0a2b834c13b6ec0afe587d37544c880fd3938b0eb8316d8
MD5 e8dcf5ba247439cde8b5d7987fca78c9
BLAKE2b-256 46f9d8b173f52b802ab209b3c34808ce473811c60f89a2e0141ed8d3dc537069

See more details on using hashes here.

Provenance

The following attestation bundles were made for celeres_dl-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: wheels.yml on anthony-celeres/celeres-data-loader

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

File details

Details for the file celeres_dl-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for celeres_dl-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6be4aa6e8a0e6ccd6172cd3d0c83b6bf3a2eddfbde2c62fdc518dd75e524b7e4
MD5 4b17ab47e3abe1a334a964d82ec11f4b
BLAKE2b-256 4a31bf7404782cf7f6f24b7553f92c7cdd7e04e160d1e853aed1e619207d86ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for celeres_dl-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: wheels.yml on anthony-celeres/celeres-data-loader

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

File details

Details for the file celeres_dl-0.1.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for celeres_dl-0.1.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 83c42c765c858ce814db91d861aec1ff3fe1be2cf888068bf7711a8ed203f108
MD5 f978216055d1759c3dfd98c4230ab7b4
BLAKE2b-256 fe5c2810fbc6fcb388b026630914081c5a63168b787b23939ac43bc0922cd856

See more details on using hashes here.

Provenance

The following attestation bundles were made for celeres_dl-0.1.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: wheels.yml on anthony-celeres/celeres-data-loader

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

File details

Details for the file celeres_dl-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for celeres_dl-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 df7d1d554e119bf414118c747083ea159a69a4272f647663cca1196eae234a7b
MD5 b0824520e7ee330e2831e984933baba9
BLAKE2b-256 dbb708654cab9772873e43076a43600ca43942048870736ff9dfd04dc73f8bd8

See more details on using hashes here.

Provenance

The following attestation bundles were made for celeres_dl-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: wheels.yml on anthony-celeres/celeres-data-loader

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

File details

Details for the file celeres_dl-0.1.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for celeres_dl-0.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fdc255b7fdf4d4b2286904e70c4d0a8ea97135eec35239d10099e45cf636d83c
MD5 084d629325a827428290b1a44f5ad909
BLAKE2b-256 3333ce89ff5f8d6bd3f8796097b69fa7cda05b2ea81ff68137e76923076bea27

See more details on using hashes here.

Provenance

The following attestation bundles were made for celeres_dl-0.1.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: wheels.yml on anthony-celeres/celeres-data-loader

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

File details

Details for the file celeres_dl-0.1.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for celeres_dl-0.1.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2f1ce5f004c7bd4749531be317ab8b0f65a018dd06452190d0249fcb4cc01e87
MD5 32b634ae9fd676c4dc145cafcea10bf7
BLAKE2b-256 6aac2604a4536c731646fb4a25795adafe9810401c8879e4b597d661fa06a0ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for celeres_dl-0.1.0-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: wheels.yml on anthony-celeres/celeres-data-loader

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

File details

Details for the file celeres_dl-0.1.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: celeres_dl-0.1.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 124.6 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 celeres_dl-0.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 67562fb53f4229dcdcb3e6ae5ad23c9fc99c0529b8ad1c493ad7db8e8a54d880
MD5 069c9a2e6d29046af8c14e8a7da9157b
BLAKE2b-256 ea377f1e2be2390876f14d5673909522694e4b96cc1c20c2e2bfc8d6231d3c6d

See more details on using hashes here.

Provenance

The following attestation bundles were made for celeres_dl-0.1.0-cp310-cp310-win_amd64.whl:

Publisher: wheels.yml on anthony-celeres/celeres-data-loader

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

File details

Details for the file celeres_dl-0.1.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: celeres_dl-0.1.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 115.1 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 celeres_dl-0.1.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 1894e5b42cc53de4b2d25ee240054fb757d6e10b2c287d0fc6e9ec312139a246
MD5 fe0f74e3fa87cb1b39685936017fff38
BLAKE2b-256 7d2ec03fa4c0ed86c61840e2978dd4cb1712e9f24c07ec63d1f64f00d2c3d051

See more details on using hashes here.

Provenance

The following attestation bundles were made for celeres_dl-0.1.0-cp310-cp310-win32.whl:

Publisher: wheels.yml on anthony-celeres/celeres-data-loader

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

File details

Details for the file celeres_dl-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for celeres_dl-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b50d120d3c234761bd67ffc56d0e240394b2952069714a3d3947b80cf976544a
MD5 878d2ae9a2ba7880583fbad60dfdcb94
BLAKE2b-256 cf2272ade7fb766e1d8db61fe41e64e0474b754b5dc61b9c7a531f877cc27792

See more details on using hashes here.

Provenance

The following attestation bundles were made for celeres_dl-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on anthony-celeres/celeres-data-loader

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

File details

Details for the file celeres_dl-0.1.0-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for celeres_dl-0.1.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 95c446b7f0ecb1983b7a0044b3aab1ef4419956c54f73aa02390848ab0379132
MD5 f09be352d79c79ddd9d5e012d4c8983a
BLAKE2b-256 0cffa949f94357f795e8cfa05475f12dd78c37db3d0147df95907791366b0ddb

See more details on using hashes here.

Provenance

The following attestation bundles were made for celeres_dl-0.1.0-cp310-cp310-musllinux_1_2_i686.whl:

Publisher: wheels.yml on anthony-celeres/celeres-data-loader

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

File details

Details for the file celeres_dl-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for celeres_dl-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e8069beb4b5a14773143a080fb3f973494d2fc33fcb3cfc55fe2db703b4ff902
MD5 b8a584a223913236b161fb3b42b6e2d5
BLAKE2b-256 7d31b3c83f8a73f26dd971ed8f8c4aed874248a5342fe5407ff31675efda6df6

See more details on using hashes here.

Provenance

The following attestation bundles were made for celeres_dl-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: wheels.yml on anthony-celeres/celeres-data-loader

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

File details

Details for the file celeres_dl-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for celeres_dl-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c5fc71129eec8465e42e5cc14dd7edf94672a72b073b1f043cdb4efff1122fab
MD5 895acda35b91b14791a5c7668e953b67
BLAKE2b-256 ab8ccb2aabc95fa05186b6a1bc7d6817cd1c7d2a2bc3f87a7f32a8defcf24f65

See more details on using hashes here.

Provenance

The following attestation bundles were made for celeres_dl-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: wheels.yml on anthony-celeres/celeres-data-loader

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

File details

Details for the file celeres_dl-0.1.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for celeres_dl-0.1.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 06f0769de75dc7805b5a35bf057ac422e194c6310fa5156f13cb2dbc0e6d2596
MD5 a73c5feba1c43598850dc707dad57bd8
BLAKE2b-256 09e1c63dff5ca1cd2c2865992663543806c47fab8e7ad7d5f74a74a9587e8da1

See more details on using hashes here.

Provenance

The following attestation bundles were made for celeres_dl-0.1.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: wheels.yml on anthony-celeres/celeres-data-loader

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

File details

Details for the file celeres_dl-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for celeres_dl-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f9f6b8e2fe44639a406d616e76e60fa0153eb7c1473efd61f1af83523e342dc8
MD5 da708012bce3ef9264d48206c95ebb3d
BLAKE2b-256 47436c51971d10e07ab07805922cf522f5e97b71be104b369f610e7cf77a9379

See more details on using hashes here.

Provenance

The following attestation bundles were made for celeres_dl-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: wheels.yml on anthony-celeres/celeres-data-loader

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

File details

Details for the file celeres_dl-0.1.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for celeres_dl-0.1.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 41fa73660fbfd1f0d31ffdfece27a544ecc0419846a3218170404985044fa2ac
MD5 aa81c0e6b5cbec080f0438d723c168f1
BLAKE2b-256 b3e00716731d6f0ec4ca20e98f36ad962fa2124e4a7760994ad5b3b8d4c34ca7

See more details on using hashes here.

Provenance

The following attestation bundles were made for celeres_dl-0.1.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: wheels.yml on anthony-celeres/celeres-data-loader

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

File details

Details for the file celeres_dl-0.1.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for celeres_dl-0.1.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c8199d9a2d3e1f890d3f641b0ffc5b927add5b95361e9d885631ec61074a6876
MD5 be50075465f027c738aa2caf45a95144
BLAKE2b-256 391a019a8f002b57153c4e7973d0c0d6bbb2d8192cc88128c33694327f8bc4c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for celeres_dl-0.1.0-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: wheels.yml on anthony-celeres/celeres-data-loader

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

File details

Details for the file celeres_dl-0.1.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: celeres_dl-0.1.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 127.1 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 celeres_dl-0.1.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 e6b0448f44ed7a50621b7f57a63ca522864fca6711ac4bd12272a3b47be93a0c
MD5 6477ae68d708aea7f6c98fca39d322eb
BLAKE2b-256 ce1050adcba5c522481db44aedb6b9f83fc61e7109e58b9c314b8e44cec44304

See more details on using hashes here.

Provenance

The following attestation bundles were made for celeres_dl-0.1.0-cp39-cp39-win_amd64.whl:

Publisher: wheels.yml on anthony-celeres/celeres-data-loader

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

File details

Details for the file celeres_dl-0.1.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: celeres_dl-0.1.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 115.2 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 celeres_dl-0.1.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 7abb2e9e82352d6cfb84b1ed3090ab5d96564884acbdc64c60079583b6c00994
MD5 d21844b8cdde34f9b2af2daad2d63015
BLAKE2b-256 af0f4e48f951ea7f013affad0ba9b4df1ff251a9efeaa6035fae0cfbecfaa6c6

See more details on using hashes here.

Provenance

The following attestation bundles were made for celeres_dl-0.1.0-cp39-cp39-win32.whl:

Publisher: wheels.yml on anthony-celeres/celeres-data-loader

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

File details

Details for the file celeres_dl-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for celeres_dl-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 625c2227ca307fe8cd6742672490856622ffb1301f1972cddb8b7d91e2fd515d
MD5 0b95086b89b83311df6ae26301251243
BLAKE2b-256 e96514ad4522c13e5df17315b1d59b70457adb40b9a87b63ba529abbf44a6983

See more details on using hashes here.

Provenance

The following attestation bundles were made for celeres_dl-0.1.0-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on anthony-celeres/celeres-data-loader

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

File details

Details for the file celeres_dl-0.1.0-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for celeres_dl-0.1.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3dc8fff149b2100e25cf7bee0cd0fdd20b0f64241cfff6c3f4aa6cd9f3182d24
MD5 2f539d416d4d3c03d48a743bf3e2f3dc
BLAKE2b-256 a1c9eff3150abbd5015fbe64ac7b0c2bfcb5997946bdb9d820b700b6b104c263

See more details on using hashes here.

Provenance

The following attestation bundles were made for celeres_dl-0.1.0-cp39-cp39-musllinux_1_2_i686.whl:

Publisher: wheels.yml on anthony-celeres/celeres-data-loader

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

File details

Details for the file celeres_dl-0.1.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for celeres_dl-0.1.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cd5b745057a5b9a5ad1cfaf39a7c8b59eaaf064c1c4846cc647b270ee2db425a
MD5 7c977aafed335bc038928fc00871fd24
BLAKE2b-256 b35a46516597857011bab59245fb386eff0d35ebe8f87c71fec49b4fdc48502e

See more details on using hashes here.

Provenance

The following attestation bundles were made for celeres_dl-0.1.0-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: wheels.yml on anthony-celeres/celeres-data-loader

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

File details

Details for the file celeres_dl-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for celeres_dl-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9aea0145ac6422b5f5854cd2befb95f63e44f31cd9b82e7578c852dcc2f7f59d
MD5 111866381331a16d166c3eaae34833ee
BLAKE2b-256 ce9b9039b7ac41e3c2d60c02e30ebde1dc8fb1e883b7be274733e19ede438510

See more details on using hashes here.

Provenance

The following attestation bundles were made for celeres_dl-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: wheels.yml on anthony-celeres/celeres-data-loader

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

File details

Details for the file celeres_dl-0.1.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for celeres_dl-0.1.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 17887aa0995e1ddfd0b421bc7a21d49e3ef4ba5f64fab8ca6c1fa9285a35271d
MD5 c41e28652c1c03ab62640ad3c84febe8
BLAKE2b-256 dbf63ba8e373428977a8d74aa72dadaf2f30595b3fa53f600af8ffe2c0a27760

See more details on using hashes here.

Provenance

The following attestation bundles were made for celeres_dl-0.1.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: wheels.yml on anthony-celeres/celeres-data-loader

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

File details

Details for the file celeres_dl-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for celeres_dl-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 20fc426b817fb73047c6e3da63323cce623b8a1ffef85efd37dd0e73a9f7c090
MD5 5445313232835ee2bd589f1c3324283e
BLAKE2b-256 1b95751c3943efbdb81daf209e78c1ae208f37a7dd8a1dd40498d01e48a5b4a7

See more details on using hashes here.

Provenance

The following attestation bundles were made for celeres_dl-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: wheels.yml on anthony-celeres/celeres-data-loader

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

File details

Details for the file celeres_dl-0.1.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for celeres_dl-0.1.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6eafba961517543a074dbcb2be5e28428e9f927bacf1e5de78b9793362b4cb47
MD5 1b7f9de39499b325a146f3e218d071c5
BLAKE2b-256 2fb9616fc93cac0a18ab6671a81eb095438d915936666ba4515446163dce07b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for celeres_dl-0.1.0-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: wheels.yml on anthony-celeres/celeres-data-loader

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

File details

Details for the file celeres_dl-0.1.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for celeres_dl-0.1.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 26e131cca751293f085beb68b7c1ffb80fe60e067009f5ab45d8ce185b9ee3ba
MD5 fd882d392846d81a2bdf96d686544491
BLAKE2b-256 47618e9cd2a89a909a1e8627be755cc0fb4db9665c29c8ecb16e4036f822deaa

See more details on using hashes here.

Provenance

The following attestation bundles were made for celeres_dl-0.1.0-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: wheels.yml on anthony-celeres/celeres-data-loader

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

File details

Details for the file celeres_dl-0.1.0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: celeres_dl-0.1.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 124.4 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 celeres_dl-0.1.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 3886f755f79511e3090378a83f34fc4edec6577bcecc35f89fd0162840572f15
MD5 1ab2dd0d59ddbc0642cdb7268f929e3f
BLAKE2b-256 3f153b0683bcb44e4cc123ebc94c02886d2a5f252462094e4a90a5be4c875cc7

See more details on using hashes here.

Provenance

The following attestation bundles were made for celeres_dl-0.1.0-cp38-cp38-win_amd64.whl:

Publisher: wheels.yml on anthony-celeres/celeres-data-loader

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

File details

Details for the file celeres_dl-0.1.0-cp38-cp38-win32.whl.

File metadata

  • Download URL: celeres_dl-0.1.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 115.0 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 celeres_dl-0.1.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 5d2197e0b1fbf920f0b062cc470089a17ca876ff9a04c6d583772a8c360558f0
MD5 1c5cfdc0172e1ffa93dbdefc8a8682f4
BLAKE2b-256 c60852d37a07d8440c99f0e645f4443358864e6ab5adb4b677fa0f87e5b76939

See more details on using hashes here.

Provenance

The following attestation bundles were made for celeres_dl-0.1.0-cp38-cp38-win32.whl:

Publisher: wheels.yml on anthony-celeres/celeres-data-loader

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

File details

Details for the file celeres_dl-0.1.0-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for celeres_dl-0.1.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2cb1e5681345b2a39df20825e9092b54370c2a59667f9f79e4486695b959643b
MD5 452b7400ddb1f1d09c7db1fda3319604
BLAKE2b-256 c001fa5fc833cc1c81aabb57f5c6a59d199a7a84d07ac557a54bba3e6a3351dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for celeres_dl-0.1.0-cp38-cp38-musllinux_1_2_x86_64.whl:

Publisher: wheels.yml on anthony-celeres/celeres-data-loader

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

File details

Details for the file celeres_dl-0.1.0-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for celeres_dl-0.1.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d0024e6e8963ea2004b6fa8dfefadc134bf4615dc9a34f458b4adcebfdaabd00
MD5 ae8ac9bb0e3027521e08bbbddc84e4e3
BLAKE2b-256 dd51a1810a3e4b15c2761f729ab68002986da720f5e642509984957da241afb8

See more details on using hashes here.

Provenance

The following attestation bundles were made for celeres_dl-0.1.0-cp38-cp38-musllinux_1_2_i686.whl:

Publisher: wheels.yml on anthony-celeres/celeres-data-loader

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

File details

Details for the file celeres_dl-0.1.0-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for celeres_dl-0.1.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6baff34ee92d35a7716c275fd9cc8e55094d76bff4e770bc2088d481727b0591
MD5 05eada5537a74c02b60b82ccc2f2c3ab
BLAKE2b-256 b1a3225044d8888aec96cc832c85def760067fea280ece8b222271bc0a293029

See more details on using hashes here.

Provenance

The following attestation bundles were made for celeres_dl-0.1.0-cp38-cp38-musllinux_1_2_aarch64.whl:

Publisher: wheels.yml on anthony-celeres/celeres-data-loader

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

File details

Details for the file celeres_dl-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for celeres_dl-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d36d397c5bbe297acbbae49cace43a2af96f9a24cad0f250735a2afa2a36abbb
MD5 979a22452ac64c002f5e5f780121006a
BLAKE2b-256 b39d218c766d724b03d39c8fc33d67d36218024ef7cbe722c10e80a177215689

See more details on using hashes here.

Provenance

The following attestation bundles were made for celeres_dl-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: wheels.yml on anthony-celeres/celeres-data-loader

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

File details

Details for the file celeres_dl-0.1.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for celeres_dl-0.1.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b92f03a0cb54185bc84dc7eeb9ccfa6159a7027b61927c7b1c1e7065be592171
MD5 abdc8c5f4892b0a1554c708a681dd587
BLAKE2b-256 0605e3405e81bf5d3db1302121b304b6753a340ce707c387b9927136b7deaec7

See more details on using hashes here.

Provenance

The following attestation bundles were made for celeres_dl-0.1.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: wheels.yml on anthony-celeres/celeres-data-loader

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

File details

Details for the file celeres_dl-0.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for celeres_dl-0.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7371241d0e24ca1deb191eba2fc62c3d4e2e98908ea4fc1a169bde9b6c0e6634
MD5 71e179bf654f036078fa8082d70edc25
BLAKE2b-256 c12b1614a32ff5e3e94882009bc8dc70331dd04d6bec05fea87c08097e0cbde9

See more details on using hashes here.

Provenance

The following attestation bundles were made for celeres_dl-0.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: wheels.yml on anthony-celeres/celeres-data-loader

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

File details

Details for the file celeres_dl-0.1.0-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for celeres_dl-0.1.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cdbf878938b25ea4fb8acea50df230929b21e0adefa7dbdb037b2d0d46ebc346
MD5 e8231350e6bc550c4aab3928a2546e8b
BLAKE2b-256 a05533ab4ae58f59e03a17a3e4168183ecedab018d66b9bf519a8242def0cdc8

See more details on using hashes here.

Provenance

The following attestation bundles were made for celeres_dl-0.1.0-cp38-cp38-macosx_11_0_arm64.whl:

Publisher: wheels.yml on anthony-celeres/celeres-data-loader

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

File details

Details for the file celeres_dl-0.1.0-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for celeres_dl-0.1.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c42a5280edaff4d1a7ddb4fef499f785efd3956e171e11a70a86ff560a4b877a
MD5 1a9832f815acfea7998d48426d9f846b
BLAKE2b-256 d5586b755cf83d88b396c09625396480bcb57f7fa8361df5b2bb31733ff2f2c6

See more details on using hashes here.

Provenance

The following attestation bundles were made for celeres_dl-0.1.0-cp38-cp38-macosx_10_9_x86_64.whl:

Publisher: wheels.yml on anthony-celeres/celeres-data-loader

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