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-2.0.0a3.tar.gz (2.8 MB view details)

Uploaded Source

Built Distributions

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

icechunk-2.0.0a3-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (16.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

icechunk-2.0.0a3-pp311-pypy311_pp73-musllinux_1_2_i686.whl (15.5 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

icechunk-2.0.0a3-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (15.4 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

icechunk-2.0.0a3-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (15.6 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

icechunk-2.0.0a3-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl (15.2 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARMv7l

icechunk-2.0.0a3-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (15.4 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

icechunk-2.0.0a3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (15.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

icechunk-2.0.0a3-cp314-cp314t-musllinux_1_2_x86_64.whl (16.1 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

icechunk-2.0.0a3-cp314-cp314t-musllinux_1_2_i686.whl (15.5 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

icechunk-2.0.0a3-cp314-cp314t-musllinux_1_2_armv7l.whl (15.4 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

icechunk-2.0.0a3-cp314-cp314t-musllinux_1_2_aarch64.whl (15.6 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

icechunk-2.0.0a3-cp314-cp314t-manylinux_2_28_armv7l.whl (15.2 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARMv7l

icechunk-2.0.0a3-cp314-cp314t-manylinux_2_28_aarch64.whl (15.4 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

icechunk-2.0.0a3-cp314-cp314-win_amd64.whl (14.7 MB view details)

Uploaded CPython 3.14Windows x86-64

icechunk-2.0.0a3-cp314-cp314-musllinux_1_2_x86_64.whl (16.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

icechunk-2.0.0a3-cp314-cp314-musllinux_1_2_i686.whl (15.5 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

icechunk-2.0.0a3-cp314-cp314-musllinux_1_2_armv7l.whl (15.4 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

icechunk-2.0.0a3-cp314-cp314-musllinux_1_2_aarch64.whl (15.6 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

icechunk-2.0.0a3-cp314-cp314-manylinux_2_28_armv7l.whl (15.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARMv7l

icechunk-2.0.0a3-cp314-cp314-manylinux_2_28_aarch64.whl (15.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

icechunk-2.0.0a3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (15.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

icechunk-2.0.0a3-cp314-cp314-macosx_11_0_arm64.whl (14.1 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

icechunk-2.0.0a3-cp314-cp314-macosx_10_12_x86_64.whl (15.4 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

icechunk-2.0.0a3-cp313-cp313t-musllinux_1_2_x86_64.whl (16.1 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

icechunk-2.0.0a3-cp313-cp313t-musllinux_1_2_i686.whl (15.5 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

icechunk-2.0.0a3-cp313-cp313t-musllinux_1_2_armv7l.whl (15.4 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

icechunk-2.0.0a3-cp313-cp313t-musllinux_1_2_aarch64.whl (15.6 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

icechunk-2.0.0a3-cp313-cp313t-manylinux_2_28_armv7l.whl (15.2 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARMv7l

icechunk-2.0.0a3-cp313-cp313t-manylinux_2_28_aarch64.whl (15.4 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

icechunk-2.0.0a3-cp313-cp313-win_amd64.whl (14.7 MB view details)

Uploaded CPython 3.13Windows x86-64

icechunk-2.0.0a3-cp313-cp313-musllinux_1_2_x86_64.whl (16.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

icechunk-2.0.0a3-cp313-cp313-musllinux_1_2_i686.whl (15.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

icechunk-2.0.0a3-cp313-cp313-musllinux_1_2_armv7l.whl (15.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

icechunk-2.0.0a3-cp313-cp313-musllinux_1_2_aarch64.whl (15.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

icechunk-2.0.0a3-cp313-cp313-manylinux_2_28_armv7l.whl (15.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARMv7l

icechunk-2.0.0a3-cp313-cp313-manylinux_2_28_aarch64.whl (15.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

icechunk-2.0.0a3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (15.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

icechunk-2.0.0a3-cp313-cp313-macosx_11_0_arm64.whl (14.1 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

icechunk-2.0.0a3-cp313-cp313-macosx_10_12_x86_64.whl (15.4 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

icechunk-2.0.0a3-cp312-cp312-win_amd64.whl (14.7 MB view details)

Uploaded CPython 3.12Windows x86-64

icechunk-2.0.0a3-cp312-cp312-musllinux_1_2_x86_64.whl (16.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

icechunk-2.0.0a3-cp312-cp312-musllinux_1_2_i686.whl (15.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

icechunk-2.0.0a3-cp312-cp312-musllinux_1_2_armv7l.whl (15.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

icechunk-2.0.0a3-cp312-cp312-musllinux_1_2_aarch64.whl (15.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

icechunk-2.0.0a3-cp312-cp312-manylinux_2_28_armv7l.whl (15.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARMv7l

icechunk-2.0.0a3-cp312-cp312-manylinux_2_28_aarch64.whl (15.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

icechunk-2.0.0a3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (15.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

icechunk-2.0.0a3-cp312-cp312-macosx_11_0_arm64.whl (14.1 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

icechunk-2.0.0a3-cp312-cp312-macosx_10_12_x86_64.whl (15.4 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

icechunk-2.0.0a3-cp311-cp311-win_amd64.whl (14.7 MB view details)

Uploaded CPython 3.11Windows x86-64

icechunk-2.0.0a3-cp311-cp311-musllinux_1_2_x86_64.whl (16.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

icechunk-2.0.0a3-cp311-cp311-musllinux_1_2_i686.whl (15.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

icechunk-2.0.0a3-cp311-cp311-musllinux_1_2_armv7l.whl (15.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

icechunk-2.0.0a3-cp311-cp311-musllinux_1_2_aarch64.whl (15.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

icechunk-2.0.0a3-cp311-cp311-manylinux_2_28_armv7l.whl (15.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARMv7l

icechunk-2.0.0a3-cp311-cp311-manylinux_2_28_aarch64.whl (15.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

icechunk-2.0.0a3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (15.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

icechunk-2.0.0a3-cp311-cp311-macosx_11_0_arm64.whl (14.1 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

icechunk-2.0.0a3-cp311-cp311-macosx_10_12_x86_64.whl (15.4 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

File details

Details for the file icechunk-2.0.0a3.tar.gz.

File metadata

  • Download URL: icechunk-2.0.0a3.tar.gz
  • Upload date:
  • Size: 2.8 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.12.6

File hashes

Hashes for icechunk-2.0.0a3.tar.gz
Algorithm Hash digest
SHA256 035de80d2ab1e10a515e010d143fc84a666ba8cbf3f60428e79ac5f84b666e85
MD5 84228fa7c18f6bdc715cba579a7ca9d8
BLAKE2b-256 23011dc164746bc2807c52950ba5757f29c698f3dd6e473a4b81fe833ab95543

See more details on using hashes here.

File details

Details for the file icechunk-2.0.0a3-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for icechunk-2.0.0a3-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7eedd74113e44a6ca37b8e1d2d6beb7bb00c98f5c01a164397bd537d4c3e024e
MD5 db64695fa983b82fe067e5b26015c49b
BLAKE2b-256 056bb2c6b551525c64778a0bb6bec3e41a028ef5d0b35fe04af1ac6a2e2a3e84

See more details on using hashes here.

File details

Details for the file icechunk-2.0.0a3-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for icechunk-2.0.0a3-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 77bc30ccb49a1be0830c198b92ecd16dc60edc2aeb7d23bd9d529069faf4a360
MD5 4098bac701eed29a3cbe1ad61fa1d501
BLAKE2b-256 3ec4485cdffcc3623bcdb9046a7655173ea514dd6953e86689b44a915f73af95

See more details on using hashes here.

File details

Details for the file icechunk-2.0.0a3-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for icechunk-2.0.0a3-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6e9c4475a561663c84d7eb91bb9b45cf1ebfcc5be45ce6bc3c58749941610392
MD5 4950e0365813290c51e72cbef334a403
BLAKE2b-256 407cbf5776589bee4c6f8111ba1362116295326f27684fad630d31f3bcad1f97

See more details on using hashes here.

File details

Details for the file icechunk-2.0.0a3-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for icechunk-2.0.0a3-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 daffc5e63d1c0d847fdadd2d5f7a769480c8105e382bf630efc069c87d242518
MD5 feb4d50fa152f7de8205a0c3c8a49118
BLAKE2b-256 83f7a098fe3a832ebb2c1b607af9cb55641983c8ca9f5573a2bd7877d2cbe636

See more details on using hashes here.

File details

Details for the file icechunk-2.0.0a3-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for icechunk-2.0.0a3-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 df00e77feffa31656811c520a8dbdf0bbcce1734a7e41bdac78043510f2f5445
MD5 44e2d07769619f0c66ea07c80582e71b
BLAKE2b-256 c507bdb8d7a9247777b097c3de2e03bdf2bb62c10ae3288d475f5be2ef93c365

See more details on using hashes here.

File details

Details for the file icechunk-2.0.0a3-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for icechunk-2.0.0a3-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1883de8b0d512f909f9cb507a45bc5f33ef7b29b416fc55074bb6eec593113a4
MD5 0e8052ede73bb801c0da34d814c968eb
BLAKE2b-256 01cd7e1d90829324cc77a66714cf8f93598e7fafb0c37a85d7c1d7a45e4ec698

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-2.0.0a3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d2f54b06826ea393bb7510fe8ee17c386830548bffb7993dd48c2c5598da0fbc
MD5 e07c23e404d7dee0c09bb7f243c4d9d8
BLAKE2b-256 0bcae33ed62d3a00787b254c30ff11d10908a0130a4caa9623bd54e662b2527d

See more details on using hashes here.

File details

Details for the file icechunk-2.0.0a3-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for icechunk-2.0.0a3-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8284627aa411fdfc89e22e61fc8c62815c2b638ef3a19a5e0ef4f6b53a4e3a8a
MD5 6857c7afc266cc66e1070fe87101d7f5
BLAKE2b-256 09498a2d8e8b803f311ba00231e762f24b6e3cfb48a4bb7e2999329a9e723aed

See more details on using hashes here.

File details

Details for the file icechunk-2.0.0a3-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for icechunk-2.0.0a3-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fff0fc349fa60a7ea4091baab096c343c1148ba768905f82138ff39ebc1ae6c6
MD5 d531f9802978a69e556f5f4ae6bb4f79
BLAKE2b-256 4109f62c42b1383397554743167e25715f582b3b1681a474809c363484402a2e

See more details on using hashes here.

File details

Details for the file icechunk-2.0.0a3-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for icechunk-2.0.0a3-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 20b732b4228c0b3054f8706c7dcdc21282ca3612a3289e3833a7cf150416fe81
MD5 426aa82f467fed173b84a0837762558b
BLAKE2b-256 cd275a52b0fb9bf504527d7a42e1fb03072b4390108f777c09de44bae4f64999

See more details on using hashes here.

File details

Details for the file icechunk-2.0.0a3-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for icechunk-2.0.0a3-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1391ee3fd51c5f9ed9dbe8e8e4d9de6c4141458ffbfa640b20a4953cc4abe82c
MD5 43251de6d540989a280f00df23e89ade
BLAKE2b-256 3d5323e754450cd22eb2b8ea7c5f04e2b513e499b19fc48b01cf5acf2569fb8a

See more details on using hashes here.

File details

Details for the file icechunk-2.0.0a3-cp314-cp314t-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for icechunk-2.0.0a3-cp314-cp314t-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 338fdffb7c4090809866dda97c682143b80fed5949b905b5c2d91f6fc0882be4
MD5 8d4e86dabcb56f6d7dc9834b7184b675
BLAKE2b-256 0f190e35e4c517b71f18777bbf7153b412fd371bc29430e5def71684a101baf6

See more details on using hashes here.

File details

Details for the file icechunk-2.0.0a3-cp314-cp314t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for icechunk-2.0.0a3-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d78ace1bdcc804674303ad2c03b6bc64d56ee69387dd11da61b13d16aadba570
MD5 eec522d521f99effb7aadb6d8a734c06
BLAKE2b-256 86b5b2a071ab9036dd0607494e6ea0c95614c2dfc4756bdce7ae59c006392002

See more details on using hashes here.

File details

Details for the file icechunk-2.0.0a3-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for icechunk-2.0.0a3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 2099ca63b7c3eb3783fa722e6c46bcf196ea58556731d6b8b2784d367a6a9c8a
MD5 261dcd96e4e6f4bbaead3b5567b6dbe8
BLAKE2b-256 b4fee838bd95d07d6ff06b7f96a8a31185f9a2baa6a956abfa5418f449260e04

See more details on using hashes here.

File details

Details for the file icechunk-2.0.0a3-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for icechunk-2.0.0a3-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 02cfbb3e5347b8e033064f1a6f2807bcad87c168c66b775141153b9750d0e4ba
MD5 6b8aa26559448daa6a1647722fea6181
BLAKE2b-256 c1ff88c2468c4a6bc5071ad58bbffdf100eece476afb546053f4c92e03d6f601

See more details on using hashes here.

File details

Details for the file icechunk-2.0.0a3-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for icechunk-2.0.0a3-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 17285a27efca1b603f8c4d8dc6586f77eabfdc6c24b6d0fff227009918e0f467
MD5 d3c20c0a61c5fcc3a4aabff874588792
BLAKE2b-256 ce2bf7ff4a218c6a058e62d77698c4b4cef615e7b9f9dfd793fc82dc23257baa

See more details on using hashes here.

File details

Details for the file icechunk-2.0.0a3-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for icechunk-2.0.0a3-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 913eb6344b939bb81930a7c92a9fdc67646f2fb4a6b4897f8e8a522f55863291
MD5 93498028c1a2254a3abdf24c9f4fe113
BLAKE2b-256 bdadeb36b4c7cb16be9327712d8b114384d7221aae7205725203dd1d1effb048

See more details on using hashes here.

File details

Details for the file icechunk-2.0.0a3-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for icechunk-2.0.0a3-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a750d7ac8a11149d2d2220d00db48507554083ff5b0d086b49465ac6b0874214
MD5 566ab967e01303cfddb41e1e0efed836
BLAKE2b-256 4c86f5106369ce3bd37864ba4648306f55d5e0ed76e9ed80abded098b783d120

See more details on using hashes here.

File details

Details for the file icechunk-2.0.0a3-cp314-cp314-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for icechunk-2.0.0a3-cp314-cp314-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 904d8f023b2428f3fd7841fd12ad7a61081f60d465024fe4cb3b2d0aba144be2
MD5 9175b266706f9e8afe0e9310a3e45ae9
BLAKE2b-256 f1b77bf8c821b66928851ccc660fb86ceefcaeab2a27b17c1a9db6471ad83b52

See more details on using hashes here.

File details

Details for the file icechunk-2.0.0a3-cp314-cp314-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for icechunk-2.0.0a3-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 623bf76d00a9601495b86d93ce3fa938c68c5169f0d5b94e12efb560aece7bdb
MD5 cc070800289a3baaa1a8befdcbc8cd74
BLAKE2b-256 8e75e3713dd52a8fe9d4f8d36d8b9cff8a9d375eb03af83f87774ed556fb1b82

See more details on using hashes here.

File details

Details for the file icechunk-2.0.0a3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for icechunk-2.0.0a3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e156104be8a193c0cffd03ae7e9e906e40d759a02c7fd04a812ce32adc7245d2
MD5 e16b1c408e12e70c8c07f39c8d179c2e
BLAKE2b-256 5b29a50b42562f1d6e65a79deb14df60863081f6998535a1b81801af88c6a848

See more details on using hashes here.

File details

Details for the file icechunk-2.0.0a3-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for icechunk-2.0.0a3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c031546b7f393ebb02c825e2443defcdfc450f8c183d5e456b6d3a3ce30c0b90
MD5 581e31532345d270c5f078dec3965a5d
BLAKE2b-256 86ddf783d768109dc6137489d493464aa6231f145a08474ca2b75566856a1bf7

See more details on using hashes here.

File details

Details for the file icechunk-2.0.0a3-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for icechunk-2.0.0a3-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2a2ec8344ba179c3152a8696ce018e4ea782f4677dd3912cbba947c58c1cb853
MD5 12d3c15b843fc96e01b4ed9d48c554d9
BLAKE2b-256 108d9f955afc23f1b760610e395927b5913f7c225fd5a4b99b7051dba90d9613

See more details on using hashes here.

File details

Details for the file icechunk-2.0.0a3-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for icechunk-2.0.0a3-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e2316360f58da51a86b6b9b026f33c58c9e30e4a5ef187eae6dcad4bf3b44074
MD5 a57c781474d51af2dd9bca78922ae3ca
BLAKE2b-256 3a7519a5196604d2fee75c94b804ccb20f7e344d8f672f23e693daf51d1ca35d

See more details on using hashes here.

File details

Details for the file icechunk-2.0.0a3-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for icechunk-2.0.0a3-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b85fbebdb29a6ea5febbfac228acfed30a799128c407ec04a671630a9abfb13e
MD5 978f2820b1a3902377c0c1b6ecb6ec91
BLAKE2b-256 6b4fbb0c1b5f07fc35e107ea2ea1bfd26407ae2f1526b00076d4c19ef88d44cc

See more details on using hashes here.

File details

Details for the file icechunk-2.0.0a3-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for icechunk-2.0.0a3-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3ec052f7871526a8afe2d8f087a16199141febc88f978707518d8291da8ad23d
MD5 213ec2c94d98d09eeb4407721d51a13b
BLAKE2b-256 aa99fdb0116cc393a1390084a41d3201f237e59ea7be74285a2eb6aab163121f

See more details on using hashes here.

File details

Details for the file icechunk-2.0.0a3-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for icechunk-2.0.0a3-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 01bf71a2c85a2b817c6aa0f936af4c7206c6026a18265f8ad35b31be8036502e
MD5 da5fbff935f844fc80c5a6b4d1ae3b45
BLAKE2b-256 a9c2bd99599e73044a596e5020beee48d955048d87c75108ad8d526c1e638a30

See more details on using hashes here.

File details

Details for the file icechunk-2.0.0a3-cp313-cp313t-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for icechunk-2.0.0a3-cp313-cp313t-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 037772f7c1c9eb65dbb3ac27c057723c76630cf0be714fc346de1074af2303c5
MD5 d7f135e793a1d8edd67e69be340c98fc
BLAKE2b-256 9aea51661e7e1ec4b0524f67552167340b60690977baae59dc7521e9f53d0106

See more details on using hashes here.

File details

Details for the file icechunk-2.0.0a3-cp313-cp313t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for icechunk-2.0.0a3-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5c333c206a0e20d4835906ddceb5bd650af9a18c8e5fe5f9032aedf6368b2b9e
MD5 25ed940b038943418f13b9ac2b2d24cf
BLAKE2b-256 093f82b43a2ee39c12bb8602ce31418c6c96f1fe364eda700159c5a01c152825

See more details on using hashes here.

File details

Details for the file icechunk-2.0.0a3-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for icechunk-2.0.0a3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 911662d22ce5c8b5660b97a505be664c4ea537717cad904b2c208a5c24557fe3
MD5 014431bcbdd29f5c961c2eb7ed0c00d2
BLAKE2b-256 44f5227ad7f821ecf2c6b405a8e54fda0db60a6980690d9ca50d91ce1948699f

See more details on using hashes here.

File details

Details for the file icechunk-2.0.0a3-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for icechunk-2.0.0a3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5a49b3f70f327470b4dc04b0c59ceeb204c75d1a6aa4497d3c9019f82dd0d529
MD5 c20fc5b108819fc3d1a785826c9e05df
BLAKE2b-256 649aaa06cc994d4dad347004f233e3880193c1d9ce694744290f343a37b5ffe0

See more details on using hashes here.

File details

Details for the file icechunk-2.0.0a3-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for icechunk-2.0.0a3-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 efc2b13c080ed17507fc5f5e95a2e303142d152bd3e0c2d57c5241181d901fc8
MD5 66bff6e6cb96cb770b920bd66af406a3
BLAKE2b-256 af2dceb45a5cbc7c9571c56c11562f0f6ada1ff08f46569717e2092753f66484

See more details on using hashes here.

File details

Details for the file icechunk-2.0.0a3-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for icechunk-2.0.0a3-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ffe9375fdfcffc51b10862f287c86f7cb1be8a0f7c54ec50c01f6472e96c946b
MD5 9b58c7e4e66b03c3b07513e403c8d318
BLAKE2b-256 1ec4639a367647e8bf4622126fc2f09b806fed1a5fdab4c9c4eeb7b42f185c81

See more details on using hashes here.

File details

Details for the file icechunk-2.0.0a3-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for icechunk-2.0.0a3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 eadcdbf70292a84b46f611a9212b2aeec159cd14df0691768d14ab02853c256e
MD5 a482835d2f93abe4dc4a37892ca7420d
BLAKE2b-256 0acb8c139a749f868a7e78ea32e90c2efba0df3c3a03fc9d15a8427c8c732fc7

See more details on using hashes here.

File details

Details for the file icechunk-2.0.0a3-cp313-cp313-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for icechunk-2.0.0a3-cp313-cp313-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 0e5ad9deb8fef90d2cc526369ae90cf8d25b858c55f1ba485fe13c77b8754ef5
MD5 5ebb2e6ae5e26acc60a2b915c5672ee3
BLAKE2b-256 aa347e2cbd7d81e4db67b0843905eede331a554515d818f36ee40b00f9556d9a

See more details on using hashes here.

File details

Details for the file icechunk-2.0.0a3-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for icechunk-2.0.0a3-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 05bdfea17b253cfbc2b84692af2cca7cb7abe39e7c62a92e08c65a37fe55a4a6
MD5 1acd7cd9f7327e124c676d48d2b77e41
BLAKE2b-256 f06af76b778a0d3ce398e048fb65b36779f056a9507c76411e4e26a12830e6a5

See more details on using hashes here.

File details

Details for the file icechunk-2.0.0a3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for icechunk-2.0.0a3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0c79bef1ead2f0413cb3cd50cba3ae8133cb72ab715a6fdfdba8ea0012e47e8f
MD5 8c6d35745676d92d41e071007aac9b6c
BLAKE2b-256 fc2a54cd04a5040fe351857ca43fe7c27288fd68d0abf723cbe7666d1cb7f92d

See more details on using hashes here.

File details

Details for the file icechunk-2.0.0a3-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for icechunk-2.0.0a3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e6c33886841dd688153449335929d2a41224c4af0a2d47ab4c231df2714f6ed5
MD5 5e4897c74cd4ae35005af8e9dc873b8e
BLAKE2b-256 71267389e33c4a6d826227007454b624da5a9982a9173bf703ced11d3b198cef

See more details on using hashes here.

File details

Details for the file icechunk-2.0.0a3-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for icechunk-2.0.0a3-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d21d9bb25db835afcd16e57cd92e7705df58dfa820b2eb9cd8e6faf380fdb9cb
MD5 cd38f1490defb5a1ade6c629d94de70f
BLAKE2b-256 380fcb8f5fde12f79d99db1ecc23975bfa52ee10628563dd20f7229db93d1f48

See more details on using hashes here.

File details

Details for the file icechunk-2.0.0a3-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for icechunk-2.0.0a3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 852d910cc65444a45a6d723c9439b802633da9094dbb0338669254e028d5fd93
MD5 5c41210b9c6832b3263c314cb72ff801
BLAKE2b-256 7bb0b08251ac265f991b1e3dbc5ff6bdb843c4cfd851ac933801deb1f401828b

See more details on using hashes here.

File details

Details for the file icechunk-2.0.0a3-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for icechunk-2.0.0a3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c4b5c2a9aa9f20bda4e8a8884027119325c7cdf26d1449aa0d6c3a2431698ee7
MD5 2f2e0c1d3149064c0c26c989e2c86e98
BLAKE2b-256 4c56c20790026cfd1dc0ac5c9147fd58f8d54d7374930efc881266d4c2be83b4

See more details on using hashes here.

File details

Details for the file icechunk-2.0.0a3-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for icechunk-2.0.0a3-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1df7f066e73d998f8a918c886db0fa5d8ab491077d9622c8be6eba3db134c431
MD5 33fcb09abc5a93a3e220048607f21607
BLAKE2b-256 8312c009ff63101de8b7931c0ff22576bae7588e9d3add88b2f55d4ff800cee2

See more details on using hashes here.

File details

Details for the file icechunk-2.0.0a3-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for icechunk-2.0.0a3-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8201c011273364fa633d08747eb026b0bff2880d28dc7faae8c7e94dbf874927
MD5 d5cfac365bb46f67c40d2f445d80f7e6
BLAKE2b-256 0e979b7297c7904c2984c8119c514d4bafe99185ebba8b762eb1648df313d003

See more details on using hashes here.

File details

Details for the file icechunk-2.0.0a3-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for icechunk-2.0.0a3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d7a41501255fd1d76a3380c235ec05bb44c30201e839e1b05e5f56b84362e6bc
MD5 20bec56b8252acfc1f45ee61323373f7
BLAKE2b-256 c2eb01cc7635af2adbfb076825781be3072c16f3e5a22863fabae0d2ee6b38c2

See more details on using hashes here.

File details

Details for the file icechunk-2.0.0a3-cp312-cp312-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for icechunk-2.0.0a3-cp312-cp312-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 b18fd7277a835fd268dd90850c1f6e3b87a7db90598ad4ef59495b79eb4ac3fd
MD5 67a0a22a0fb9e8b8232150961c2cc3ed
BLAKE2b-256 f3e7ef1d8989ee7d1ed22c7b0e59942bb7d9cb703cdd4c598898dca18def7fbe

See more details on using hashes here.

File details

Details for the file icechunk-2.0.0a3-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for icechunk-2.0.0a3-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5fcbd6cc9a5c70bcfca0381a15f0fd4f9ba7030a385e156ccdd84b8135435845
MD5 9f662ab19f93ce46df5c6f8021e0c55e
BLAKE2b-256 aaeb050616c313b915e85cbddb9299428d854b2262fc479a9b34a5584923cd43

See more details on using hashes here.

File details

Details for the file icechunk-2.0.0a3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for icechunk-2.0.0a3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 09b91c90dd14dcfdb122dc12d882c3cfdcee20f0fef1f25fe1b1d57eb83d7468
MD5 448c4c495e693dd342b7f4874085ff5d
BLAKE2b-256 11871c08cad2cac85f73271b9d2fb41f17be7cec5465cc1b9c073b6522218bc2

See more details on using hashes here.

File details

Details for the file icechunk-2.0.0a3-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for icechunk-2.0.0a3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e431847c055d8ada228f7823555b4cf9f1a5b7e191541e97b88c062fd814984e
MD5 a4775946426e4c8538fa57daf902b89b
BLAKE2b-256 164ec5bf2cc5deb545a454f75ac53f679e941a3a89d89649c8802690d81aeb06

See more details on using hashes here.

File details

Details for the file icechunk-2.0.0a3-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for icechunk-2.0.0a3-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3ed795ede546da87fa600e128ab957b22af946fa67e69275962e25929f6227b8
MD5 94df561c1385d38fe83a76bbd1c5915d
BLAKE2b-256 2912e8bbe201c19d4f1bb67c7084c951854406f03d3796c778f13c08ef56c32c

See more details on using hashes here.

File details

Details for the file icechunk-2.0.0a3-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for icechunk-2.0.0a3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b5bc0ce87c509b839395dd54fac20e6e929fbb38c0508cda68ca3cc32ea8f48d
MD5 fd7f31e6e6e7180c8fd015bafd8739bb
BLAKE2b-256 174d9bebbb513c074f872e7c10011cee609d403804c4ada7da8a0fa6b5dedd10

See more details on using hashes here.

File details

Details for the file icechunk-2.0.0a3-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for icechunk-2.0.0a3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b16baf635ec49c8bd4448ae298fb53a62ed6b4832598bb4ce1c2920014a8a9b3
MD5 bd4c0882abd4ee6fc6e3c627e7b2b18c
BLAKE2b-256 edcc1380345e38693b18b7fef07e14e35cbd7b17cdc541c384ac2aa9219bdecf

See more details on using hashes here.

File details

Details for the file icechunk-2.0.0a3-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for icechunk-2.0.0a3-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2d1b1e7b22f4c34e570f4c60149c505d65c1eebe70cbe579b62c497ca1421e74
MD5 576cf9aa41bd18405389d4eaf9f12c04
BLAKE2b-256 0c5a9c026090e27d61188e55fe1c1af6fd9bc2b6b6fe0c161d24d199b7a2fa30

See more details on using hashes here.

File details

Details for the file icechunk-2.0.0a3-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for icechunk-2.0.0a3-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 65ace8373c34fc7f6073c1a4dc75dd2f36292621c4dde01f9d7650db50d715d5
MD5 7ad78c624295bfa571a85cbac87f60dd
BLAKE2b-256 3183306e9f32120009146fe43d5bbf95bd015b61ba085b5d0d90fc66825a8b01

See more details on using hashes here.

File details

Details for the file icechunk-2.0.0a3-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for icechunk-2.0.0a3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dddabba4041c07cf66b95f4bed98d7bf6a8d558653f3f495aa0771aca7d74051
MD5 caab3e60983c433b36325f553c86fa88
BLAKE2b-256 59e2822fdb81aa718d5fcf2bc64298abb349610b8f5ef49c6740e1caf335fc63

See more details on using hashes here.

File details

Details for the file icechunk-2.0.0a3-cp311-cp311-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for icechunk-2.0.0a3-cp311-cp311-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 60f4c7a06c010a865151610a6cd5bfd51472a0721e75aabbc19b7238b540369e
MD5 fb3f58164a76662b7a5c7b48ef3d829f
BLAKE2b-256 7943fd6b551ac0a29124fa7203e3437110465e79f705fae7771f255ea2b039da

See more details on using hashes here.

File details

Details for the file icechunk-2.0.0a3-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for icechunk-2.0.0a3-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 731199ea2ffa2d361140ab145ef19f3ec7fc2ea3600988cfb9f843dbf7acdd7f
MD5 c98c8362c5d990381f7af423c159d417
BLAKE2b-256 df1a36c5c8c914d6108a7150cb9636b276e107c660a23d0b60071f73475b0c42

See more details on using hashes here.

File details

Details for the file icechunk-2.0.0a3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for icechunk-2.0.0a3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cbe37ab7a3be1d05ecf7f7164671b0bbe2827803e2144af4464569475beef995
MD5 2025d4b72e659178bfae5fdb0e91482b
BLAKE2b-256 adcc465d8e8bd19d2ae576ba7edb75e39a248530716aaa2fdde88ea3ff0f2917

See more details on using hashes here.

File details

Details for the file icechunk-2.0.0a3-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for icechunk-2.0.0a3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7b3590c0cc6b442972e5c55d8657d939bf53c301e970f8d1fe6ad04106234d38
MD5 ded6f51c5327563203030c26d4883285
BLAKE2b-256 d0863a9b00764a3238574c5134e2a3ce685f28180b37792849119c936d8bb1eb

See more details on using hashes here.

File details

Details for the file icechunk-2.0.0a3-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for icechunk-2.0.0a3-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7c42b881cc97691d8413ea9cd71c68abf4736ef7b3f4a844dec123f5f39d22c7
MD5 e670f1e18a7b162fc76ebbba7e637407
BLAKE2b-256 9c0c31b2fd2d0fe4afa419a846a5033f0f31bb8efc59ea9269bb22b721fa3924

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