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.16.tar.gz (439.4 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.16-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (18.8 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

icechunk-1.1.16-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (18.9 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded PyPymanylinux: glibc 2.28+ ARMv7l

icechunk-1.1.16-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (18.6 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

icechunk-1.1.16-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (18.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

icechunk-1.1.16-cp314-cp314t-musllinux_1_2_x86_64.whl (18.8 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

icechunk-1.1.16-cp314-cp314t-musllinux_1_2_aarch64.whl (18.9 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

icechunk-1.1.16-cp314-cp314t-manylinux_2_28_armv7l.whl (17.6 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARMv7l

icechunk-1.1.16-cp314-cp314t-manylinux_2_28_aarch64.whl (18.6 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

icechunk-1.1.16-cp314-cp314-win_amd64.whl (15.3 MB view details)

Uploaded CPython 3.14Windows x86-64

icechunk-1.1.16-cp314-cp314-musllinux_1_2_x86_64.whl (18.8 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

icechunk-1.1.16-cp314-cp314-musllinux_1_2_aarch64.whl (18.9 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

icechunk-1.1.16-cp314-cp314-manylinux_2_28_armv7l.whl (17.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARMv7l

icechunk-1.1.16-cp314-cp314-manylinux_2_28_aarch64.whl (18.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

icechunk-1.1.16-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (18.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

icechunk-1.1.16-cp314-cp314-macosx_10_12_x86_64.whl (17.1 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

icechunk-1.1.16-cp313-cp313t-musllinux_1_2_x86_64.whl (18.8 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

icechunk-1.1.16-cp313-cp313t-musllinux_1_2_aarch64.whl (18.9 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARMv7l

icechunk-1.1.16-cp313-cp313t-manylinux_2_28_aarch64.whl (18.6 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

icechunk-1.1.16-cp313-cp313-win_amd64.whl (15.3 MB view details)

Uploaded CPython 3.13Windows x86-64

icechunk-1.1.16-cp313-cp313-musllinux_1_2_x86_64.whl (18.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

icechunk-1.1.16-cp313-cp313-musllinux_1_2_aarch64.whl (18.9 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ARMv7l

icechunk-1.1.16-cp313-cp313-manylinux_2_28_aarch64.whl (18.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

icechunk-1.1.16-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (18.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

icechunk-1.1.16-cp313-cp313-macosx_10_12_x86_64.whl (17.1 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

icechunk-1.1.16-cp312-cp312-win_amd64.whl (15.3 MB view details)

Uploaded CPython 3.12Windows x86-64

icechunk-1.1.16-cp312-cp312-musllinux_1_2_x86_64.whl (18.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

icechunk-1.1.16-cp312-cp312-musllinux_1_2_aarch64.whl (18.9 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.28+ ARMv7l

icechunk-1.1.16-cp312-cp312-manylinux_2_28_aarch64.whl (18.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

icechunk-1.1.16-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (18.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

icechunk-1.1.16-cp312-cp312-macosx_10_12_x86_64.whl (17.1 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

icechunk-1.1.16-cp311-cp311-win_amd64.whl (15.3 MB view details)

Uploaded CPython 3.11Windows x86-64

icechunk-1.1.16-cp311-cp311-musllinux_1_2_x86_64.whl (18.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

icechunk-1.1.16-cp311-cp311-musllinux_1_2_i686.whl (18.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

icechunk-1.1.16-cp311-cp311-musllinux_1_2_aarch64.whl (18.9 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.28+ ARMv7l

icechunk-1.1.16-cp311-cp311-manylinux_2_28_aarch64.whl (18.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

icechunk-1.1.16-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (18.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

icechunk-1.1.16-cp311-cp311-macosx_10_12_x86_64.whl (17.1 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for icechunk-1.1.16.tar.gz
Algorithm Hash digest
SHA256 5d66cabd3e1bc1fd5c562ed277a01cb9f31f0c66598773a429777a6df5e94838
MD5 fbad9c68b3280b9901bda8055d326633
BLAKE2b-256 c9a7cfc46a4edc065e16a3cce035f1e20d654319b0444d85c38c0cf5a699f2ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.16-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 121bacf97c7d8158c9baacea1e64f6657d37104e1098e79ab7a6c5860774f498
MD5 3ac1d807f448eb934a4feb5c3914798b
BLAKE2b-256 5e6a12e5a846f0939a2fb8979ce15841d564594c38c8dd13de1d80cfff92bb50

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.16-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 baa8f69436f4ccf5aa3ef0ce855feaa3df697441a2ca5bdac1544b272a32ce87
MD5 a79b84d57994be734a6076f9590b1c9f
BLAKE2b-256 6aa872f90d7bfbbdd958f13664f2ee628eb76b10bfc39e93e604761b9ab6485c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.16-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3622b7b8d3221ea3a272800ce4d7fa514c73729608afe9106c52308583b1de3b
MD5 99ee6ea568e224e21180fd4b03e8c480
BLAKE2b-256 cea739174ef075471e5fafe634245c2dc03565d579d06e184cc213b3020ffb7a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.16-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a31fbc9bf7bacbb22b8fb21ad4948c0ff9c81eb08baaf7a8229dd7f6ad53a6aa
MD5 082e57df4717eafba8570f896ede8547
BLAKE2b-256 45b0e2ca7503615d049ba808e0c7339193844893157732d10b341d78c807eb2a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.16-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 a3679e10e68192a266d5bf7b7914eeb9bd96a9da2ce0809b38f79065cef4a842
MD5 b8de5b3b7db2d67782e366ccb969aec8
BLAKE2b-256 afd2c9c46d726acdbb2b09310727530c6bfc3a72c2f1927ed00e5cf12ce82e6a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.16-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2d6e176f000d1fb095102e032869e884409a11b70dafeebca0918733c027ff6c
MD5 bd799821487680fbe2c50ecbee2c63f2
BLAKE2b-256 a5eb81230b901dedad067a000609b2eaa595a1b5f4462d9f963aafdb064f22af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.16-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 867fbcd65f8c52315bd0e6b616397fc3b961034db0aa6c5d7433f732248276ee
MD5 83820b94d0cfc1a6801d486c9a716e8e
BLAKE2b-256 f510fe41c0fcc79c7abce2abbca5a697bea7eb3289f71d3e1e1b509c3025500e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.16-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 49ed986f7dd36749523f95e2459ee9b8072cf4311071307a3fe13dc69a62e394
MD5 4b9f847e448b449f660fc8c6fdd22a34
BLAKE2b-256 c328fc6182db3ae014ccabd2305f542dd578bef29c633503c3289220db829652

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.16-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1794d83ca50391f500b51904fcef14111d8c92a03c07b6a3b697e0124127dd91
MD5 c79d0c5c2b812241f96e8cbf5b746264
BLAKE2b-256 e69577c9de4802ac5d162231e1fed7052502200877f11b54c9c9dd07c7d335bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.16-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0faf713cabb47c4e0d51773fffb3abd45ad3b21e85a05fb1b4d224d75ab0e447
MD5 31b60a2a76895f19de3411e035e61044
BLAKE2b-256 abd6106a91fe62e3a4b3404b5bc39a62e521c09ee91865078c85b2db6ff146e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.16-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ecc98bb8571568af98f62e6227a5f516725519a4cdd883d054919c60e5179313
MD5 bee64fc844804a8a608a4f225715dfc0
BLAKE2b-256 46fb8009c8fe25b0130023ba9920fe4257f31de6947886613620669b4173723e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.16-cp314-cp314t-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 26f5b431b339ac21c103ce24b74f5828383d11325da154d34e1ba6327f7605ab
MD5 6a4b2949ce20b8ca7fdb9654d4a57c19
BLAKE2b-256 01f34aad9bd1555e32498a66b80e6976c03f7002266634561674730a0ed8e24d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.16-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 84b75394b0276f1da067710727c2e0e3686df4270c43c1c41de9cd5201b95e1d
MD5 18dad2beb9e072c04843e3ee902a3ee8
BLAKE2b-256 8e0dfe9809b631746020c1893d23c972d2345c7bc31832a1d49fe0d6f044818c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.16-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 4d17538f7eb2a59af3eda8a76dcdf310f7fedf6e60fce30ed19afc5d0590d1cd
MD5 1d9858ae96bb7807c5a9953cc2153d20
BLAKE2b-256 2ad58633c23e48a483df721a0984e84685f17dc5afb016f460932b272fa1c635

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.16-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 589372b9e89da056163e7799ef1892bbab9e0c9786e28a58a066ae66232b83b2
MD5 c595677dd70d3301125c36f2f115cd82
BLAKE2b-256 39ee95a8500f7bcaeab1177e9a0a1f6b69382b2539eaea01255b1ec3452ceede

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.16-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 788928eb53de4f66394006a9e5feb5c978a8738ec2ca0095136dd2a3cfef1691
MD5 8e42ab709747fa5a50c939f11f71a1b9
BLAKE2b-256 88ed05cde4836579b235db67ac8c482786b2b4b76875401027715aafbe67aeeb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.16-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 006221c6d915bc1a1748226e636038dff0ecf3595e4312a4e2e58917f56d219d
MD5 0d995567cc1aca13abd407afe5071b89
BLAKE2b-256 0c64f0ba20b671480599e803736bff87581108195e465ca1ba1a1e3b2c39b473

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.16-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5f01e6bdeacfaeb360f4bd5c0caab8e1b98a6da3ede6a4bf53a7fee7177a4259
MD5 4638fafbb6a36a84171b4abe26dbc674
BLAKE2b-256 e9106c94a4df8978c8a39eb3bd65260ff829901765b12e75c44cefd16dc8f2cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.16-cp314-cp314-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 9f98956bb0b005edc84ebf0f9fcaaad7fa129d14b266d1c7047a24278a5b7275
MD5 c442fb2174b1e4b2265d838bc4ca5f2d
BLAKE2b-256 0fdd4fe58e41a448026385cb6403cdf271f042ede4d578745ff4038874c7688a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.16-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0482177bdb864b5cdd01d0a0cd7ce1c17100e6dabf0f555d8a27695b2baade66
MD5 8ccada8142ec4db8242dbeab6e2d44ea
BLAKE2b-256 da09e2a637ecc3664687231e4933820173ebdd67cc2cd031cf75ab5e4de8be72

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.16-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 08a71b1a4c6360a379d11f564497347b1a68ccfc1d1adeec61ac42ac06f35610
MD5 a588e6e0d30334125f61c1c6e2323197
BLAKE2b-256 65e196ad807462f7e647c821318854b8e5248ea0706aa137bcce491927cb46d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.16-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6ade1ec04f04d2fd421281a0fe47b384fe8a6a9c0d5e4a94f4615b24f00ccc4a
MD5 d8776edc265d09172433d0bc98e514c0
BLAKE2b-256 f78158ecace755b7aaf321dd8a8a0a79784ba4a795036a480cad8bc4aa5fab48

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.16-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1c70ad660539ec18e30523ff43e990af0f06d6bfb6536533c15aac82fc9802a1
MD5 0dbe2d852b51fca23f26e2024adad324
BLAKE2b-256 cb349b89fdbbca4c701f41639e585d447b977f868f1b8063cf1baeee8632301e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.16-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2441970127417190a63f6e1fd830a966b16529bcdc04e14152adae539e8ab17b
MD5 8a0d91407158f228f0b75ac29c74b797
BLAKE2b-256 7b5247a5a458da79fc32b707f3cc10308f28b1e218514a7f6eb76d8aba0f7771

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.16-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 54af3f12ba6ed7f3111643d62c4432389ea33ba76fa6de391e4ae980430f9d4e
MD5 51931170bb737aa39020310763502f99
BLAKE2b-256 8f7fbf5d2a77aa32f68d68aa74c5e404ac3a2433391706f9c1d28144a570c371

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.16-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7d8aa491764692fb6d1ebfb46f0fde682c844d1593ee9550bd04534deee800c4
MD5 2f7fc5faba811e0832e93d0020436d44
BLAKE2b-256 f4ca098f763d70af4acd8a241324ab7ebc997f33ceca22c272b48e64c46c0e35

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.16-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8787454de2f6ced85e0d9b5c97b6d9ce2648a0ee23b3482de1760e8655d55ce3
MD5 82118139c07fc90d0d87c96f6d7e24e3
BLAKE2b-256 b5a5e340da3df41c0ff29ca039f2f27a8c35b46e37ddcd68aaaccbbec4eba2fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.16-cp313-cp313t-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 b820b2876d7f25d59140d5c743422e1981e9384315937c63a17ee8fb32b3bfde
MD5 586c134afd11b6f3162cad7a2a1983bb
BLAKE2b-256 66c1f0ee07ca490e1adadce2f859efe952cbb379b1d9841427e3d763d2f76f30

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.16-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 dee45354b85a7c0d5b46eb5942a6b4c3c6c129f46057e40b2ddf90e04fb4a4a7
MD5 56ed4dfd24f79f5d98a0ac4fbf8642d9
BLAKE2b-256 bd3ab5c46cc4e8faa809606ccd619d64318e454424cf43a91d60ba5b490453ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.16-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 43310f93b2ca33bf6225c7e164042084bd973859f62d83837d3c1668fb08bc64
MD5 32a631507b35a79ee086b11a3ff1e241
BLAKE2b-256 a3134393e87a6580cd7aca9f0a6554695a133f1845ed9d82464020ce53868cd5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.16-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 42581342c87bcde7b00edacf13fa32652678ad9f08b8013d970484f558f299fd
MD5 59b5ee546134f4c3c5f9be6b63742d9c
BLAKE2b-256 89e1ea7dd5a1248cc82fed3be490084723a33ec75a73abe86c3242e5c934c269

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.16-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e6a2ebe52db2e82c63cc091d3d740028967e8e0134887078ff8620e64c39ec48
MD5 25d718632296cb783fe80e29b5004024
BLAKE2b-256 9561009ba9d92e6b07ed14219abf3d9e2b51860268d21809b665190fe669afde

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.16-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6619500da2b3830c4850fbea96db42bfa2abda55171e44c9bf18eb536233ea75
MD5 cda919af7a17d191e251296d7b6e30d4
BLAKE2b-256 8125e922cd230b9cb13e9b550769d94fa2ee56cf3b691023a7a1e35ddd3e280f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.16-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2324f665ed2954da3aab5303617715f169c96584dc821dd647f35b607b6da8b2
MD5 710739e55445b13288137454d85abd10
BLAKE2b-256 1143794c52b85fb0c6decc0a4491d8be9f9c1fa740294624820eb413be5fe1a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.16-cp313-cp313-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 a7b06dc221e959400afaad9fbcfa0c23a0e02fda56732a7413ea8e4381fa5df7
MD5 fd8586e2982e000903bc37da71881ccf
BLAKE2b-256 67563884e5dec7397ae25a4f57b05210f3bb57c691d2842eea027e01c7d0bfd3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.16-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e3e22a48341737529437f782e55131ffc3e799b8bcee3ae547e2b9388fb8ca8d
MD5 b45d71a9420dc618dd7c21d92a53a030
BLAKE2b-256 a42894f639dfd65b92cf69bd2e34f8435564f761fc20be48b6f2efbfd66fb461

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.16-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a2c101b46ab03f3cba02d16450e2535ef4ebc3eb76ece972cab6e99d46a1cf09
MD5 16af9b275590d80872b8f35e356bb9b3
BLAKE2b-256 70192273335ea967aab80c234a5ff91751c3bccc5f588613296fc0dc1c8f4fbd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.16-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9b38bccd8be05ba82154aafd1bc2de679ee03a8084416691d467449ed0e411ff
MD5 843bc03c05077dcb59de3f5ad8313db0
BLAKE2b-256 fb723788360312a19c1fc8414ba9a463918b83858c551a80ff1405ad949db63e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.16-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1962b6ca8947f1ceb23fa3c2ddfe5dd38b44d32a6a002fda751c3aab2c40470c
MD5 f49ba15dadf3dbf6b5ccb6c8decf5af4
BLAKE2b-256 979420dbca86b72a9ea44d368f0dc940915f1a98dd2a8004ce69f15fef8469c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.16-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 fc6fde1f228d8601f314195e3e321bec47ffb89ba4776a157bbb35090ef0b552
MD5 3ba64fe70271ec0a4eceae1a8ebaf68c
BLAKE2b-256 4c8a4adda00cbc167fc02f9d2500365fd72378527e7a09dd1641fe5dd72aab47

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.16-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f76d749909b9af3f08fa3e93511365270896ed1e020d17039acdcea673f9421b
MD5 537904ea0903a578c5ffc99ff8a801f4
BLAKE2b-256 cb393a07fef9c82fc37abf4f404c5323dd2cc71337b1e80166dcee1989b64e51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.16-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 99571d74be0a9d0266917db4d2bcb052be8ef26d6775a9c5ba9fbe6927bcaeef
MD5 568bd792a87b19b504ef3eb44b3fa761
BLAKE2b-256 92c9b610317da70184b9fa1c678d2beb64cde52a02f46c2f34926abaefcd95d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.16-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ed6511ff1ae2bcafb6c47d7e09ccc62804fdc2b39fa46e87d872e8a4c86d9a42
MD5 82a3cfcb24a3627ea9b8734cad04525c
BLAKE2b-256 8ed5c86f8b8554c537a0d2aea77b4df2d921c58d365efc88858f0c286eb9105e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.16-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 91643fb48d2fe78c9d2279cb80c599723e92127be867593568b461bf6d633e26
MD5 4b1cb82c5d20332425932ba736aa3368
BLAKE2b-256 796b2293772372f98a29294d834b7549ac14900edae4f15f0d413a2750010134

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.16-cp312-cp312-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 4e6c1c57e84b1a700f9485cdb122ec598c67b528ad29b4ddec3c998a13736359
MD5 60a274f2eb92425d598debd09d31d3d7
BLAKE2b-256 203ce188c858b2f3fb4f6f5c0298957a3373fd6fcf0ecd227cef641016004805

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.16-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 58f0898cd27dcdb595a7078889a79251545dae4dfb564b9f35abb4ae6ec09d8c
MD5 4ec8f5ebf94d1f603aad10e18d1dd9c3
BLAKE2b-256 1d3710d7aad039f2ad1c2d15669c35b8d6987922dc930ea1dac5471dda1e5d63

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.16-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e8bf413969bca2fdc1ded13941aa915ac81f4fb630869ccca13568baada4ff7a
MD5 44f66c76756e3c2748211f8ade4cce76
BLAKE2b-256 740ce0a0c3d11a819fb8bd9df6cda254c84c445bdf41f55e7306b5a407fe261d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.16-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 888fbbb86ae8f038ca27866a79de87de95ede508e07a233c538a3ac6be72dcc8
MD5 c1cfbb6ff8c9346d7083c2fc1bda20a0
BLAKE2b-256 5058a1f41719d3cc774f9f7d9ee3fddbef073962c513a3b90dc86bffc1db50d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.16-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 82ca7a4ce735d2460cf8015338c9a6a37231ac041cb217c0396635e7717f7f9d
MD5 357fe83a34bcbe19f2e401c26d133f41
BLAKE2b-256 d20ce02b88a51897b11cc3576811fcb626cbd17685c6fd0acce1b64cea6df2c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.16-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 10b7c85cfa4379ee3456e49a8c40e8a551281fa6320e28801d951bc8ae82e972
MD5 5fcbd154663a2c6e71a33c7e3bc25177
BLAKE2b-256 63d78f5e08ccd006405afde724f4a01290d6940e06ed9f14958d733e5270cfd8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.16-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5f7a77f8d78c546f7b78d7a9ec9e6015f7a0b8d802734f3d518e2d3e244eb2b9
MD5 3de3074a852daca6a15b825613d2f131
BLAKE2b-256 65178c4232ac92664d2af4e298146bd93c4aeff5b95c710882d12f9806b87fe4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.16-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 373c87f404bdfc815c90fe6a1c232ebcc9d56f04b459d508f2584ef240e6fffc
MD5 c3c26ae6db1ad2e842935c4a8185c29e
BLAKE2b-256 8d8e34254ba3eb7f721c638b8a30d3ea072f3ad357924431fb4879b2600dacb9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.16-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a01ab7e1dd48617eeec8b8b868d751d9b97e0ddbe9452ca649f116a2ad776a9f
MD5 89e36b7e347e0aa92f2592b5d042dee1
BLAKE2b-256 f5cd6ebf8797ec41817eb2cd46387208f6f99942980fb09c2f36d3845b949da6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.16-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7b9862c2bb60ac4bb9b3bdffcf72893e689df860e89e9f7c7c54777c8e257496
MD5 b4856c340d426dbec544663e6154127e
BLAKE2b-256 7eb6b0b548262c6e7c9d90a7e322af9b62604b0019692c157b7e996039dc6fd4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.16-cp311-cp311-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 2e397174c45e8ac722d1420566d3c3162fc389adc8a71188b9445559eb5732cc
MD5 fcfdcf3478fd194be7fd470bc4452d90
BLAKE2b-256 3849a1b7dd9325021142a2adc24d632c5007eeb5fd4bf8534fc0d64378667437

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.16-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f8b5b2a1502d2ad238ad36f5150b815121a8ee3121ef07734ca0a51f1ab2c5e1
MD5 0160ddf595a5d9c9ecca4780bcbfe9f7
BLAKE2b-256 7686c296373132056b7539c335e4af2d90d2507aed9c7aaac204d2d6c626c701

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.16-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 83ec36cc1c7d3b7baa26b9e68ecd807ee3493e4ee9a37b0d4272a71f7d99f120
MD5 9e6afce82d528b351735942f1420515c
BLAKE2b-256 da15d820ad752b2784151b5c4f11b640f276d0476e8b434f876e1e0669e52f7e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.16-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 971df2999d38bfb3aba81a5611ed3bfe3ab56dbdfff36708c9269fe197bf3f1e
MD5 94e4887a7999e8d95e58178feb04ade5
BLAKE2b-256 f8f415ad9de186768c448e6cb3125e24c8729d77be264885c6b1891069de1e3b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.16-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 874d0e25a123cc1e41b91ac0794a41800aea1be3358429047e005397c6824384
MD5 8d3a44f4c70e06a2070d3216387435b7
BLAKE2b-256 c679ec99cdb7decf906cb6811e1fc3a55362e9a347f00ce129d405f5c6edd965

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