Skip to main content

Icechunk Python

Project description

Icechunk

Icechunk logo

PyPI Conda Forge Crates.io GitHub Repo stars Earthmover Community Slack


[!TIP] Icechunk 1.0 is released! Better API, more performance and stability


Icechunk is an open-source (Apache 2.0), transactional storage engine for tensor / ND-array data designed for use on cloud object storage. Icechunk works together with Zarr, augmenting the Zarr core data model with features that enhance performance, collaboration, and safety in a cloud-computing context.

Documentation and Resources

Icechunk Overview

Let's break down what "transactional storage engine for Zarr" actually means:

  • Zarr is an open source specification for the storage of multidimensional array (a.k.a. tensor) data. Zarr defines the metadata for describing arrays (shape, dtype, etc.) and the way these arrays are chunked, compressed, and converted to raw bytes for storage. Zarr can store its data in any key-value store. There are many different implementations of Zarr in different languages. Right now, Icechunk only supports Zarr Python. If you're interested in implementing Icechunk support, please open an issue so we can help you.
  • Storage engine - Icechunk exposes a key-value interface to Zarr and manages all of the actual I/O for getting, setting, and updating both metadata and chunk data in cloud object storage. Zarr libraries don't have to know exactly how icechunk works under the hood in order to use it.
  • Transactional - The key improvement that Icechunk brings on top of regular Zarr is to provide consistent serializable isolation between transactions. This means that Icechunk data is safe to read and write in parallel from multiple uncoordinated processes. This allows Zarr to be used more like a database.

The core entity in Icechunk is a repository or repo. A repo is defined as a Zarr hierarchy containing one or more Arrays and Groups, and a repo functions as a self-contained Zarr Store. The most common scenario is for an Icechunk repo to contain a single Zarr group with multiple arrays, each corresponding to different physical variables but sharing common spatiotemporal coordinates. However, formally a repo can be any valid Zarr hierarchy, from a single Array to a deeply nested structure of Groups and Arrays. Users of Icechunk should aim to scope their repos only to related arrays and groups that require consistent transactional updates.

Icechunk supports the following core requirements:

  1. Object storage - the format is designed around the consistency features and performance characteristics available in modern cloud object storage. No external database or catalog is required to maintain a repo. (It also works with file storage.)
  2. Serializable isolation - Reads are isolated from concurrent writes and always use a committed snapshot of a repo. Writes are committed atomically and are never partially visible. No locks are required for reading.
  3. Time travel - Previous snapshots of a repo remain accessible after new ones have been written.
  4. Data version control - Repos support both tags (immutable references to snapshots) and branches (mutable references to snapshots).
  5. Chunk shardings - Chunk storage is decoupled from specific file names. Multiple chunks can be packed into a single object (sharding).
  6. Chunk references - Zarr-compatible chunks within other file formats (e.g. HDF5, NetCDF) can be referenced.
  7. Schema evolution - Arrays and Groups can be added, renamed, and removed from the hierarchy with minimal overhead.

Key Concepts

Groups, Arrays, and Chunks

Icechunk is designed around the Zarr data model, widely used in scientific computing, data science, and AI / ML. (The Zarr high-level data model is effectively the same as HDF5.) The core data structure in this data model is the array. Arrays have two fundamental properties:

  • shape - a tuple of integers which specify the dimensions of each axis of the array. A 10 x 10 square array would have shape (10, 10)
  • data type - a specification of what type of data is found in each element, e.g. integer, float, etc. Different data types have different precision (e.g. 16-bit integer, 64-bit float, etc.)

In Zarr / Icechunk, arrays are split into chunks. A chunk is the minimum unit of data that must be read / written from storage, and thus choices about chunking have strong implications for performance. Zarr leaves this completely up to the user. Chunk shape should be chosen based on the anticipated data access pattern for each array. An Icechunk array is not bounded by an individual file and is effectively unlimited in size.

For further organization of data, Icechunk supports groups within a single repo. Group are like folders which contain multiple arrays and or other groups. Groups enable data to be organized into hierarchical trees. A common usage pattern is to store multiple arrays in a group representing a NetCDF-style dataset.

Arbitrary JSON-style key-value metadata can be attached to both arrays and groups.

Snapshots

Every update to an Icechunk store creates a new snapshot with a unique ID. Icechunk users must organize their updates into groups of related operations called transactions. For example, appending a new time slice to multiple arrays should be done as a single transaction, comprising the following steps

  1. Update the array metadata to resize the array to accommodate the new elements.
  2. Write new chunks for each array in the group.

While the transaction is in progress, none of these changes will be visible to other users of the store. Once the transaction is committed, a new snapshot is generated. Readers can only see and use committed snapshots.

Branches and Tags

