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.21.tar.gz (404.8 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.21-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (19.6 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

icechunk-1.1.21-pp311-pypy311_pp73-musllinux_1_2_i686.whl (19.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

icechunk-1.1.21-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (18.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

icechunk-1.1.21-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl (18.0 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARMv7l

icechunk-1.1.21-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (19.0 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

icechunk-1.1.21-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (18.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

icechunk-1.1.21-cp314-cp314t-musllinux_1_2_x86_64.whl (19.6 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

icechunk-1.1.21-cp314-cp314t-musllinux_1_2_i686.whl (19.2 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

icechunk-1.1.21-cp314-cp314t-musllinux_1_2_armv7l.whl (18.3 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

icechunk-1.1.21-cp314-cp314t-manylinux_2_28_armv7l.whl (18.0 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARMv7l

icechunk-1.1.21-cp314-cp314t-manylinux_2_28_aarch64.whl (19.0 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14Windows x86-64

icechunk-1.1.21-cp314-cp314-musllinux_1_2_x86_64.whl (19.5 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

icechunk-1.1.21-cp314-cp314-musllinux_1_2_i686.whl (19.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

icechunk-1.1.21-cp314-cp314-musllinux_1_2_armv7l.whl (18.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

icechunk-1.1.21-cp314-cp314-musllinux_1_2_aarch64.whl (19.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

icechunk-1.1.21-cp314-cp314-manylinux_2_28_armv7l.whl (18.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARMv7l

icechunk-1.1.21-cp314-cp314-manylinux_2_28_aarch64.whl (19.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

icechunk-1.1.21-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (18.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

icechunk-1.1.21-cp314-cp314-macosx_11_0_arm64.whl (16.8 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

icechunk-1.1.21-cp314-cp314-macosx_10_12_x86_64.whl (17.8 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

icechunk-1.1.21-cp313-cp313t-musllinux_1_2_x86_64.whl (19.6 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

icechunk-1.1.21-cp313-cp313t-musllinux_1_2_i686.whl (19.2 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

icechunk-1.1.21-cp313-cp313t-musllinux_1_2_armv7l.whl (18.3 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

icechunk-1.1.21-cp313-cp313t-musllinux_1_2_aarch64.whl (19.3 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

icechunk-1.1.21-cp313-cp313t-manylinux_2_28_armv7l.whl (18.1 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARMv7l

icechunk-1.1.21-cp313-cp313t-manylinux_2_28_aarch64.whl (19.0 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

icechunk-1.1.21-cp313-cp313-win_amd64.whl (16.0 MB view details)

Uploaded CPython 3.13Windows x86-64

icechunk-1.1.21-cp313-cp313-musllinux_1_2_x86_64.whl (19.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

icechunk-1.1.21-cp313-cp313-musllinux_1_2_i686.whl (19.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

icechunk-1.1.21-cp313-cp313-musllinux_1_2_armv7l.whl (18.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

icechunk-1.1.21-cp313-cp313-manylinux_2_28_armv7l.whl (18.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARMv7l

icechunk-1.1.21-cp313-cp313-manylinux_2_28_aarch64.whl (19.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

icechunk-1.1.21-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (18.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

icechunk-1.1.21-cp313-cp313-macosx_11_0_arm64.whl (16.8 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

icechunk-1.1.21-cp313-cp313-macosx_10_12_x86_64.whl (17.8 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

icechunk-1.1.21-cp312-cp312-win_amd64.whl (16.0 MB view details)

Uploaded CPython 3.12Windows x86-64

icechunk-1.1.21-cp312-cp312-musllinux_1_2_x86_64.whl (19.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

icechunk-1.1.21-cp312-cp312-musllinux_1_2_i686.whl (19.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

icechunk-1.1.21-cp312-cp312-musllinux_1_2_armv7l.whl (18.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

icechunk-1.1.21-cp312-cp312-manylinux_2_28_armv7l.whl (18.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARMv7l

icechunk-1.1.21-cp312-cp312-manylinux_2_28_aarch64.whl (19.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

icechunk-1.1.21-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (18.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

icechunk-1.1.21-cp312-cp312-macosx_11_0_arm64.whl (16.8 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

icechunk-1.1.21-cp312-cp312-macosx_10_12_x86_64.whl (17.8 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

icechunk-1.1.21-cp311-cp311-musllinux_1_2_x86_64.whl (19.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

icechunk-1.1.21-cp311-cp311-musllinux_1_2_i686.whl (19.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

icechunk-1.1.21-cp311-cp311-musllinux_1_2_armv7l.whl (18.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

icechunk-1.1.21-cp311-cp311-manylinux_2_28_armv7l.whl (18.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARMv7l

icechunk-1.1.21-cp311-cp311-manylinux_2_28_aarch64.whl (19.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

icechunk-1.1.21-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (18.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

icechunk-1.1.21-cp311-cp311-macosx_11_0_arm64.whl (16.8 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

icechunk-1.1.21-cp311-cp311-macosx_10_12_x86_64.whl (17.8 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for icechunk-1.1.21.tar.gz
Algorithm Hash digest
SHA256 0c42aa58de7d60d1eb8cbcf70fe32633825cd1442b327e39e99beb7477009098
MD5 513a6806604ea714133ac8d51d149cf0
BLAKE2b-256 65a6310fcab581c7a34477ac039dee70e31496a5754d282777be9701bc229323

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.21-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7cf1bba0bc1911eeabbc720a50002faa83bb0ef36de8d8f411b261dfabf63c7d
MD5 789b28cb55b472d3df2b575050f59111
BLAKE2b-256 4a3d854341f7ad72069076b69e2db7de829afb0f7cf76a9dc2c1a5ecaf490fff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.21-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b17a0bcf0a91eb91f0064323d65ec822e600b91a08d123422f1b7e7541090e73
MD5 15c319aac19aa2036be7bd52941dc21a
BLAKE2b-256 a4e7cff6bd9621fae560d74725825da645e6f9b3dee9ef26aebee8c311023e6a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.21-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 aae759f25484e230c400d14470a048fa3a2264b0abc7019cb5262b77b80f3d0e
MD5 2532e88f83dea56dbdce2cee76bb2823
BLAKE2b-256 899f2260f340d58c51defa5dc536cc4aaa7f4ed7c54af98880afa83881e8d5df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.21-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 deb299c57ee264d285f50fd8bdb66200d920501ea7c0c0865c8a9214485f0faf
MD5 68be57e48c61746b30d49599f62edc27
BLAKE2b-256 5bcc4154721de3a46cfd94fa0360ec70f6b2edbf3d59be1361bc551b3e780013

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.21-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 50af6234dae41cee97147ef7134cf474cc6e8e91413fb6a42e978a83aed95045
MD5 1315b531d5ae412b7ca674979bd56ed5
BLAKE2b-256 81060eb32686daaf08118bdb62aa705033279d4f647c11ee542d89d06481a393

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.21-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 87b8ce0d9439e855df2e8bfba1c78213992e3bdb3ba39d7dc41061d1b2ba0314
MD5 4dcaf759195431165823c92d19224de1
BLAKE2b-256 fa27fb13be572d420715fcca694fb5f6076794acf52a851739159bc2c6646e16

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.21-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b373d69f77f1a6022bdd076e246e7dd5068b7208bbe7762ea351c4ddf9f2907b
MD5 d1388cb2890dbb26fd78549d13c46a0f
BLAKE2b-256 b69621c91a5c262a216007e435ef063715a483c07eace14524023c667c25950a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.21-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 710c564afb04dde7d8333fe6b24a652f2f6ff0d0ed9ed80451546276a2ede922
MD5 89c112fef90f33b28bcc8972a262e2be
BLAKE2b-256 d267a6c64d712467fff44b3fea44f47b4ccb74efb67c47426b7946d6d4f34391

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.21-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 42663cc29611e83eef945e84f85fd6e5b343c6b0b9cf19ea15792798ac3747f5
MD5 8cc2038b0f453e329e372acce9bf6a7c
BLAKE2b-256 db66c95e538e6d28336214fbfd7fa32689cc44e4a889c4d00b2f709bc3d40007

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.21-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1a2ecb23ecfbe9bf775f1ccb04542a10487720d8944e7ea3789b12b9eb86ae1c
MD5 27dd1a9ead84018596fd21a9c136be1e
BLAKE2b-256 ee544d85eeac9b97a230ff4fa0e6df52589a3c2985b41e8830e099e1daeaf408

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.21-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5cbc590f8887babb4ae5f62724f57ce3c9203371ed680618001108d27365b5ad
MD5 4e1b311f0cd28135b460c11754ac3cc8
BLAKE2b-256 f44f68b82390980fffd9e9a9a1ce29e8933ab8f2dc210d8a2d0ed2aaece2f817

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.21-cp314-cp314t-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 23f7666de0c646194e8478c13e023ff07551536e20a975735800fbe101f152eb
MD5 ba657e22e403f1c62292b3d76d163792
BLAKE2b-256 9fe62607367e90e8538a7c79e8aab2e684497c3e6579a54c609b6d04cd67797e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.21-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4cef354af15d794f2e2c48878060e5c040d44bb011afaa6315a3e6a5dcaac38f
MD5 e9d1dfcbbb5477dd052a005855cf11d9
BLAKE2b-256 493e63c92a7c499976b54c3d316fa5decbafdd6fae79f9038724ccd5db4e5697

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.21-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 f9fb63c648a39dcf96dfd603a19d4775b1206cd3ae1feddaaa3b4574757e856d
MD5 0d1157b9d614b5730695e4441cb8c4d1
BLAKE2b-256 ca1011ff3d6c6256c2f2e9b67d6a7b7ed3621759961b0e75e542309574ea1788

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.21-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c80831b4df2c83ef9dc4b9aafed703e4df79910995fa983d20712aaebe573dad
MD5 79a5f8f0e2042a705e1d0acdfd6bf767
BLAKE2b-256 36231aee7cb6aaac118511ed25cf636f962434dd2efdbe3fc42f1b66b366fa4b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.21-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b16f694f25060e9ba8d0fece08ce1cd000f0478d4e3a5ac6bf0ec9a6b91b3fcc
MD5 33c9b90fda17afc90efc874b80af8b28
BLAKE2b-256 3ce9c4ceb75cbe68ff5b4d3d38bfbf85b561865c83aa372622dcf7ffb899f57d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.21-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 857a778a3baedc17e54eff226ac84ee1d064616c55a8cb6cdf990e2ef17e99ec
MD5 327145e76be5f2c0195074e643fa1d99
BLAKE2b-256 2d0a80906b662d3a0e5c36ea14bb117fde130512aa7620c199e62a5d655a7794

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.21-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bed9f63de486e95626947076a60e2ccc98d1f074f00cd8b5a2d8854e1ed9faf9
MD5 f6d9f1ac5649b8bbc05ca342145131f8
BLAKE2b-256 bf38e8d2a2571eb2a5a6e1b188b887b06efa0835544ab7eb9cb425d1ed03a366

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.21-cp314-cp314-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 98163abe19cdec976370563b1c1a45ce9c28300ecfcca6d533e99c7e6ff1d735
MD5 7318a75072ce7b0fff0f2d578f61dcd7
BLAKE2b-256 84c48a0e29c4ecf28f43fbf22d229017766fafcf8efcbb8a2ab622c02bc1462e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.21-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 def0eefc3938b02fba654041c533cba962ce4c48f5e00a95f449e1b5a91f25de
MD5 78a420f4f1dfd56ff776578619ec6654
BLAKE2b-256 0af0e035d524d8a14aa41dabbf68f05c3d3e0618cb5e584c5e3c6cd25a491be3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.21-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 92a3657d7bd11bccaddac91ebceb88556c08abb79d854b22ea7985474f9fad06
MD5 fdc9144f370fad1f1d2386afb043f13b
BLAKE2b-256 44c8e82d19cc31020d5b0287b2d73cb5c6a1b9f29d7d0c64c3664d0138303142

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.21-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c3ce0b84d1108b79700abcb2bffaaab498f862320ad1ba06062be2342fee2eae
MD5 2a602961cdf9ee9cfcc25e1dc3374f33
BLAKE2b-256 b817af172481075c661fe1e69e9f26f34167c2d173be7356881ecd11063c9ec1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.21-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3284499cce8894f664d90d84dc9f492d89f73263303167d420bc809b5fa2d9ee
MD5 3dad9589ce0ed020cec2d12b6bf8fd54
BLAKE2b-256 09e7e47a70e033d5fad724ee2cd733f4be534bef7d0ba5e2e39e3d4de61d6676

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.21-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a85308ed9f642e295b05f71d4b4063b77ff393831d54f4faf565c35ec9cf8602
MD5 ba7329e918eabc6920df29327577f9f1
BLAKE2b-256 7c147af7b90fef691b48afc95801ddfc6c581939cb359de3223838256b7b6ec4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.21-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 487c801e8c189d5f6ff00ad544651220da72ab1b5d6af4c54355e303a7a2d321
MD5 d925dca075498db1af4e92be77dcb1bb
BLAKE2b-256 f715dd5e0260d9e3d1b6a877fab1d1bd449796f04b7a68576dbb01f456aa1ec6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.21-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7f8f2263e02ecf4d6e9d0d6826e1fe2ce9d235ab38c3f4d7f1608346830cc66b
MD5 c7fd87c06943c716059c6a4fc0db6386
BLAKE2b-256 4e811dc0902eed14eb491bc97ebaf65ffb72a1d9787da8bf7c658d7a196afb2f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.21-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9e9890ab986cff407fbacea5f4e4060d9d2b7e2aaa8ce716a8d6dae22a773f0e
MD5 f591e24e34a7db77d7a49ad7676ee34e
BLAKE2b-256 f3c1e59d8d348f605047ad7ad3b49354f67f936af929da9416a53d64b4cc1f84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.21-cp313-cp313t-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 3d977b2cd4a2c142c5cf02b310545dab552534a17e233d734a7d2653fe41a169
MD5 2883650ca5786a29ca0dd10a456e7477
BLAKE2b-256 b754b459144f9ca81402d6bc478d781def0bf9e7c998413b642d76692f63c073

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.21-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cfef63e6e44d251e5cdc9cb4293a33f6f9223246719d5ba4436d8465a8504133
MD5 2a04eb0107f109cdac517020946e75ad
BLAKE2b-256 6b6e6b4fb09b33af2b089c0dded929704e378f7d108e990ddb7de76d452f9da6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.21-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 7dba96f8bc80640b1644905e238871f436020b94587876651d7bdc5a3d50d763
MD5 06ec0d75013a96ef97189fcb73c21593
BLAKE2b-256 d8ec27b8d6045820ff022459e619e29b9816bf21d011f090400969961233ac1d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.21-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 78209732a54ebdcea68669be2f19654e77ef15dc4895906b789b030332826094
MD5 6e85db70a1d536839fefa2df73e34176
BLAKE2b-256 2ada096c83026b09e2be5a9d72ba125eab71dbec2540ba978bcbc41981d433f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.21-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c13b99c79009a6ca88805e2eaea2b2ab9ae8e242dcac20816db4f7e2a2b53da2
MD5 1bb3f758835384ee5985aa1a0a5a958a
BLAKE2b-256 30b79028afe780b4f0b068e1fb6abd0a06b490242c38f6d86a1ed46ac36c1d7f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.21-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8a867553e5f215045e290708fa1e8f141b238ae592aa1a8f3ea3d85909da15a0
MD5 6389b2568791e44b3cf61f381f38bed4
BLAKE2b-256 53b1466f56ad51594029c52a2afe3e03d0d28db78fd951760cca9a803ac42dd6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.21-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a2abeee5fc1b7a6448efa8d611504dc0df97e97c97bafc9cc8d8003c0f209ce4
MD5 0417a4b099736ef998f53e7366fb4b08
BLAKE2b-256 e5d8c15b94d62ce19f221e06929914452b9cedbbeed213b524dd109ac6a256fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.21-cp313-cp313-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 719f1f3ed4a9742ad28d1b73365d32324aa605520e58897f0e3795c10447bfff
MD5 a2be3ed1538b4fe5689f135e0f9b1109
BLAKE2b-256 706a4023ac6db1162aa63bd87af369b91bfbc089e6449a7cb472a58387ee00ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.21-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e4391ba8861edc4a4320f6671006a0556bb1c6728c3a490955ebb04d064b050b
MD5 cfb0f0397b1f5d9e98abc348545d54f6
BLAKE2b-256 c29cf45c744ff58004d3df8a3a6ef6ba067225be2962ee7b0c45d9444cf58103

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.21-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a64d3bdb38d79fcae99f50125b66c4f88d0506b13e75dc155c0e194e5b042029
MD5 ec5eb3efe020ac584d1b6d86f3b5e0dc
BLAKE2b-256 42694161532460536b856e6baffe5f7f118c07342fd964bca7f0ee6751f7380f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.21-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f3a6bb4eaf5b2c9159b12cba5592a418ec8e7fd05900672342379b836f90c429
MD5 833bc6f84cfe68665bc2cfccc1b40327
BLAKE2b-256 044df820a8b7a6d4d40fec6e4316f6fa2f6708d1505d34b29e179a83904587f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.21-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d26e9c184daf386da0d9bd66d441b5529c2d43ecec98098f4913318d4f8d70f2
MD5 beaa243b3846ced5dee1c744df5d79bf
BLAKE2b-256 b143ef6fcd583ede99cf38688d65e30bb3b6b98524d18fc89e5d093101f46aad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.21-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 72695db037a067f5081502c1de9f67f003b585514fde2da1a4e7e662a11c9e97
MD5 bcc5b805b6ec8b278813254866bf9271
BLAKE2b-256 3265c12741ebf08b5365faca0e240cc342d61d90c4980199ed6433f97d8430bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.21-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d67c92f809f88b47d6ca6b8758f7b71667ef506a5b79836e2eb1cb7dd3bb2a22
MD5 7e403c3dd43d483272cf79634a880efe
BLAKE2b-256 2555c9cd4b9e076dfb2efe1d18d884643b16d896b9b758cc4e6ffb96977dcba4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.21-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 debd2719f5ae20e4ce8bf2a39e42e1aa9290de2d261b9117be9ceed803771b80
MD5 e2f483d33db922fdbc212d6505bbf177
BLAKE2b-256 f1dbf4dee658b2868125603c8d05ce4bdc0f9356f0a54009e2dbab264f9a5b6d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.21-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7ccecbb1f0788e436260b816f66acb9526247a2fec23339bc0de264314b9eecf
MD5 39bcfa1ddbecc683eeee3cae04689ec1
BLAKE2b-256 1617d542484dca3fc921e10f1d67ce791227954d326761dae7caf5f8953b2b3c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.21-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f12984d0f8ff9a6073ab3c76f7ef0a99c0a722aca2847cdf40f69d2ced905525
MD5 1207821bdc411da9585b718e05b2ad1a
BLAKE2b-256 ff6d97420bb7f0c8438e070e011a6f628740b8719fdeccdc9169bde38ef2c695

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.21-cp312-cp312-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 dc82a8d6d80d5b2cb35a50e0118dd6186e8c829a03c140d3265c4d004e93c4cb
MD5 c47556ba4b1b581719cf5937c9cf21d7
BLAKE2b-256 6b3e2958757a664d65059824ad197fc669baab776b5e1c585cd6b0c457a97261

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.21-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5bdc142e2f5376f85b4fb1e95876f726644bbd3519ef0566286aed8a21b99ef9
MD5 5fb85be63eeb9882c6d5a4937ca6e324
BLAKE2b-256 881563ac28a6da4c3c752a0248aa4a80cac51b2f108df32abdca8c30357b9413

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.21-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2810247e4af8cf8ae7e69897c7cf2cbc80561afd13afabf897e7609250ab61a3
MD5 02e2d0e0f0142fb62548e299b571efdc
BLAKE2b-256 cb436a631a07c9251450837e6436a52d17a7dc9929a38e89bad71ae1b0d1b18d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.21-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 87afc87f2b5d5b01208898ac49924e8966022f44473421dbe1e89bb08f8c7fd4
MD5 253f04da2b363728ee46752121513f79
BLAKE2b-256 d59aa6fd9f3bb530082da28b571616060fa9aec9f190a5f147bf2fdd290df66b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.21-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4c995825aa2b3e3bb5b04db72e5fd5130c793e191a8d9a49055174c8a9a6e6c1
MD5 31f158fcc4fe7c703510752882ce2f98
BLAKE2b-256 7f19d7f762cbfd93b313d13f5b9e2a43bf9c7d975338ba4ebab70f3e0c376716

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.21-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 bc9df22c5e0525f017f9396e8fa084b187603ab69cff5d82c38f0ca10be807c3
MD5 2899a48e81544820e57cfad121590058
BLAKE2b-256 fec6d1d828e442f5a20618de5602c5e985667ed48f613a14e6cd4f802a02740e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.21-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d6aa5eb8301ea752f038eed8f1f9c4ea0dd438adefc130a87ca68a3006f3ad68
MD5 c168b1e3e318e370592bbb7e46be4993
BLAKE2b-256 9e5c6a13d646789118ebdf3ca42be0316c6091b753d45725e53e3d313f561833

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.21-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 588cc743aa6db88199e8c71f5d7bd8d9a3471e0437944efd4e2c7b656d9ecc5d
MD5 d5448359bac2f6a4daad67fcaa27acdb
BLAKE2b-256 7c8b2a5e5a649a6a9c0d3ad9f3d254035d08d6ec12f72ec16dbb26ca3f577ff9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.21-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 276cd5a44f9daca2b4012127b9eec26fd200471d93a9c4cc5b8fa1a974987ac5
MD5 a02079626a2dd5fc16c215a910ab03d3
BLAKE2b-256 cf74b1d39d669ad608b65d86a10d4fa39820fdea7e087e7f96d28eb5eebdb270

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.21-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d2cbac39d0ecb86d07898f0362c63251cd5005f3fbb6f46c547e61c6026c79ac
MD5 57c6f322b3488f0af693cd5be1928195
BLAKE2b-256 019a7a3c381767ac281a6c38864a019d279ca70943417be642c7ee282922fe0b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.21-cp311-cp311-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 e7c9efc7f08b729d8f0fef8893714ca54afc68a7e0e43b6f52c3dad93e8dade6
MD5 abd27a22ca2a5b148ee033506bf89ff3
BLAKE2b-256 7dad73306ed2458a196595a0aaebe929ed114d499445cdea98c95798428b91c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.21-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f7ee2486c6c617db9982f4c6b1a9b77e6eb73f4092fdcad58da8b0cd873a4c18
MD5 006e1faef2876dd8e1dc4fff97dd7da2
BLAKE2b-256 4a8a1b1b7c9cfff1f7178e88013751497e40f0a9d00a43067523bebc9489796b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.21-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f85e306a188af76cbfaa15343bfb1adc049f86d4a375bdc8efbf5d3b58b11624
MD5 8899276e85c55ef8980c771868ec5fb3
BLAKE2b-256 322012126ba5364ea43065d6da709e1f5df2c183b9a324efc44469c4a5561355

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.21-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 78f7129aa778df961f88410b3a56b199952e2dee1505dfcc464a000611bb3d88
MD5 c397e1dd5d13259f14ddad33853900fd
BLAKE2b-256 496917add5664aa3c36a1a21131b74c84806109dc77c38eb2fe2033539c24cac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.21-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3dc4df05adb894c5c168e6ee8bb17e9cb48a0b1a56ab7099150f5d7d5db727a8
MD5 1cda09a2becc9475f1aa6e8d7c5e5263
BLAKE2b-256 780456dccb4e5917dc09a0bd1fcb939e43fce6223ac49764e6bfd61178344317

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