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.0a4.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.0a4-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (17.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

icechunk-2.0.0a4-pp311-pypy311_pp73-musllinux_1_2_i686.whl (16.6 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

icechunk-2.0.0a4-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (16.5 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

icechunk-2.0.0a4-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (16.7 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

icechunk-2.0.0a4-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl (16.4 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARMv7l

icechunk-2.0.0a4-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (16.5 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

icechunk-2.0.0a4-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (16.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

icechunk-2.0.0a4-cp314-cp314t-musllinux_1_2_x86_64.whl (17.3 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

icechunk-2.0.0a4-cp314-cp314t-musllinux_1_2_i686.whl (16.7 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

icechunk-2.0.0a4-cp314-cp314t-musllinux_1_2_armv7l.whl (16.5 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

icechunk-2.0.0a4-cp314-cp314t-musllinux_1_2_aarch64.whl (16.7 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

icechunk-2.0.0a4-cp314-cp314t-manylinux_2_28_armv7l.whl (16.4 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARMv7l

icechunk-2.0.0a4-cp314-cp314t-manylinux_2_28_aarch64.whl (16.5 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

icechunk-2.0.0a4-cp314-cp314-win_amd64.whl (15.6 MB view details)

Uploaded CPython 3.14Windows x86-64

icechunk-2.0.0a4-cp314-cp314-musllinux_1_2_x86_64.whl (17.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

icechunk-2.0.0a4-cp314-cp314-musllinux_1_2_i686.whl (16.6 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

icechunk-2.0.0a4-cp314-cp314-musllinux_1_2_armv7l.whl (16.6 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

icechunk-2.0.0a4-cp314-cp314-musllinux_1_2_aarch64.whl (16.7 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

icechunk-2.0.0a4-cp314-cp314-manylinux_2_28_armv7l.whl (16.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARMv7l

icechunk-2.0.0a4-cp314-cp314-manylinux_2_28_aarch64.whl (15.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

icechunk-2.0.0a4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (16.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

icechunk-2.0.0a4-cp314-cp314-macosx_11_0_arm64.whl (15.2 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

icechunk-2.0.0a4-cp314-cp314-macosx_10_12_x86_64.whl (16.5 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

icechunk-2.0.0a4-cp313-cp313t-musllinux_1_2_x86_64.whl (17.3 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

icechunk-2.0.0a4-cp313-cp313t-musllinux_1_2_i686.whl (16.6 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

icechunk-2.0.0a4-cp313-cp313t-musllinux_1_2_armv7l.whl (16.5 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

icechunk-2.0.0a4-cp313-cp313t-musllinux_1_2_aarch64.whl (16.7 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

icechunk-2.0.0a4-cp313-cp313t-manylinux_2_28_armv7l.whl (16.4 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARMv7l

icechunk-2.0.0a4-cp313-cp313t-manylinux_2_28_aarch64.whl (15.6 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

icechunk-2.0.0a4-cp313-cp313-win_amd64.whl (15.6 MB view details)

Uploaded CPython 3.13Windows x86-64

icechunk-2.0.0a4-cp313-cp313-musllinux_1_2_x86_64.whl (17.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

icechunk-2.0.0a4-cp313-cp313-musllinux_1_2_i686.whl (16.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

icechunk-2.0.0a4-cp313-cp313-musllinux_1_2_armv7l.whl (16.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

icechunk-2.0.0a4-cp313-cp313-musllinux_1_2_aarch64.whl (16.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

icechunk-2.0.0a4-cp313-cp313-manylinux_2_28_armv7l.whl (16.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARMv7l

icechunk-2.0.0a4-cp313-cp313-manylinux_2_28_aarch64.whl (15.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

icechunk-2.0.0a4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (16.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

icechunk-2.0.0a4-cp313-cp313-macosx_11_0_arm64.whl (15.2 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

icechunk-2.0.0a4-cp313-cp313-macosx_10_12_x86_64.whl (16.5 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

icechunk-2.0.0a4-cp312-cp312-win_amd64.whl (15.6 MB view details)

Uploaded CPython 3.12Windows x86-64

icechunk-2.0.0a4-cp312-cp312-musllinux_1_2_x86_64.whl (17.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

icechunk-2.0.0a4-cp312-cp312-musllinux_1_2_i686.whl (16.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

icechunk-2.0.0a4-cp312-cp312-musllinux_1_2_armv7l.whl (16.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

icechunk-2.0.0a4-cp312-cp312-musllinux_1_2_aarch64.whl (16.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

icechunk-2.0.0a4-cp312-cp312-manylinux_2_28_armv7l.whl (16.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARMv7l

icechunk-2.0.0a4-cp312-cp312-manylinux_2_28_aarch64.whl (15.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

icechunk-2.0.0a4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (16.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

icechunk-2.0.0a4-cp312-cp312-macosx_11_0_arm64.whl (15.2 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

icechunk-2.0.0a4-cp312-cp312-macosx_10_12_x86_64.whl (16.5 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

icechunk-2.0.0a4-cp311-cp311-win_amd64.whl (15.6 MB view details)

Uploaded CPython 3.11Windows x86-64

icechunk-2.0.0a4-cp311-cp311-musllinux_1_2_x86_64.whl (17.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

icechunk-2.0.0a4-cp311-cp311-musllinux_1_2_i686.whl (16.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

icechunk-2.0.0a4-cp311-cp311-musllinux_1_2_armv7l.whl (16.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

icechunk-2.0.0a4-cp311-cp311-musllinux_1_2_aarch64.whl (16.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

icechunk-2.0.0a4-cp311-cp311-manylinux_2_28_armv7l.whl (16.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARMv7l

icechunk-2.0.0a4-cp311-cp311-manylinux_2_28_aarch64.whl (15.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

icechunk-2.0.0a4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (16.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

icechunk-2.0.0a4-cp311-cp311-macosx_11_0_arm64.whl (15.2 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

icechunk-2.0.0a4-cp311-cp311-macosx_10_12_x86_64.whl (16.5 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: icechunk-2.0.0a4.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.0a4.tar.gz
Algorithm Hash digest
SHA256 a87dd1eaeaa1e343149aab291be754554f19431c4a772133c26aee33461b26ac
MD5 257b296ad8c622180914b885df798c9f
BLAKE2b-256 d0a3923600610bff044f3a902bfdf75cd8c92e806f7d7d6de58da2e8de1fbd14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-2.0.0a4-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 437edf56d379c04a463ab37ab2a6b0281b85b9c654d80206e64f5fdb08c7180b
MD5 46bbdd3b2817a882c2255cc4b43a0fb6
BLAKE2b-256 09fde57edaceec02a2cadc9a29f2b7f6d4acf458fb49c14f2ed4471a0238475d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-2.0.0a4-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 71dc5d4a4bb2da00b876b5ebada346d4e6b15e1c5c5669ca1efd3f6e1dec86fb
MD5 7bc67d9f7f838720a3abe409c2e20294
BLAKE2b-256 e2ec71ba12650e0c06ece8771e16b1ccedc3eaea211b7fcfd88f4e6b42a43e8d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-2.0.0a4-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 28837c449c42e3cbac78f11b5f38351d8e91423ae744c00a3d07b9ab7456f093
MD5 ee9172bc7a60479721977ceb083c72e0
BLAKE2b-256 6d66136305d55bcc0ba97913e9af72af0c7d7063d63272234614887ee50e8eae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-2.0.0a4-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8b821908126d2d5996aeecb90ea735c3bf78378461175f733bbe11493fb6faed
MD5 f059dbed173cff860e7a5230e51c27ae
BLAKE2b-256 05e590c5244585e1b88d104cfc44c985e6a2a4be1f8bfb707fe868874f1a90ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-2.0.0a4-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 f9666e2123aa5f825841cbd1d694298e7872ec065d4505074db1aa125eee41d8
MD5 d074e14392d34e1f46ee11a7431e004c
BLAKE2b-256 03c21fabb6c149bbcfba9ce8b3fb307d47694339cd884fa94e33bca46a58a9a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-2.0.0a4-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2f60ff9606b643ffc952c5c6a0115873685032bda8f09bfdf8f92d225b8c524a
MD5 594bbef60c26e393dc602310cc463526
BLAKE2b-256 1163e571cc72b3865c69390d2a0185c95a87bb3dac6809ba11aee109c5d5a8c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-2.0.0a4-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 08dadb121bb24b1df3e46445b8c71d0cfa439ae38f99913580c9b0206e378ea2
MD5 8c902a65af8834bab23a26190ea9c538
BLAKE2b-256 483855da5e1d1baa37a15928297dc3ff5939634d91570370e3bdd91d0dac8af9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-2.0.0a4-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e117e72c0b16504001ac7e39da75ba1f05d7b6a5812d4c6e2926c90919b0bdcc
MD5 1b3985db4341c74a93ed148e5cbc14c4
BLAKE2b-256 bb67b1ec3c84b751f6626198a7185d7df1ae6e95a178775ce24bcd6d1fc184ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-2.0.0a4-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 77d48f36c1fd5bbc22eb225751e8f58eff66553a0f46291f161eb553359db9a0
MD5 0b9d9a4ea574fa7a524a6fea049cc60f
BLAKE2b-256 6a2fc13d0d46774133de054fa32d916e29aed6c182b979de28acedffaf50f7dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-2.0.0a4-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 457b31b4515df3eaae3d569047ea46e04e528f11c8a9bce381d02e7f6f97b2a0
MD5 a6dd4cc099da8523345c8f7d7a33be92
BLAKE2b-256 b91019791287679d2118ac4103cf16af2b06d5e376a049e9dde7e58d848cdb14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-2.0.0a4-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5e247067122d23b761ddaef2263c4be8b7aea2ea2a761953970994d54b3c8c3b
MD5 68a2e8d6689e282b8b26e65f4307a62b
BLAKE2b-256 47cef71ba50e6d352701df6e21019f6e361823c437d8a527f57e0cf0164d9dd7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-2.0.0a4-cp314-cp314t-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 4cff53a091074e6caccf3859d144ccd790adeb508508408f6e28333a28def61d
MD5 951ed6927fbc8e1f30765c3fba697dff
BLAKE2b-256 ccb3116dd4ac28ed1ae4c03ad8f028b0b53a8fa281ed3c8e3d535a0d7819f587

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-2.0.0a4-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 216d8f88a5b904e5ffb9fcf08395c656747dbddce91729f11f7338c20a51c762
MD5 6a76cae2c37bc78174be2cbf5529561d
BLAKE2b-256 95116d91e1927e915f4f9ef1d057d7bd45ea53878b17c0624c16ed1e3d9e8f97

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-2.0.0a4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 eccec2385076a434a2b00bd6084568a00dc37f02ba96ff4792d5042c4f6098e7
MD5 7df5aff5a2b5c1d787584fed3954723f
BLAKE2b-256 fef366478ff7facf7a9ca34419d9443ee3711bb26288ca1896bce9f65c5c300f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-2.0.0a4-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ab1a2b63dac88298bf5a81fc384cb365fcc3cf8a750c8585e4542d2502d5aff2
MD5 b8a9f8b9e3ef19ad1ceb393b6e1475b1
BLAKE2b-256 49a1f22af5ae9ed7b2cabffecd49aa421d5eb19c0f901f85e4c5010ccf3a7058

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-2.0.0a4-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b328c60ccdcb9ac8fa63ecc012d42235295dfbcf2b9506e1713a5a1d30899393
MD5 5a6e94006301061ad0113be178bc1e59
BLAKE2b-256 52d4260929ec4ecfb4604a5178cc4155a4579a1be295a77b8f69441394a447d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-2.0.0a4-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1a3c27a349f0856bdef09c5c1d4595a7b0f99420506a25cdd62d7ffe2a7b3e32
MD5 0075c03105aa7cb570d55a3d76a90539
BLAKE2b-256 b175fa5a3f078a92c9d2802d540f8ead310b311a9a24fd5b4b570349c6ba19aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-2.0.0a4-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4437fcb3dbe84bf904dd04cdb2ce08f1f79b89a984fe96031403f337de4d4467
MD5 4ebb0187a0feff2f5dae52558308dbd5
BLAKE2b-256 c338624ec5988bf8c1da9a5a0b09160a0c53e19fc1d11ca3139d532d61623445

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-2.0.0a4-cp314-cp314-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 e73a746bd2782d3bb7414c7c04dd401bbabf320bfa8296144094e244b1505aaa
MD5 909f32bcd33d4b349c4d05a8adf56338
BLAKE2b-256 df4c599485d6bf043b7ecb0b81fdd67a99a530a76eae496fb7e3731a0084f14d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-2.0.0a4-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ac79aae47fa4da2c66d6de94af00998db9872efb7bf14891083ba1ed933bd5c2
MD5 3a9e3d07ca23ba4521fd92477c134b08
BLAKE2b-256 85a5aa2f8592b8b2fe3958855b7bd33ff33b4418d95b9fd95e7dc937721c537d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-2.0.0a4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7d783d00aa4654567767cf9172f9b28198ad8579bf14874bb9ce03b0160e63a3
MD5 94198f57ec86c8aa955141ee051c019a
BLAKE2b-256 22d889791ccc87caf32720b82379999afa9311eb54f6331fe39fee5fba76ca3b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-2.0.0a4-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b29e2207bd51d1df28c1215c3cfaaac55c167f77c508b73f38e73a75ab21b220
MD5 db587714286404e562bc38d6c4c18a48
BLAKE2b-256 f6e1de38323130f43603a86a12e6e8c001c23794f3c014497117eef378e0f621

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-2.0.0a4-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 585351a6239ed7b7694e364dfc1823e6cc80d43765fbc889aa2c12b3acf9c29e
MD5 2e6d3fdcfc4a369f8918b05f9cabd0d6
BLAKE2b-256 00de59ed932de169fa23ca78e775ed43d7691a295bd34062139a6055d193e413

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-2.0.0a4-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 280b4ef092433f532e7101cb21e285cb5a17bc51c6d21f103ec86ee460a65e68
MD5 5e38c889d4041b0c9b336a2a28cee491
BLAKE2b-256 58b3e976428601c7fc3f6af24a62fe8df198129f3e94159066aa897d6d9021e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-2.0.0a4-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 40c10527b55756e02268f932d8477d2ee73de3499911065d67eacb3daa30cbf6
MD5 c738d2c51337a197feb6cec353cfb625
BLAKE2b-256 873b744ef7fc04c3b40334af4980cf7ecd050c419725d8ac35402e83b2b24418

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-2.0.0a4-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6700572c72d55abd98b4e0bbe2718098c5a9e566e5a82b628e55c2926e7dcc00
MD5 e000e9fa1f0473bf8f6381677a2c6744
BLAKE2b-256 4377c998104d684d15a8ad0a4acb2c4cde86aa3c082e70acc9e5466e510d0ba1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-2.0.0a4-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9b60ceda360cbc9015bd50b184eb19f07e4586bfda186e618accb92ff54fb2a8
MD5 4e030e9e4b57de5476eb51b200ee254d
BLAKE2b-256 b48fe572bdba8bef9029805be7a42fc119b08575ce2451256cae4841dfe88b80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-2.0.0a4-cp313-cp313t-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 bcf0b76ba16d730e75a6309210c62009d6558776de644935b9eb172e16e2a0a8
MD5 54f12759222b8a1075810a8d48bda49f
BLAKE2b-256 554805fd7455659942b8deea3a820a3cede8fa2304ada18715148ff38a7c79b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-2.0.0a4-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ab0dcd497f2f7f5b9643a90a353d448eadd63bd1606c6383123cd79d60f15ef5
MD5 589e60a816362fc9d32a64c3eff58742
BLAKE2b-256 4ae67b80045e5c73590ed40d5f6135515a80aa3806766874cdeb276b7d9e8fcf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-2.0.0a4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 55e0aaa58a1933e689195267e60919338df52084ceca6e0ecdbce27ed2dd5969
MD5 18e0c0ae4b75cd02bd19ab171725abf6
BLAKE2b-256 827f496e7afe21bcef90e986428cf0662dfff59bafa36603864a2b68ef288d45

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-2.0.0a4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bcff115d97b84c89750c10ee5a5c214878e25e2992424c5e89075da3ab533242
MD5 84bcd3d8183f13cb7a9c8be544e70c97
BLAKE2b-256 c7ffdce2c56fbce3fa7af50e1688e3f30ba07ffb337b463cb1399a5228460297

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-2.0.0a4-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c75c852071b688e43b75a38bc534c9a805e2553ab74959768331173339d2e986
MD5 5475147fe0ec676c97509a753dd902b0
BLAKE2b-256 c5634fd2c0d052888a2787e4f23ea957bb286cca6d66623d7b5704d65f5b0322

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-2.0.0a4-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 87ddf1250efd66a1dfd352f2bdd027f5408bb8b7fbbf6b07ed57d7372ee614f4
MD5 ccaaa53d0dd914fd3e9a9503fe80c662
BLAKE2b-256 1aa66e13989ee2e1f43c7d5ddf0e0890c94739305e3991e044f76eefcb7c9cb5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-2.0.0a4-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1d9cbbe4f7eb4d1e5a7a7b24d96b00ca49b2146eb6a30158630372cb554a17dd
MD5 7a474fb56fd7c3c4e70b7125e11ea46b
BLAKE2b-256 f455386e99032a03897438cd8a34981e91916769bb957c56b5acb822a542b159

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-2.0.0a4-cp313-cp313-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 c4c3c61287d859ef96e5e8f19789dacae70e3c2235ec8ca4f89129f17e9730ba
MD5 930c2846287a7390fe71a5081b774b4a
BLAKE2b-256 9f3cc7c634c851d9f190284f519a06a77640655743f65a8dda6dcb3618cb1bb2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-2.0.0a4-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3716de52a213c4740bb2ecebc29476c815d8622e9581851ddb8eef91d0ae7b55
MD5 0f23d19b8095b2e6bf7406f4ccf3de7a
BLAKE2b-256 c2fb8e62e7f27e8b3688fa200a7bb66d72f64768003a8dd372f0ac861f81f4b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-2.0.0a4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 45c55679e96134b2b542448ddd6aa437a82f1fb9706f1168b0f385b48387cde3
MD5 637ebda9ce742dba38bbcebd01859c57
BLAKE2b-256 d65a4c6d566b1a9ef7069eb1199b1e6ffccb3441ceae4b1a22a57a4cb7e162ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-2.0.0a4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 18d00e1d2929228618e7030b942c43a3b16f467faabe5e71f9a0058091db8cec
MD5 665da23824ff70e66ffeb1ea9491a04f
BLAKE2b-256 ae304f4c003ce6ee4d73e1e3a5f03709f6900b07338e70e7f45c91367f7df0b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-2.0.0a4-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a326e68a1dda8f7834cf03e5202f177e496e77ae843ca2ea0eb6ba8c3dd6a67f
MD5 394973076546e2085766317fb347ffe4
BLAKE2b-256 078a5e1975ce703bc3e934eed410f5b0ff9461aff4a678f06a74399eb6b8d267

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-2.0.0a4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 29f8fb32d406cef80c5b49b2191bcd4cb756ae8cb5722f48f6d2cb9bf2d991f0
MD5 daf8ae5aced88dcf4ff5af675baa3a5c
BLAKE2b-256 ec63190a01e8c469f33533c21c9e196be8981fb8adfe8639b72aa2565bf0e2bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-2.0.0a4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9e06a6d2986ea70dc083e03f9846f2e311ee95d4a995630056c0157b77c6ca55
MD5 59fa5a6239f3eb00673d62eb4be056a6
BLAKE2b-256 fe5783eb7d31858bcc5121a3d60783f76e3358b64b27b9202e7db0e2d491fe25

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-2.0.0a4-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 863483fd8cfdeb97dcb04d8fad4a3ad66a123ddf3d8514dd0c4ca8a9d093f4cc
MD5 ba3e5a50f21aff7a24a0cf80c0c126b0
BLAKE2b-256 cad8e23715fe510b029d9e4a1d780435dd88967f1984f6fadf672dccad3d9c89

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-2.0.0a4-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d2c4ed432d44d6ab6177fef8ba570b48296f22b9ddb030cc223684319de33410
MD5 ab12c2fe6bf191b44df8625933606378
BLAKE2b-256 f60fa75d1d0fed9f2cbdb51024f20d9ca6193a8b2f99053450f45f7a56a41d7c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-2.0.0a4-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 067b86d9c0b7772d9b2521e2ab0f7c6e770b9311b948db64be3b5c5d7ddcb29b
MD5 1aa636080c36bb4c3c6e97db6fbf1c6e
BLAKE2b-256 ea1edde8ae9d54e05551d49575f9874d328a625944fde11967bcfce5be16aa22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-2.0.0a4-cp312-cp312-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 701c1d5c0d57cb61c2e5e854bd4caafa5096d03dd054c60e86cf2ed831cf8338
MD5 487b555411f072785c6252a0f35da7db
BLAKE2b-256 1d0a1fa026e77cf56f01eb07e89ca8c0dbc2d3b907877fd0944f53b701994743

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-2.0.0a4-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 dcb9e8cd0176b7d95c9cc7c7666d069e600b61a98b1dfd49b1dfba79871cdb30
MD5 f3b891a5cfd89079e6d380cef2d0f787
BLAKE2b-256 a8cdae8fd0a1e225c800a4d2b0bb52dc2e11c2a18aefef141499420941ff4f80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-2.0.0a4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 39932aa981ae30234391bf50944ef25127347cd463f3030b7908167214693d80
MD5 ccb55c086d578091abdf7fe750c8fb06
BLAKE2b-256 3b1cbe0d2440ada1dcb8490529ccd24fe6681bc49f3706f4665be75e752fabe0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-2.0.0a4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dbdd404d56edf4c1a90bf13d6deccf5efe1b183e57db2c06b741fbcefeb5621e
MD5 5d5c0656bf90b86766ef41e749215bb9
BLAKE2b-256 a9a20cc594d72fd8be38612e5c8c0871cec3ff5b9358a6c6d73025385c6c34b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-2.0.0a4-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 28007027ad6efd7e987b6fde0bf49a84d6e3ce4efe0db91aa7e8c61cab868945
MD5 257f5b6207654c477eac213433b93840
BLAKE2b-256 5f7af4818f0378e18e217fa6b4c0334036729f8c66aeaa25d95f01aa0c7f55d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-2.0.0a4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 dd63ffeeece849ca15810bc7cafcfb9c33e3611c99497c0d9d29baf6e839bfa7
MD5 508095f45cec5aeccfd9f3ee3d6fdd7e
BLAKE2b-256 6552a9737ceb65eceb066e2396ca760841e4003d6390588027f702c52c19aa18

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-2.0.0a4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c9977b145c1fc56ef1b6688560c7212ea6a55f4c3343dd2bacbd6c02f8560c8f
MD5 148c98c8d49eefbe892a5a8ad8ff1aa9
BLAKE2b-256 d63a1e28d3c3c896f0eef99fca18a5c58c10282946b22daf56b42913faf7ec64

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-2.0.0a4-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0596372e795afd0f0c03ab107e473a194039c3bd0580939a17857e8b49ed0606
MD5 c5d53ee5e6c942a3ffa1498777881e81
BLAKE2b-256 297e7e1a5df73bfc7d36ef455c6e4257b4872685cbc338ff7fb9367cc1bfaecc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-2.0.0a4-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 071a570795e9c3840f68201a06d17ac2da1fb5679cd7760a0c777c4df4d07690
MD5 af330e5aa90e5f16ba401097da233109
BLAKE2b-256 46faa52a5552e77ee1afa5a475c3089412d7390dec5e43752fce7ce2302361e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-2.0.0a4-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 63b80a12cda136424be21a3401eb374d9fed9bd9b916b6ea1743ace3476d996e
MD5 4f604729a17f67fd54bf55e5e38b45fc
BLAKE2b-256 213ee1a4d701fdc1a930f1de1bbb74df30c2a977181ca4aef1fdb1829a152aa7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-2.0.0a4-cp311-cp311-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 469c3967d035788fd2a62849a8c3439a4a07a7a85b8ac833c3e0c9e8f13c4737
MD5 9f347a915e751c78e30aa5cdea11884a
BLAKE2b-256 fa74c7e12d5b2c72e3c78b0fcad8473599b04d787973e5111a44b12a9290c325

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-2.0.0a4-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 47bb38e8909d838f37d43e1162243edc642660052d81d89ad7fec8da6f664d3e
MD5 d85bca21fd5d8e4aa7558edb508929ea
BLAKE2b-256 245fb139f10c187cfc9e1d21087b0fcf8ed344595591b427f38050d7d584c4e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-2.0.0a4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 91bd8ddc047e5b3dec02733ebff0b7d3a5b8f1af9a36ee14ba2b43b918fbc3fa
MD5 596c560d47c0546f2b9c3b69e9db935f
BLAKE2b-256 6075203cdde7187ed57d0aec54ee6ed703ce68f27d49bee1501b0353c70461cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-2.0.0a4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 61bcefb09a81c2673da17c3063d46079456367011c38009e23e8e8feda2842e4
MD5 fac104c69d517486db89448695e844f7
BLAKE2b-256 6525c7dbe7c9ccaad3d1c7cf9a5b4171838d5c6f4d4d1c4ed1148f2616122f71

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-2.0.0a4-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 236a8923f269b82f8ede7660c926bde29dea3949579cc6ce69872c647f4b79cc
MD5 7d3758e67e5048370ce53956ea92e28b
BLAKE2b-256 33b4347b7933f17884ea5f1897e3ee08f9ccc594f824b67ad3618f757f52c5b6

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