Additionally, snapshots occur in a specific linear (i.e. serializable) order within a branch. A branch is a mutable reference to a snapshot--a pointer that maps the branch name to a snapshot ID. The default branch is main. Every commit to the main branch updates this reference. Icechunk's design protects against the race condition in which two uncoordinated sessions attempt to update the branch at the same time; only one can succeed.

Icechunk also defines tags--immutable references to snapshot. Tags are appropriate for publishing specific releases of a repository or for any application which requires a persistent, immutable identifier to the store state.

Chunk References

Chunk references are "pointers" to chunks that exist in other files--HDF5, NetCDF, GRIB, etc. Icechunk can store these references alongside native Zarr chunks as "virtual datasets". You can then update these virtual datasets incrementally (overwrite chunks, change metadata, etc.) without touching the underling files.

How Does It Work?

!!! Note: For a more detailed explanation, have a look at the Icechunk spec.

Zarr itself works by storing both metadata and chunk data into a abstract store according to a specified system of "keys". For example, a 2D Zarr array called myarray, within a group called mygroup, would generate the following keys:

mygroup/zarr.json
mygroup/myarray/zarr.json
mygroup/myarray/c/0/0
mygroup/myarray/c/0/1

In standard regular Zarr stores, these key map directly to filenames in a filesystem or object keys in an object storage system. When writing data, a Zarr implementation will create these keys and populate them with data. When modifying existing arrays or groups, a Zarr implementation will potentially overwrite existing keys with new data.

This is generally not a problem, as long there is only one person or process coordinating access to the data. However, when multiple uncoordinated readers and writers attempt to access the same Zarr data at the same time, various consistency problems emerge. These consistency problems can occur in both file storage and object storage; they are particularly severe in a cloud setting where Zarr is being used as an active store for data that are frequently changed while also being read.

With Icechunk, we keep the same core Zarr data model, but add a layer of indirection between the Zarr keys and the on-disk storage. The Icechunk library translates between the Zarr keys and the actual on-disk data given the particular context of the user's state. Icechunk defines a series of interconnected metadata and data files that together enable efficient isolated reading and writing of metadata and chunks. Once written, these files are immutable. Icechunk keeps track of every single chunk explicitly in a "chunk manifest".

flowchart TD
    zarr-python[Zarr Library] <-- key / value--> icechunk[Icechunk Library]
    icechunk <-- data / metadata files --> storage[(Object Storage)]

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

icechunk-1.1.15.tar.gz (431.0 kB view details)

Uploaded Source

Built Distributions

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

