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.17.tar.gz (440.7 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.17-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (19.4 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

icechunk-1.1.17-pp311-pypy311_pp73-musllinux_1_2_i686.whl (19.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

icechunk-1.1.17-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (18.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

icechunk-1.1.17-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (19.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

icechunk-1.1.17-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl (17.9 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARMv7l

icechunk-1.1.17-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (18.9 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

icechunk-1.1.17-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (18.7 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

icechunk-1.1.17-cp314-cp314t-musllinux_1_2_x86_64.whl (19.4 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

icechunk-1.1.17-cp314-cp314t-musllinux_1_2_i686.whl (19.1 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

icechunk-1.1.17-cp314-cp314t-musllinux_1_2_armv7l.whl (18.1 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

icechunk-1.1.17-cp314-cp314t-musllinux_1_2_aarch64.whl (19.2 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

icechunk-1.1.17-cp314-cp314t-manylinux_2_28_armv7l.whl (17.9 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARMv7l

icechunk-1.1.17-cp314-cp314t-manylinux_2_28_aarch64.whl (18.9 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

icechunk-1.1.17-cp314-cp314-win_amd64.whl (15.9 MB view details)

Uploaded CPython 3.14Windows x86-64

icechunk-1.1.17-cp314-cp314-musllinux_1_2_x86_64.whl (19.4 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

icechunk-1.1.17-cp314-cp314-musllinux_1_2_i686.whl (19.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

icechunk-1.1.17-cp314-cp314-musllinux_1_2_armv7l.whl (18.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

icechunk-1.1.17-cp314-cp314-musllinux_1_2_aarch64.whl (19.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

icechunk-1.1.17-cp314-cp314-manylinux_2_28_armv7l.whl (17.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARMv7l

icechunk-1.1.17-cp314-cp314-manylinux_2_28_aarch64.whl (18.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

icechunk-1.1.17-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (18.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

icechunk-1.1.17-cp314-cp314-macosx_11_0_arm64.whl (16.6 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

icechunk-1.1.17-cp314-cp314-macosx_10_12_x86_64.whl (17.7 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

icechunk-1.1.17-cp313-cp313t-musllinux_1_2_x86_64.whl (19.5 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

icechunk-1.1.17-cp313-cp313t-musllinux_1_2_i686.whl (19.1 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

icechunk-1.1.17-cp313-cp313t-musllinux_1_2_armv7l.whl (18.1 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

icechunk-1.1.17-cp313-cp313t-musllinux_1_2_aarch64.whl (19.2 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

icechunk-1.1.17-cp313-cp313t-manylinux_2_28_armv7l.whl (17.9 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARMv7l

icechunk-1.1.17-cp313-cp313t-manylinux_2_28_aarch64.whl (18.9 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

icechunk-1.1.17-cp313-cp313-win_amd64.whl (15.9 MB view details)

Uploaded CPython 3.13Windows x86-64

icechunk-1.1.17-cp313-cp313-musllinux_1_2_x86_64.whl (19.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

icechunk-1.1.17-cp313-cp313-musllinux_1_2_i686.whl (19.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

icechunk-1.1.17-cp313-cp313-musllinux_1_2_armv7l.whl (18.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

icechunk-1.1.17-cp313-cp313-musllinux_1_2_aarch64.whl (19.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

icechunk-1.1.17-cp313-cp313-manylinux_2_28_armv7l.whl (17.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARMv7l

icechunk-1.1.17-cp313-cp313-manylinux_2_28_aarch64.whl (18.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

icechunk-1.1.17-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (18.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

icechunk-1.1.17-cp313-cp313-macosx_11_0_arm64.whl (16.6 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

icechunk-1.1.17-cp313-cp313-macosx_10_12_x86_64.whl (17.7 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

icechunk-1.1.17-cp312-cp312-win_amd64.whl (15.9 MB view details)

Uploaded CPython 3.12Windows x86-64

icechunk-1.1.17-cp312-cp312-musllinux_1_2_x86_64.whl (19.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

icechunk-1.1.17-cp312-cp312-musllinux_1_2_i686.whl (19.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

icechunk-1.1.17-cp312-cp312-musllinux_1_2_armv7l.whl (18.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

icechunk-1.1.17-cp312-cp312-musllinux_1_2_aarch64.whl (19.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

icechunk-1.1.17-cp312-cp312-manylinux_2_28_armv7l.whl (17.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARMv7l

icechunk-1.1.17-cp312-cp312-manylinux_2_28_aarch64.whl (18.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

icechunk-1.1.17-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (18.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

icechunk-1.1.17-cp312-cp312-macosx_11_0_arm64.whl (16.6 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

icechunk-1.1.17-cp312-cp312-macosx_10_12_x86_64.whl (17.7 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

icechunk-1.1.17-cp311-cp311-win_amd64.whl (15.9 MB view details)

Uploaded CPython 3.11Windows x86-64

icechunk-1.1.17-cp311-cp311-musllinux_1_2_x86_64.whl (19.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

icechunk-1.1.17-cp311-cp311-musllinux_1_2_i686.whl (19.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

icechunk-1.1.17-cp311-cp311-musllinux_1_2_armv7l.whl (18.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

icechunk-1.1.17-cp311-cp311-musllinux_1_2_aarch64.whl (19.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

icechunk-1.1.17-cp311-cp311-manylinux_2_28_armv7l.whl (17.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARMv7l

icechunk-1.1.17-cp311-cp311-manylinux_2_28_aarch64.whl (18.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

icechunk-1.1.17-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (18.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

icechunk-1.1.17-cp311-cp311-macosx_11_0_arm64.whl (16.6 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

icechunk-1.1.17-cp311-cp311-macosx_10_12_x86_64.whl (17.7 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for icechunk-1.1.17.tar.gz
Algorithm Hash digest
SHA256 87b12d9b0d84eda5b975bba68fa5a0b284c8f4bd501b2e1acd84b137c9a01a99
MD5 2635d52aebe42236faa846b06615091d
BLAKE2b-256 41d3267f29e15630173ecabc0f38738f5d5991f66c78e837d98b69879812d97d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.17-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f0b9748a55af50f40c0731fcc317ba217a975499ca4023bcbff71a8ea879d360
MD5 c67b9dd3f276b0f826cb6118ae3df036
BLAKE2b-256 51423492f4e6dcd0d5f5f8b7e498ecc766999c8fd2e968cd4c7e59c2254ac96d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.17-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 44f253ab7d0cf3b7738419553cf77d2469bf49bf41510f719ffcbde44ef09f9a
MD5 1004fed8545ecdc78c5ec5c884a3c110
BLAKE2b-256 204db2d6cc732469ff12e5933f520565c13c7887f6283cfd95f2471308479426

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.17-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4e9c45783ed29e7b33942875a9bbf809d064a49ae68d495dde8a4df8339fb2a9
MD5 dc23f9f6b2fb0f3f597f87902e823d77
BLAKE2b-256 aa025eadce4fa8dac3751b3dfd3e499a617e9526a96fa4380f76a8e2aa70660a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.17-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ad5974a883892529a3b29617aed28289e2ef3ab490eddd63d53f78d20a45879a
MD5 0269041111592d3b0c0944d7c8f7d2d7
BLAKE2b-256 e5b0cb9b28e4a8ed82a96b75014baf5d3f83d6c1c593624bc1556beab140687d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.17-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 ae72264894c3e1c0d591aef3224398587593d6a3a0f6ccb5ad2d93c35b098673
MD5 6b97fc32edba951019fbd06c849182d9
BLAKE2b-256 d48ecc382e298529e1c13b2be25d0892457b03d9f67a700add65a3fc3ce66cbb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.17-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bafa8bcf74aec0a695d720ea27d014edb15c28e4974181e54cd1969bcd6157e5
MD5 8c5bb6c8746695bfb54954f6b981f4a7
BLAKE2b-256 a742c1d731d6f8bb30f97ef34a8446fc6fe1db8fe172d3dcd65a67adebdca4a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.17-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fef989f06df32bba22b5fff63394e258a8d842666864452d4895cc5942600247
MD5 7f1ff74ca1754d44b88ea6a28e41a30e
BLAKE2b-256 33f61ed6e9b823af0f81f508da3cdd89ae75c3fd6418727a41380dc4e4996473

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.17-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d106c84656c1e053e436c010b04b24ae0170c7aa80af7e5735f29bf831a13347
MD5 e42072391d52a762dcc24583c0b49f5d
BLAKE2b-256 a7eac30a186d4d6049069a7d62af6c64d6dd1d3d439d3884dbeb09e3108e2716

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.17-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cfb2377354f36ce17dd56bc6464a35d6d91e79914d85da203b8cd7611a513fdc
MD5 83c3c05e18b9a438920b9094046ce88a
BLAKE2b-256 9ab7e0a671077227985f077d57a90c4fbd186e07148b4639c7995dd094557e6e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.17-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 51a796cbf4792329af18c85d1a7a85fb8818f646682e44f6584bffa66dbde2b7
MD5 156af9cbbe53b373622819dd98c7705c
BLAKE2b-256 18fcd7f84c4cd188d48953254a4bc3141eab6652eb71b7a96909f8fb4ef7a60a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.17-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 efa1efdbd79b6d88f3e76595a78f3e8ec617d30cc8c0126c59d88bd894bcff06
MD5 c857320afcea2b1d2ba7088ee7057b12
BLAKE2b-256 e879a0dc1e6a8a725ba7cbc6aaa025bdccd1599928c3a67206d4c608b732f28c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.17-cp314-cp314t-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 62765e68fb3fb0cc0bee84f9e8ac6042a5a6088c18c4e4870361c92c7fd436d5
MD5 caacf785db36dafb39b7e5d4d07edf9b
BLAKE2b-256 b82c24f90bd82f956ea01a6564458642e8d8c138ff99ab78c1909c5264b2ddcb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.17-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 be5b74b8a2b92aea3e200af56bffdfa635db2de3e38fe156af49e485ccbf07d3
MD5 5236d8f96ee68ebd0dae1297e32772dd
BLAKE2b-256 d57b26c18a1c92ed88c51474ac0f9b9cc89c61f9c049ac61a4970813ea3ecf51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.17-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 c987e21681842dac6caf5dfd22f7a176d395202ca8a2997b92fb5062995e8580
MD5 bb543badc82e4a709a04d6ef27f51a67
BLAKE2b-256 f54d69541dcf468fcf9afdf285fba3fcdce842dd69f4a6db2cf727f1ea3fb39c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.17-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 24e314c7bc37776f123a1bbb3b85ba7d4999deaf88d65b94445e6598d1ade0aa
MD5 3e706ffea66ff40e8548de27034b1444
BLAKE2b-256 2d2509e237a34e3593231f2592167cba5cf1b0c3fce319600dad1b1a00fa581a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.17-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ad1941caebdd3f670a2f82bc7d9b1cf4e9746bffc4093f08707a169752005e07
MD5 5eea1525b13ddcf0e87fd52bbe3969cf
BLAKE2b-256 6cb5048d4063646f2776733b7a6154c3b62df5ca0d346df99ccfaa85de547427

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.17-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1bedb720e80632c2e844320b5e7fb8eb7572ee23a17171663957b2c6978ffba6
MD5 5df5ab90c283ddd7ca6a8c0184819d89
BLAKE2b-256 298d332bf57741fe9cd4a7f9ecc64d5998ea87e2e0f1fab097f71405c5155f74

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.17-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 93ed56dbf43f61ed12a9badf88637fea306baf898bda8c4d987ea3f0ffcc7aca
MD5 73fa2f1f1530777980981542ff3bcb26
BLAKE2b-256 84af384b7e218eb2b587f495daf9c022ad1b420ec46347efaf380466a7763b42

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.17-cp314-cp314-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 f6c4f1a80abf1f6402fcf6eefd4cedbde4a65bfc5362de34f47efc2465f963d6
MD5 d62e943c7e1d30099297ab73f62264bf
BLAKE2b-256 d36cd97b796ae211db44ee75c4b2ef17a4adbcf683d7755c91ae6e6af23b0ef0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.17-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 53047e5f172a0f7d83f4dca88ef6f4166f226490a570f0ea0de04bb2fe440ef1
MD5 3abf25d122f23ef26565108c557f28bd
BLAKE2b-256 0540d2a5896edcc620c693f6e3cdcdbea95f86439e863b4bb5d230b8f01cb954

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.17-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6284e80bd3063a7eb155da9e146b0e8916e5dba6c0cdc1b3457afd22867e91d5
MD5 89e914651e61dade7b95ad325066a3f1
BLAKE2b-256 c2ec9366d4ed55376fc77efc827fe691c89f19a0fd1d146166358449e5708763

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.17-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 153d7df37e847a0ac490d749be6fb62051268cb1666a0499cf387a5d549bb6c4
MD5 059787d2c4acb2c7fbd34e27e42d1f84
BLAKE2b-256 5dd3eb9d4fed8fe4baddcb04c66d1a752f612c659c509d73a1f6ac2b2b3b97fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.17-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 824063275b36087a8f05dcd29feae1cd6e87b53a2c513a2191d73f91e9bbe0f3
MD5 9c5d4de2022974e68be9c5a7d59e151e
BLAKE2b-256 99763d046333e9fac5948001ca39a78c59710a299c52319830ee2dae9e5a8726

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.17-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ea49009563c34b0a797521d37d5a4f97d461e035108874a0fefcf20390918dec
MD5 cdb54cdd26d2e9f703065e11ead36c85
BLAKE2b-256 c3b524128eb61533f4a24c29709e9f3b6b7a352839d382d45e4cde9a9ae409b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.17-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 36ceba72c61ea2c7b2202bbf6766a46da0a998ca66853fd90a98cfb71451ba1b
MD5 b11eebcafebd58eeb449411b45f36d31
BLAKE2b-256 ece86eafb48acfd518df8658a06fa4338b4b5a29db0af04083ebfca127a4fdda

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.17-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 edb26397f79518b3ccd4bcf090ef1a237b00493f52f09da24f37ccb11657396b
MD5 30f60cee1a847131aa0c26ab97811385
BLAKE2b-256 ae6bd74313a3bd1c61e0f4c06623f256ba93d889642e84b766d7c8d805552372

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.17-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6eec8d9c854cb6a06ad170c976cf0a87bd7724a472fc669720495051039aed6c
MD5 7fb10690ba17144646c998311109fb77
BLAKE2b-256 616ec10000830960138d5ca2353aa4df077321b0bb408fe3d6b42bcdd17ba506

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.17-cp313-cp313t-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 8238e93c0da97528bb0338cc77a619bc56123556721c0a8b2c29695315ae5d99
MD5 0f408d9bdbb59bfdd4566f5db4f074a8
BLAKE2b-256 70942fb5c12d8a8a9db4b71498f8c9b355819bfbc376088a9ca782380abf9acd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.17-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 968a2b613b976e64f57f1772ada14157632f67765b364d50944cd365b7768ae5
MD5 98ab50d27ad276f63367dc534ab42829
BLAKE2b-256 65b7c21bd1167b6984ce2fef8cc6e1aaa69535aa38fbdd1918d037cecab2e2c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.17-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 1444570a44bda72b7ee21ed0cc0194baf9d2ba7907037eb73d9e674db6b36439
MD5 e82cca3181102fee45115ba0b52eea41
BLAKE2b-256 a6b4df4afcad5e893cbf6b8ea1f187120ead19a08ffbdc490b531fa544442601

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.17-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4759fadd3a4e38d3814653d3987a571aac4daf28fa866918cfd61682315ee79b
MD5 ab78f814de99b5231e85dcbdc5d39d3a
BLAKE2b-256 ff71c588b4b005a61c7935078b30cf92a3910878d3d9f8413db6e6e64c862cde

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.17-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c6f278edd6cc533b4f4ba2a34b25e81fd2f19177a24d9986ca501ac236d4450c
MD5 2925443294e8b79d47c228cc0b9d435c
BLAKE2b-256 6952ef11dabbd9165974e62dabbf306a50be25fc4f35f7b2a53f74c7527c7a58

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.17-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 df134a4f83c251f40db678305b2a6294580d1fabcb3562964d7a7197f2677f06
MD5 50c1b61bbbf86d3102803d6ac3426414
BLAKE2b-256 0b8ad64f430addbc9550ceed76981aea69c4f8bdde1797f994434b163ed0c6a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.17-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6e8d367c573b090be78d7e5e5fdef30b24d08c6cfc072a057d3b4ad70bd0459e
MD5 a10c09fb0c2678044b4b989225eb64ae
BLAKE2b-256 ca93d1d5baf8b18865e63a693a3260778c5581bc49130e674f7bdaa1cb0211d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.17-cp313-cp313-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 5a974b408a9d557d99c94e474e79f340b1a454dcb3913a73b092f5d3ac1fe161
MD5 838cde5342a3ed8878d18dcb3c58b102
BLAKE2b-256 29057a4dcdae5fbe5ac1cabe2243e68742040cad080cca7c734d52c6af9f5a2f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.17-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b42cc4bea1b0d2e5dbc0c0d8523e40d870e1269c1b5abcb7ff9f6a7ac994614d
MD5 0dfd6b0e5f56e8e8985741a53a9ae311
BLAKE2b-256 ce10560a7b675b3241ea4038189cc60682342d8358cd6c2d9be346dfa1f368f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.17-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4b7fa8cbe79b2ef7749837d2417b12bd115ff730149bdb1ec028e740b55c455b
MD5 6484341be5fc992c521cc8af5b70ebc5
BLAKE2b-256 2cb2a9370c710fdf5e18797925ed526fe82c90aeae9937a1c74f509fdd9ccbd3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.17-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d12a7d90741908dcd1e74d0e99335c71df72b49c3cfc7b5ffd9178b7d79aff22
MD5 1e1f12472f5466cb51c722e0901ae025
BLAKE2b-256 9d3f9c6d6f600f1c9d21b2fe2e48a4a3c6a6f0c9aacc6376939f8d4435d2a077

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.17-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 59cd5c34e1a16c186a0b91758d2c150110dcbf397e1067db0c90dd149f2851ba
MD5 29d935cea52f30006ca17f80d4e543d8
BLAKE2b-256 be00b8adbb424aa91c8f8f739dbdf4027c42d1a3a46e1bf92f4072db7db1330b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.17-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 2873f3ebbbd8e3dbfcb8274bbb57650aea7e50d67e296387e3d0d7fe86e60666
MD5 b2d9715956c293516bacbae1b51ef444
BLAKE2b-256 74358b15ca5546240ea6ba44cd4a333948eeccce1e0e50d916937bfdb08c3f81

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.17-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 51fc3748bf77f4fc7f21edd5bf721e4902dbd045f65ac8a8977241c126861225
MD5 3f6c0f48ad8db2366e151f9049a4b029
BLAKE2b-256 65e907ae8b311ab50fafd4e88a547832dbe50857b933c7383f81faea1fe1486f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.17-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8f75eae83c6488498586402266b126aff511d8a06f00e45be95ee16db43c090b
MD5 5cb1d5c6225ac9b6e9c444a09a985e74
BLAKE2b-256 b1d9628d8c6300d41b3e577c0aedf551f5b2b9d471fc838db759f8fc625f17a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.17-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c8efa702b18eac13c1549310e0a3c96036cc70eba98f0932514f2461b8369a94
MD5 5d316157bbd873448b9a83093968f847
BLAKE2b-256 183ccf18d7e7d4dd1fc7559ae28e00d1d0f2cdcedb1f9bf536f6375a0f04221e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.17-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3316f771a3f7716051ea67dbd4480945cad4728a623e8fe7bae59b514030fb19
MD5 b86d50017f12ce3298526b50b72a4337
BLAKE2b-256 2e6ddf4c2060ac50a35130c6fd49059eddc297d38fe3040035b9dd9c2d04bbd8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.17-cp312-cp312-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 26245a22ea25452322662cacaa349bd97dc50edd26d7142d36a75b615a8217a4
MD5 776572f0122469f210462afa2e795bc2
BLAKE2b-256 d23caec506aa5787c2d8b4568c9e6f97fed81136a60fb6d2ccad6c334bcb083c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.17-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2565571f7847e545db58459a800335e30ff8c4776b9bfcb462e41ab6092974f9
MD5 c2f94d92a856705343f776244fb0afff
BLAKE2b-256 02f95321da6f0fa879c2e97c0de1ebe9c886c630a675ec6c3eeca91e2972fa1f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.17-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 df13354c7a708afc0af1e6895265e79b79477c1973c901e0724a7f145773f385
MD5 035fdcdcdec5e63b455fddedd1a49863
BLAKE2b-256 a01ef81cafa9133a76e4361d7f8874c3a2f93a49cc100426959d7ac241507e46

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.17-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 23c7c24208f458f368d175dbec84d9597341c437fca4980b8cce0d3007d9cb11
MD5 8a56364407bd098e4e80a2f53dc37614
BLAKE2b-256 f188f8faf27ab28929a492135e4d2fbb53bd79808893305e27a20d06422bd065

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.17-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9a8acc98addfd10b54d6c30dce9f8cdd52393997ab2d937df04f19a453e8c72f
MD5 ae1fb8995f24c39beb33220a43937d52
BLAKE2b-256 f19853476bcb2fae84a06208ca1d31e525591b06f305425fb627e1c20d9b0ff7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.17-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 75c609d63dc938a5b6e88f3ba456e90e5a2c50d6be727ba281b8466c3bafd4a4
MD5 c71c783955862ce378f6440f1b987c59
BLAKE2b-256 629e0f8a8d9f1dbe541a15f6c7f7e85da6a706c9d715a8fc89321f861ec974c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.17-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b9331687eba0667dea24da773807e2022d720d81d2aa21b04d7fd8580ae5c349
MD5 0203c074ee363100ead868cd9bbc7f15
BLAKE2b-256 ceed9e2f193a55fcb669daa6544c6c007bb64e180f22d8acc0bbbab2c8f5e707

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.17-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ee3cdd20e0cb7395dae4583975969daf0eaa0c8ffea4ba51820f4395abbd3afc
MD5 b4bbb8b01c63800554fbce2a457ad0ee
BLAKE2b-256 576aff778aeb3e9d4701b65936086a18ad30fc3e4a05d40645b9203b41549dfe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.17-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0bfccd082e0a6b67a5dc0538c22650eb0f764e38434a622eea79151fad66210f
MD5 e775ab75146ef7f684c43c1ed46785ef
BLAKE2b-256 1af598aefd499efe2c705f1208ca521f0d48d9ce08daf584d524f61bb82a943e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.17-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 908e51239d65609420db79d63927f7559ac10f6d326e8fa55f26be36f6d263a1
MD5 0392544ca7c8ddc9b7b0621681d97d6e
BLAKE2b-256 bf2785fb3f603f05f804d88c1a4dabac46eddfb60f4ca5cf958dfac63be66dbf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.17-cp311-cp311-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 fd07676d3cb57559f6211a62fe5f280d5b21765695291a92ae5494e918450ee9
MD5 da06849206e3a8877dcc708b25c1c615
BLAKE2b-256 f9693ba68acc66563695e5506774abecf583775895d2d04a579c1d0a11a36178

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.17-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0374730c6ca917512f1cc407380729b13bf371d400231c4a1c1ff95e4397a780
MD5 95dc2561b209aead45771a8d2ecf7616
BLAKE2b-256 3c323d4f86dc3a5d6569b91fd5b6b6526aa823badfb3008382c0faffeff92b5d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.17-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9bf13b1a44be8871671f6119d09237c4211c332f7d3097c7b3356d5ea6f855c4
MD5 38bf92345a77822fdcef84d22a1ff0c6
BLAKE2b-256 b4ca897e2377c6d4681713fc75a9941ab4efad80e64e20297aa467778c4127ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.17-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b3904fbb3333e1c9a3422c3bea2550a65e82d9bc62d9b9eb5613203d3ceb52e8
MD5 bcc268b0b50b2294e997ddd917a60295
BLAKE2b-256 387fd9909e1e11deea115a1f31e4501e5efe810fb2769d2404c0cd395d517c4d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.17-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 32ff99c9634a5ecdb89b537ea6ac8356c0b3215d237aedbfb4a9c7155b9fb381
MD5 b95ee6783a0c1ccc8830fbcedaf8fc2b
BLAKE2b-256 aad1b565342c60f705c77111f61895c7e8e1eb74fe81c6cfdb78d5063fc712ba

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