icechunk-1.1.15-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (18.6 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

icechunk-1.1.15-pp311-pypy311_pp73-musllinux_1_2_i686.whl (18.7 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

icechunk-1.1.15-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (17.8 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

icechunk-1.1.15-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (18.7 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

icechunk-1.1.15-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl (17.6 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARMv7l

icechunk-1.1.15-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (18.5 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

icechunk-1.1.15-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (17.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

icechunk-1.1.15-cp314-cp314t-musllinux_1_2_x86_64.whl (18.6 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

icechunk-1.1.15-cp314-cp314t-musllinux_1_2_i686.whl (18.7 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

icechunk-1.1.15-cp314-cp314t-musllinux_1_2_armv7l.whl (17.8 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

icechunk-1.1.15-cp314-cp314t-musllinux_1_2_aarch64.whl (18.7 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

icechunk-1.1.15-cp314-cp314t-manylinux_2_28_armv7l.whl (17.5 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARMv7l

icechunk-1.1.15-cp314-cp314t-manylinux_2_28_aarch64.whl (18.5 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

icechunk-1.1.15-cp314-cp314-win_amd64.whl (15.1 MB view details)

Uploaded CPython 3.14Windows x86-64

icechunk-1.1.15-cp314-cp314-musllinux_1_2_x86_64.whl (18.6 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

icechunk-1.1.15-cp314-cp314-musllinux_1_2_i686.whl (18.6 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

icechunk-1.1.15-cp314-cp314-musllinux_1_2_armv7l.whl (17.8 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

icechunk-1.1.15-cp314-cp314-musllinux_1_2_aarch64.whl (18.7 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

icechunk-1.1.15-cp314-cp314-manylinux_2_28_armv7l.whl (17.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARMv7l

icechunk-1.1.15-cp314-cp314-manylinux_2_28_aarch64.whl (18.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

icechunk-1.1.15-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (17.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

icechunk-1.1.15-cp314-cp314-macosx_11_0_arm64.whl (16.5 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

icechunk-1.1.15-cp314-cp314-macosx_10_12_x86_64.whl (17.0 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

icechunk-1.1.15-cp313-cp313t-musllinux_1_2_x86_64.whl (18.6 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

icechunk-1.1.15-cp313-cp313t-musllinux_1_2_i686.whl (18.7 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

icechunk-1.1.15-cp313-cp313t-musllinux_1_2_armv7l.whl (17.8 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

icechunk-1.1.15-cp313-cp313t-musllinux_1_2_aarch64.whl (18.7 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

icechunk-1.1.15-cp313-cp313t-manylinux_2_28_armv7l.whl (17.5 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARMv7l

icechunk-1.1.15-cp313-cp313t-manylinux_2_28_aarch64.whl (18.5 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

icechunk-1.1.15-cp313-cp313-win_amd64.whl (15.2 MB view details)

Uploaded CPython 3.13Windows x86-64

icechunk-1.1.15-cp313-cp313-musllinux_1_2_x86_64.whl (18.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

icechunk-1.1.15-cp313-cp313-musllinux_1_2_i686.whl (18.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

icechunk-1.1.15-cp313-cp313-musllinux_1_2_armv7l.whl (17.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

icechunk-1.1.15-cp313-cp313-musllinux_1_2_aarch64.whl (18.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

icechunk-1.1.15-cp313-cp313-manylinux_2_28_armv7l.whl (17.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARMv7l

icechunk-1.1.15-cp313-cp313-manylinux_2_28_aarch64.whl (18.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

icechunk-1.1.15-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (17.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

icechunk-1.1.15-cp313-cp313-macosx_11_0_arm64.whl (16.5 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

icechunk-1.1.15-cp313-cp313-macosx_10_12_x86_64.whl (17.0 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

icechunk-1.1.15-cp312-cp312-win_amd64.whl (15.2 MB view details)

Uploaded CPython 3.12Windows x86-64

icechunk-1.1.15-cp312-cp312-musllinux_1_2_x86_64.whl (18.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

icechunk-1.1.15-cp312-cp312-musllinux_1_2_i686.whl (18.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

icechunk-1.1.15-cp312-cp312-musllinux_1_2_armv7l.whl (17.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

icechunk-1.1.15-cp312-cp312-musllinux_1_2_aarch64.whl (18.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

icechunk-1.1.15-cp312-cp312-manylinux_2_28_armv7l.whl (17.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARMv7l

icechunk-1.1.15-cp312-cp312-manylinux_2_28_aarch64.whl (18.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

icechunk-1.1.15-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (17.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

icechunk-1.1.15-cp312-cp312-macosx_11_0_arm64.whl (16.5 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

icechunk-1.1.15-cp312-cp312-macosx_10_12_x86_64.whl (17.0 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

icechunk-1.1.15-cp311-cp311-win_amd64.whl (15.1 MB view details)

Uploaded CPython 3.11Windows x86-64

icechunk-1.1.15-cp311-cp311-musllinux_1_2_x86_64.whl (18.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

icechunk-1.1.15-cp311-cp311-musllinux_1_2_i686.whl (18.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

icechunk-1.1.15-cp311-cp311-musllinux_1_2_armv7l.whl (17.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

icechunk-1.1.15-cp311-cp311-musllinux_1_2_aarch64.whl (18.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

icechunk-1.1.15-cp311-cp311-manylinux_2_28_armv7l.whl (17.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARMv7l

icechunk-1.1.15-cp311-cp311-manylinux_2_28_aarch64.whl (18.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

icechunk-1.1.15-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (17.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

icechunk-1.1.15-cp311-cp311-macosx_11_0_arm64.whl (16.5 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

icechunk-1.1.15-cp311-cp311-macosx_10_12_x86_64.whl (17.0 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

File details

Details for the file icechunk-1.1.15.tar.gz.

File metadata

  • Download URL: icechunk-1.1.15.tar.gz
  • Upload date:
  • Size: 431.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.10.2

File hashes

Hashes for icechunk-1.1.15.tar.gz
Algorithm Hash digest
SHA256 d47b45da9ab141ce71852c4d757261a96feb1f11b3ca21d0ff445eeeddcce1cd
MD5 ab34abd811ca41f99c1bf1f6107192d3
BLAKE2b-256 5ef6c209ab26a3f11031c52d2885a6dff22c0ae1a43db63aaf124450890e2ee3

See more details on using hashes here.

File details

Details for the file icechunk-1.1.15-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for icechunk-1.1.15-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7c80749486db29f03dfdf60f1c4c236ac17f035722f55131ab8c5730c84022fa
MD5 1ff87af2df7098c1293b0992b84ec7d7
BLAKE2b-256 6fd92a0688b52dc9c7a63095abf085a5eab028e83521bb40caa01513728b76cb

See more details on using hashes here.

File details

Details for the file icechunk-1.1.15-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for icechunk-1.1.15-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9599e30d9674a84fa2da6e586c7229403b8024f6aed39282ce218944331dafad
MD5 bf84cb5e86d56ea7f34681ec6a86e759
BLAKE2b-256 52fcce1b89be770185828be59919db2c88b2ad6355c97f33cf22a45324a99823

See more details on using hashes here.

File details

Details for the file icechunk-1.1.15-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for icechunk-1.1.15-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 efb0beedc4449a862269fb85e0547112d472e55adaceb6119e8d6b00c9465a83
MD5 26804f70a6a36e0f6160b6a027ea2552
BLAKE2b-256 cbaa505feeb978758ea73fb0b83ac2cce5587612ffb3c3ea916bca9f5eb0fc6b

See more details on using hashes here.

File details

Details for the file icechunk-1.1.15-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for icechunk-1.1.15-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c0331747fb91b9144fca6ca96ee9e25c3086b5fee68572ce40b3bf0a730d70fc
MD5 0f10018b5a2ee44f4d84c4bc080a817e
BLAKE2b-256 a17087c475e2117de2151498ce170b2e8cbb9d6ace6541ad71681e6883b9bcc3

See more details on using hashes here.

File details

Details for the file icechunk-1.1.15-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for icechunk-1.1.15-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 462a8479a227268815d868e78dc36c4c7fd3a00d020c729687d510b0f5be14da
MD5 bdcac00eb33cf29a4b0ebda575f7c5a6
BLAKE2b-256 1322cb29b6c5089cc92fbe0d4b1e7522846ee3aff661e93794cb1be83da41ed0

See more details on using hashes here.

File details

Details for the file icechunk-1.1.15-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for icechunk-1.1.15-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 648e7f152a09b9ce94687fd09bf1cd8470c60bdbc90fd7b36680d9e01903537e
MD5 0acefe8996c9c79896ed11ca94a69caf
BLAKE2b-256 7e9f629ce6733aee6ab0045c7b286ce1ace6927ce3d11c4b4cb681d6c9ce6c37

See more details on using hashes here.

File details

Details for the file icechunk-1.1.15-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for icechunk-1.1.15-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9074fb9dc2915f48899440c5c6bd9a91fe6c0564cd9441289bb2c2f4c25b0b6b
MD5 aedcc739659fc2246f78a6f52c96d734
BLAKE2b-256 673a2b075d9b875e30bf3026cf33046609a0e82b22b0eb0c0dd9297899a9b49b

See more details on using hashes here.

File details

Details for the file icechunk-1.1.15-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for icechunk-1.1.15-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e70ae6d7751358f8c175aa1138dfb87eefda020988214caccb7e1b38e36607f2
MD5 d782d13a8caeb977148c9624f9f0389e
BLAKE2b-256 e0337713d8493181d37443cedfdf327752a9e9ecf68a13a35eadfdc3aa0aec2a

See more details on using hashes here.

File details

Details for the file icechunk-1.1.15-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for icechunk-1.1.15-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2bb034f98fa48d73176c28ddd29f01fe7438ded0c38a767dab164c6e2e3f9304
MD5 9a537acef2e29b1db447df8d700bff9a
BLAKE2b-256 b05da7f50540e313ea7612fc5086d5d6cc215a77d6c9936eec243c2e909fa2a3

See more details on using hashes here.

File details

Details for the file icechunk-1.1.15-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for icechunk-1.1.15-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9241b39996efcda0071f5ef3085d08fbdada3be67c7c8d60dce74dde309074d3
MD5 1563b6a4402cbfcb22a595266b3411ee
BLAKE2b-256 651889aca17e826d94edbd531deaa7d6c7af206ec766d9bb53ee1e1b7b0b1856

See more details on using hashes here.

File details

Details for the file icechunk-1.1.15-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for icechunk-1.1.15-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6cd50dacd08fb3bfeb4037d82bad105d93c8ba734ccc9dc77454f9b2e3cd9e4a
MD5 44b5b895be7c035be3d4e7a28b2f1d75
BLAKE2b-256 535755cb6e54f72b0168111c076d9462dc33da988960d25b0aad708be72e6109

See more details on using hashes here.

File details

Details for the file icechunk-1.1.15-cp314-cp314t-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for icechunk-1.1.15-cp314-cp314t-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 b8ba700c8741fb016e81ee76a0bf2a2df2c6504ebb7e384ce122f88e1c722dd8
MD5 fadb8358361d736b6ed1c35e4081f10d
BLAKE2b-256 1c66ff5fadeb4ab5a05ad04455b3121f42551f5eeb98013073d6e45b1a5889b8

See more details on using hashes here.

File details

Details for the file icechunk-1.1.15-cp314-cp314t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for icechunk-1.1.15-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 118822a8e3b735df058e03ba2e99896ebeb1ecba8791f7f97e2ecc651922fd33
MD5 4a8a0a5abb2f6f92a514f0cae1931b3b
BLAKE2b-256 384388a9206ec5c9310b77d4937e96862f285419917180ec1ab3e2a3f7555147

See more details on using hashes here.

File details

Details for the file icechunk-1.1.15-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for icechunk-1.1.15-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 293d440645fb1159860a50d496ecd86073a5c811e69207b9e9b9c0e470c28055
MD5 6556f8e676ba1ceea0b21a1797271eb4
BLAKE2b-256 c9e9b77c89cee271acd0e810bb12e1246dc11488f507f99420dfe85c8faf85e2

See more details on using hashes here.

File details

Details for the file icechunk-1.1.15-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for icechunk-1.1.15-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cdfd79c6e2fb67690c7320923ca0342c3d4bc3b79f1abe64eff840cf5713e686
MD5 8d3ba557cba0bf393809bb43bff71fce
BLAKE2b-256 550e1b5f312cc9bd6ea6cb76a7baac08d3272cbd02b53cce616197a3963a819e

See more details on using hashes here.

File details

Details for the file icechunk-1.1.15-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for icechunk-1.1.15-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 364b51772e7ca65b6590c2f22c7a895a35c0da5d3cded80f896aecc7efbf813c
MD5 889985b3dd77a6e87c8fcabb93a401ce
BLAKE2b-256 297320b27c45d8b9b401da8699a049289a1afd4c71af366c74885b4c67980e93

See more details on using hashes here.

File details

Details for the file icechunk-1.1.15-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for icechunk-1.1.15-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e2d865a24e3aa036303c4cbc4ba0dddd55346cb706be2ece5ad84aa84d13803f
MD5 b49206d13b9a9e452335b1466eca4995
BLAKE2b-256 f28c532701fb9eaf735e9a13ef7bfa062e5c87485046f7e365c761d79d962f17

See more details on using hashes here.

File details

Details for the file icechunk-1.1.15-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for icechunk-1.1.15-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5a103e0dbbfe6e043ebe2a70d198820dfd500fab7f14a2e719c7d7481c3afa79
MD5 a5d5026e79fc0a5983b05658adfe28f8
BLAKE2b-256 b0da504ca1f28cdd6573a0a4e31ed8712466b65d60b4858d3c9246248420cb67

See more details on using hashes here.

File details

Details for the file icechunk-1.1.15-cp314-cp314-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for icechunk-1.1.15-cp314-cp314-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 ba05e5b2f414485eceaa3c382e8630b9359609d2f958f75d5674db3a68405b32
MD5 ea4955360cdbc1b0cd877ad6b48de1f6
BLAKE2b-256 3a4e24e7a50fa70f67953c8f9f2a0077901ab084e3603c186840103044ce7c2c

See more details on using hashes here.

File details

Details for the file icechunk-1.1.15-cp314-cp314-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for icechunk-1.1.15-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 97c01eb25f28afa97f912332d47e346f2bd08aa8f1fb8a101d4bd913ad590688
MD5 4a941ded389dc9fbb6975846cdcb60c5
BLAKE2b-256 8bb126ca15186d681f42abd7b84e601579f69cd360bd5038fdb25c34d1589d86

See more details on using hashes here.

File details

Details for the file icechunk-1.1.15-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for icechunk-1.1.15-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 957aa6ef8df6925cfa5a35b31b7c89e26622686e33c47e663e7fac7f473e0da3
MD5 24741a2d7c9fb80cfdfe18a214619d5e
BLAKE2b-256 8da229293b28cb2a47c0b48e5d9fa375c927f67e6359cd4d45ec8bd4a5db9027

See more details on using hashes here.

File details

Details for the file icechunk-1.1.15-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for icechunk-1.1.15-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0c4d36b5865c0eeeb1d607cb3c73acc935b04370c7e67835fdae23dac925fbee
MD5 2b71b86737f5fd01f913bdaba8bca8b3
BLAKE2b-256 7a4e1fda22dfdb9bb46c229d5ca30830fe250298265c482275709563a7b55148

See more details on using hashes here.

File details

Details for the file icechunk-1.1.15-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for icechunk-1.1.15-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e996675bfd087c6b6fc0c4d70754a3351c5062b7f7756f05de4e904729795bf3
MD5 e46cca96403eac2711b44a11b6cd7cbb
BLAKE2b-256 455c1fec5db93895db3fd058fdfadc9a7c1fc7e4d28c4a88984e2819865a63d8

See more details on using hashes here.

File details

Details for the file icechunk-1.1.15-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for icechunk-1.1.15-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0ff5c9377ca58f0e9971d34dfe4eee74a95b93a94f6e6bc0a9e64faeef2dbfeb
MD5 1d6cb73535f54d2298636765458c4709
BLAKE2b-256 e731ce821ab66ab4902bb15742792852dfd02c75d7d55c9e4ccf14e69ca9a090

See more details on using hashes here.

File details

Details for the file icechunk-1.1.15-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for icechunk-1.1.15-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5ead13a7c716aebe44c3a66a9f144c3b787f025a93a8cf4b5e12d97085f5b845
MD5 3fbcb76d10021f87a4290bec96bb0f23
BLAKE2b-256 966a599501988710d87bd7cf351501cf1768cda64ff5e5998e0b6947862717b8

See more details on using hashes here.

File details

Details for the file icechunk-1.1.15-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for icechunk-1.1.15-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e899e582e8a9e4d1d47c8638085f5a03fffaa493acc2e3b39a0be2e2a4cb201f
MD5 42f1e95d3352416c89711c9c127ce8f2
BLAKE2b-256 deca3a05d13f6de42e7db9652b5ca389204b1baa048dd36f32e57b60960bf3e1

See more details on using hashes here.

File details

Details for the file icechunk-1.1.15-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for icechunk-1.1.15-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 07efc7e3d688cdd11502ee2f29981ea72abdb3f9a57ad047457a9260c07a5d60
MD5 bd9c659b34afc8911dfddff27b9166de
BLAKE2b-256 01dfd963cbff10f80f7494ca1a779b2e85aaaac52c8f3e89c472ae108c0a0612

See more details on using hashes here.

File details

Details for the file icechunk-1.1.15-cp313-cp313t-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for icechunk-1.1.15-cp313-cp313t-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 6b8f74a5b74000a922629c2c9d76150d6c0f45130db3a49a0b17875e41a31dea
MD5 061e7842bf0c2526b7ba38175f9e98b1
BLAKE2b-256 33796a3f10f3715f41a26255fa069265fe5a27dec29a17aeb98deb4ec56735c4

See more details on using hashes here.

File details

Details for the file icechunk-1.1.15-cp313-cp313t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for icechunk-1.1.15-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2e5914e6b0089644b9fd8d78478903df60b3b5c0677cdde3da1023b2abfbe31e
MD5 a4654b3a149339ecbcf2dd16faa731b3
BLAKE2b-256 419d6a30f615fbd0bf430566bf23953b667621a784f4bd8283604145df9a579c

See more details on using hashes here.

File details

Details for the file icechunk-1.1.15-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for icechunk-1.1.15-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 1f06ea0296118ec959b8f8c319210179100ef2b8ef514c950c7eca97f39e2cb4
MD5 9429dc9526d8dff6d08dd343f489b10c
BLAKE2b-256 0d8d1de0167a1b47dbfaa074ad75a78c3f0381392541705105d2ecce1e88ec9f

See more details on using hashes here.

File details

Details for the file icechunk-1.1.15-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for icechunk-1.1.15-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 419971c86a93572344433c4a2a829179cea2b5d99b20d665244213f0247a4b91
MD5 94785cc5ec974b8fef5fb7de9005b1da
BLAKE2b-256 49fb85962bb8b7ab39ed4c62b964c7dc307e1c1bfd260614393af34963f3646e

See more details on using hashes here.

File details

Details for the file icechunk-1.1.15-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for icechunk-1.1.15-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 414e1d6d42d16fe399d18609a8cd97a24c6acf5760feabb9faf7b2c0294d7322
MD5 b5a32f6f9d607d017c9e53e0d28acbfb
BLAKE2b-256 0c112bf4404db56eb9f1cdc436e69dcd55f768011d8c6377f3f2990cf66b66ea

See more details on using hashes here.

File details

Details for the file icechunk-1.1.15-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for icechunk-1.1.15-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c47db2917d4049bb22826d03270650a294f81a5ff34d1701736671668bd10387
MD5 b101a2b5d2fce9588a8e2706614e5973
BLAKE2b-256 769c4a6b59958ce82c12cde79756cad21d82217ea373f9e4210c7ef00a20b524

See more details on using hashes here.

File details

Details for the file icechunk-1.1.15-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for icechunk-1.1.15-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 facdeb49d1290fe535f1a34da3fe69f464e657940f72abfe81c6cb1f7a4bd72f
MD5 05d7411f8ffd39e6ff90ae72cb8d2299
BLAKE2b-256 a60641a8a24a0fdede67200357dee16b4f1e8a824febd8aa1da1cd444f67fbc7

See more details on using hashes here.

File details

Details for the file icechunk-1.1.15-cp313-cp313-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for icechunk-1.1.15-cp313-cp313-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 6c51d6f4d89a0564e2befe060076e53725bd6270680d4611626a436b7dc0173f
MD5 c66fc59b675c8ff281f2f0fb2f0efb60
BLAKE2b-256 1c4635ac930e352fe99c84f2dee8a5826f2a98801f4e96bdcd0e24162fa8d972

See more details on using hashes here.

File details

Details for the file icechunk-1.1.15-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for icechunk-1.1.15-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e7d13ba3dd4bac6d74322826c7f5534a03f46ac22971b37ac8f9707c05d0c00b
MD5 a1563665e55af40b16114258579c7990
BLAKE2b-256 6c89062ceac9c943046f55ec5a2944ea2d2d82baefca133375dec7b9157b8acc

See more details on using hashes here.

File details

Details for the file icechunk-1.1.15-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for icechunk-1.1.15-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c9e0cc3c8623a48861470553dbb8b0f1e86600989f597ce41ecf47568d8d099d
MD5 5f93b3f1cae7fa30634444c2ba4fa0f6
BLAKE2b-256 8cd7db466e07a21553441adbf915f0913a3f8fecece364cacb2392f11be267be

See more details on using hashes here.

File details

Details for the file icechunk-1.1.15-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for icechunk-1.1.15-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d68e1bd09b08173550da087128c8fa5f91aac1ce12db4a70d9cf163ee8f195ce
MD5 25d55e4d69c74c2b4ffe1cb741be46cf
BLAKE2b-256 833d9b5073cd19a7e9a1c2785dab028e9ea5ef23ceb011cc03aaa1c8d2f87af6

See more details on using hashes here.

File details

Details for the file icechunk-1.1.15-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for icechunk-1.1.15-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ba9874cf92e68982d5354035eefd494ba0a610134dc4b46be810af220db3c577
MD5 f079fb18bf2663694d9298914937a9ef
BLAKE2b-256 cd7c95768aac9a45c97777e968bdda5225533c1cb898093256a585c21585cada

See more details on using hashes here.

File details

Details for the file icechunk-1.1.15-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for icechunk-1.1.15-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 75db280008bc3b03f22a6095f3250ee5e66993e5ef3c6459260e70ded2adeff3
MD5 bab871c4a8cefed7362376986a04627f
BLAKE2b-256 e731ed3e12bba5867b796eb802e93e863bc6f8670715a83bbe7a15cf06e485dd

See more details on using hashes here.

File details

Details for the file icechunk-1.1.15-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for icechunk-1.1.15-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 33887d8a121c295266aa404d604dbdf311c9c38c64e1af4079a76491627d9370
MD5 5bee3ed89b25cf7ad7009aa8abbb77fd
BLAKE2b-256 e48ba31c305cfc61a7a9efaee083b00a627eee23bb6ca89309b1fa482b971086

See more details on using hashes here.

File details

Details for the file icechunk-1.1.15-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for icechunk-1.1.15-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d0c36abfc8d2e2401d34477fe0726272fa0139a56167eb3a80efbd2cc37ed3ac
MD5 24d0246ef66884cc0c56540dbfcbcef7
BLAKE2b-256 7b748e4daffc27c5d03559808ee5b9621c36f41ab571ed32e71dc523cfd247c9

See more details on using hashes here.

File details

Details for the file icechunk-1.1.15-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for icechunk-1.1.15-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0b267bb1e61b84c24fc1312e50c0c2a2e1da6789a6fdd0a7252c367d696da855
MD5 9b63e7c89e60b5ebfec21561d2319334
BLAKE2b-256 626737480550695f26dcb36e78ed5aad41d4ee2298feb178ec10ac7d9f27068e

See more details on using hashes here.

File details

Details for the file icechunk-1.1.15-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for icechunk-1.1.15-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8c89fe6f541527c3c189a9fb61c304807c95ff3ba581ca5439f8c03d8dd07b01
MD5 88556c401c7eb937bb73c9765571014f
BLAKE2b-256 47cd104f3a5296252557e65d0cd5e28cdba15c4369f2ecef51752a9935b8aad2

See more details on using hashes here.

File details

Details for the file icechunk-1.1.15-cp312-cp312-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for icechunk-1.1.15-cp312-cp312-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 7c321239e40954d04dfaf07084c65a1aaca23f2849af3759af97ddba0c379dd4
MD5 c95dfd59bb6b1dbe816b719262971484
BLAKE2b-256 dffaedaa147301b89065fc8c7d089216f7f7f79892b8db980a200fc35bb39483

See more details on using hashes here.

File details

Details for the file icechunk-1.1.15-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for icechunk-1.1.15-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b657db4c5ed472a9a374c043cb0cc571d6503bf893a22fee98a2b15597ec82ad
MD5 cd60af37242190069cd6d59012a0dc6e
BLAKE2b-256 a5a8096ebeced7c179d35a1bf3dc0694e8b84a8c7598d997c297d71772a4263b

See more details on using hashes here.

File details

Details for the file icechunk-1.1.15-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for icechunk-1.1.15-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9ba81e79c03218886c6fb6837b041064921fadbdf72bc0ece0990acb8fcb5a5a
MD5 c5582511212295a5d57f863a1faf3529
BLAKE2b-256 09b2889a7c0dd39dae2277770f84b28edf9a215824d7f7e3663f8ab36ad37135

See more details on using hashes here.

File details

Details for the file icechunk-1.1.15-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for icechunk-1.1.15-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7be73e59956c05c10ab81ea67213d0c199f49105f73b3a78fdf8f75ac49a5aad
MD5 e70429fe5b1630f7f63dd57d9299e5b9
BLAKE2b-256 67babf4dbf05f555c610148a69e739b9915175935ee4a7dc2f3162158faf796f

See more details on using hashes here.

File details

Details for the file icechunk-1.1.15-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for icechunk-1.1.15-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 84f480c87f778164347d4c6ae07e3249f76ae92ef9ca02980d7890c06229ee96
MD5 26345c1f48f8b8d28e433e7b9083b18a
BLAKE2b-256 f5b7d6dc506eb6a5ab203d61ff4d4b6756f6d4843aaab02c1fd95994070c77a9

See more details on using hashes here.

File details

Details for the file icechunk-1.1.15-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for icechunk-1.1.15-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b31fa53328b5668da37cc68bb277628b8066d4a45b8282e86bf53b0d40a90a1d
MD5 ee5490aa719b0b1beb9740cea3257d01
BLAKE2b-256 2bcbd659b42cc7e1bdf799b95b15e288377f16b4f5417d40053823d58a992e95

See more details on using hashes here.

File details

Details for the file icechunk-1.1.15-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for icechunk-1.1.15-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8325f663346827dc6b8faac92befc53fea34ed8b204b060b6d5d1a792c030f68
MD5 416156aff3673e6c8fb86cd01f4b0c81
BLAKE2b-256 339c5e2d2b2d52daf7deeb4ede082f970cb1dca07ae417ad02c036b3a917029a

See more details on using hashes here.

File details

Details for the file icechunk-1.1.15-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for icechunk-1.1.15-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7e565091350a86df12cd2dbf4d68105e03dfacd4f219447fa75cf544b825f3ae
MD5 1761a0b0ef9b3ea4fdfe6ca350bad7e9
BLAKE2b-256 70c51a2734762b174da5ace2899c6425bedcccc8f40b652457001862956445fb

See more details on using hashes here.

File details

Details for the file icechunk-1.1.15-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for icechunk-1.1.15-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3b7c787b983ab5455a227725376d2b3fd27aba3b01eba661cb51d42def3d2082
MD5 44e031cdc589b0cef79b35de7b912b46
BLAKE2b-256 3d182a2dea59a55ce58df195295ea08a75921b006df6f459eca68978d65aca4f

See more details on using hashes here.

File details

Details for the file icechunk-1.1.15-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for icechunk-1.1.15-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f95324a6a6ee5d19a2a81185ccdf0adb41ec24da495e725cb047339bf984a0e7
MD5 87ae4de11297f475f518acda970c4620
BLAKE2b-256 76c24e34bc86f0f88e20ed5af66d032654fefb0bfd004dcd65d3f69d13908fd8

See more details on using hashes here.

File details

Details for the file icechunk-1.1.15-cp311-cp311-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for icechunk-1.1.15-cp311-cp311-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 a4e9306e08c4e8d9e345f455b103527c11c5cfdb66695a3b175eab1d501e9130
MD5 8909c6a5d1b121994208043aa4516861
BLAKE2b-256 f2e7bd28fa61a791f2014b9e5f123b534592774c2c6abc60403011b3fec4bc1d

See more details on using hashes here.

File details

Details for the file icechunk-1.1.15-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for icechunk-1.1.15-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 599535ef9efbee483f298fcdc375aabfb956c9910070f481e409bd0a66929a8e
MD5 3a7cb048d4a66343eeff5cfdc7da6d81
BLAKE2b-256 cd0abf66fff091bb3e9bc65856f8b2fa4e01d64e9398ba4513d340241fe932ff

See more details on using hashes here.

File details

Details for the file icechunk-1.1.15-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for icechunk-1.1.15-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d6b86e17f77b27d3577df4a9f54690dc2b16a59b60dd35c20a11cf421c19668c
MD5 fffad132a2e7396190e1a32005ad263e
BLAKE2b-256 4572fb0c3d2b98d8ab010392613724ed6b99195c2e9e3f9f5515562940dfc3d3

See more details on using hashes here.

File details

Details for the file icechunk-1.1.15-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for icechunk-1.1.15-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e8f1c35bf2050ef4c8e8cc28e61db54acad2e4c221c50084a764d395ae8a6c67
MD5 2d35ac4984b9d9336e0d78e4c14a1b4a
BLAKE2b-256 0e544197936919e51aacce523866b25fcffbcc45e98fea28cf72b8960e64a5f4

See more details on using hashes here.

File details

Details for the file icechunk-1.1.15-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for icechunk-1.1.15-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9cbf544854c74fb182f20fdbbf834c41515ba0bb5ccdbfcdde5cf44d3c98c72e
MD5 c8cb4dc1f2834cf043cfa064123f127a
BLAKE2b-256 fb79110f85f975da037de2770216fbfef98a22d7b5fe0637ed81a03c1655472f

See more details on using hashes here.

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