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

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

icechunk-1.1.18-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (19.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded PyPymanylinux: glibc 2.28+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.28+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

icechunk-1.1.18-cp314-cp314t-musllinux_1_2_aarch64.whl (19.1 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARMv7l

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

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

icechunk-1.1.18-cp314-cp314-musllinux_1_2_aarch64.whl (19.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14manylinux: glibc 2.28+ ARMv7l

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

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

icechunk-1.1.18-cp314-cp314-macosx_11_0_arm64.whl (16.7 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

icechunk-1.1.18-cp313-cp313t-musllinux_1_2_aarch64.whl (19.1 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARMv7l

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

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

icechunk-1.1.18-cp313-cp313-musllinux_1_2_aarch64.whl (19.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ARMv7l

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

icechunk-1.1.18-cp313-cp313-macosx_11_0_arm64.whl (16.7 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

icechunk-1.1.18-cp312-cp312-musllinux_1_2_aarch64.whl (19.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.28+ ARMv7l

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

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

icechunk-1.1.18-cp312-cp312-macosx_11_0_arm64.whl (16.7 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

icechunk-1.1.18-cp311-cp311-win_amd64.whl (15.8 MB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.28+ ARMv7l

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

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

icechunk-1.1.18-cp311-cp311-macosx_11_0_arm64.whl (16.7 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for icechunk-1.1.18.tar.gz
Algorithm Hash digest
SHA256 ddcc63d517865ee184233a2e05089ac48cfdb04c3415cd87c683fd7124d63ccb
MD5 12369446b1017a23d26d2033dd74737a
BLAKE2b-256 08f72dd9fbb4c9a7d35002849440e7175cdc587e0eecca9384941b26906072d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.18-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 25a9b6c762d5c3e87b96cbef67d2e5d2d16ac918f172d1ed4eeed66dd9bee0c7
MD5 35f127feef5e690a1d1ef3e51b1996b5
BLAKE2b-256 3ad2e70808b5fa474509500e722e287cb0738b7ea1aa7d6b11f1538d89b7ec50

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.18-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 97c73a51f3c53b653ad439c1b8d507cf9aab4bd4e4b54336349a0c2d6abba78a
MD5 91f5dadcb061bf2781cede4a6558bdd4
BLAKE2b-256 d912432356389eb9b334a9b4f394fcf50f422ec7a4b59850aa446dc0b63238bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.18-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 38688d74b7c1b98a02571fd7d54f34f00b875ab27fa347bea7dc7f07507385bc
MD5 9b6eb904f880e27c8ce7cbea61837ba1
BLAKE2b-256 8aa28d6314be0ad2c642945712251a98b8c829e07d94cb01733f195d3a91da1b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.18-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ec97c893c86dce7f08fb8f95d74e14fbb9b8925895603f9753ac3a93b6a3f926
MD5 52e4746e83ba4e616263e3ed596fac91
BLAKE2b-256 7cf9d04b285ebb56de395f003af60007b7d5d67f236be8fbf305bdc530a49e6b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.18-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 f744179fd4936d96ff1732924953db89da92ceace39699bf96a131b6b7c558d0
MD5 339837679df4cbe1d8ae3aefbadf03df
BLAKE2b-256 233ff021f0262c67a5fc6004cc07a5299bd620dc95febc226891645ace0898ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.18-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c5bea6d3767bc12e86e5c14967b918ca496c1308f29e9ba0df680c5c3161a7a2
MD5 b8ce08b5e7c313526249dccdb2be9bbc
BLAKE2b-256 7e9bb43ba50eda5f67245e42ce48efd5cfe0f2778f5801d0e1fe733ad2a99be6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.18-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 446c2e6ebf2c24900951486c2d512351d223c933d426c3ec8cfca6b098aa541a
MD5 6723df58683063f1ea6cbb9721d71966
BLAKE2b-256 8a41cf16f24930574e932a53c74b097dcc965ba6640dca049eaeffd153a114cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.18-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 46f89885fdfdfbdf2966503d00edae54aa886aa1a91838e7baed6dacbfe25a2c
MD5 591d7595ece15a40f0454c3246581a6e
BLAKE2b-256 08fbd50f91a5005bb304c334c224e1f0522b85aa9cedd7076197c471d783943b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.18-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e9b0ddd1f11106312a9f82ff2af5a8e0f660c583a53f50e49389179613429871
MD5 26f7dc8e35b4f60fe8ef641c9a0ffbfd
BLAKE2b-256 884a3e6992d88579b249eb43aafce809b6ec836c2d4084069207b64b1802c4c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.18-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 33dc4c56e60f8bfaeb6a859e321bd2dd7cf99bec6097f0500356eb549176dbcd
MD5 03e9845ec3e6f9d563065b75f57a4e05
BLAKE2b-256 410d696084a0265b1383e49191464c54a667c57327f0a3033167a810bbfdaba5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.18-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dc266e37b34260323b6056b0253a3bdca7e23958a6de7deceb9f5f3506ad1709
MD5 bdab377025cb827e99a398bfbd8f6154
BLAKE2b-256 60eff6a5b7e2c489995516c91bf1c7e26b04ea0c6d5b7e86f796560630003396

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.18-cp314-cp314t-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 b6740a076696f9c5e13c815ac1681d270be3add3a7b1f9753012bfbbf0db67e5
MD5 cc040ec02bf12f934372cc9d71acfd0d
BLAKE2b-256 79edd9ddef9c4d32a336a5f0779d34cb905b9efb4011ede0414f41fbd5dbad69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.18-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d4d917b61550b00e29ba7428bfd07ad6da34569375d1cdd59b38facf9430d9e9
MD5 806dc643974f98a852b01d36a2e5b2ff
BLAKE2b-256 e1e6da29b583d2d239f7983df065a7fbc85eba7578eb88637413b860e06d2b4a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.18-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 73269c2243371ad959102d4275acdbf8318417c752ea9cb3286b06fada9d7eac
MD5 bb91746d155d8c3c8cc9dc9c1e4a11d5
BLAKE2b-256 a6859b03df00d0ec649178600be2a19d1afb19c779de86647aa14d84260c1ac4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.18-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0906b8a82174e77d135746f13a73760a361d1c147f87303e6a51e8c65d6fe22b
MD5 89418fcd21e9880dd8f175ae9910697c
BLAKE2b-256 7b9568d79681ef5c60d47bfbd752b1d8d1cefb47544efdb94a8efc7b1c847b9c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.18-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c7bf91c042f64f0327576bda544c6411282496b2e50059a15390fd64830e5629
MD5 54f9c77dd281c0abca7e12e7e6f2fc49
BLAKE2b-256 18c0bde3799ac04c28b3a2617c77772f7008bee7cb70e4bd1e2f12ed34bbe814

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.18-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 efeeafb16cd123378162a691c846307d55ce53ef2762c0a3479f25de5e781d8a
MD5 a97e6ec1fd2da9ed4b668699ea817972
BLAKE2b-256 72adfe7e2d2fed9b39eb8d7352730cc5b8fde6002a695cd498c6ddf2119d587d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.18-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c2959cf5fe26b05f92081694b97b60adc2e64aeba82b9ad9649a10d88f35f697
MD5 c66597413b9c9dd6c64b82c1029e2e5a
BLAKE2b-256 452c3b0d0a60309e6b490c79f0d5a1c23fe49cb0081f9ddafcb9e88b8d3f2029

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.18-cp314-cp314-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 6461196199cc64e6ae951b2a54e3c289f57d22cbf8a490e6e7b224e72c12b222
MD5 7ecffcd3409be36183f92c3bbc855a23
BLAKE2b-256 7898a5c1bd263722dcb08aaee58f7229f20eca3b6f268f8a0964f8df3bc84374

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.18-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a50c25fe781d483a7054a2523d1d6621664b80050e516ba0955b015f6f93feef
MD5 cb576d74919a928508c5fa8b53ae0b08
BLAKE2b-256 977bfe016ba4e8472c55536fb36485d24a6eaaa8ed58913d4011d6cd13ff420e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.18-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d56c3c9537c0081fa9b10129233a8330f7b3f87e43de2a11e20ce64e3cbfb1a3
MD5 4249cc02eb6b3dbc0015f94830ef517f
BLAKE2b-256 016fbaac6a247112d18388368ea87f45097a47f7db0803cab45c66d1275649ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.18-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 263778461f163d778c4f57f46a5465f7bb751e0e5520d69897cc97d9c64ee281
MD5 4cfce713fc07a68e0cb676390e8ae086
BLAKE2b-256 50065531076d85c0f9c95e0352952b1814eed5b483176135abba8ac4e8ac6ba4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.18-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 379abf358d51fbe6ba1e3494e29febce865eb37a41416213b7b34adedc74d8c9
MD5 e569f8856cd24e842b0b9d31442eab2b
BLAKE2b-256 83216d2e81f05a6571a75e803af5cc381feaa11f8b070fe1ad764f5abb601a49

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.18-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a700f56ce5d5566f0f3965d1ed5e8bd72b5e40f13c7e9411042ced805f90cb3c
MD5 c86f6e4b213e8d306394cdeda4d1a36f
BLAKE2b-256 2c9571ec77b616ee9f7ed8af1846a81c58a8c4ee4fe0ad3fce48be5d12b379e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.18-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 97516318159571a61a427ee99ff0fcd2b8913c1df69f029dfcbe13e0f66aff51
MD5 334c12b4d9e55bc41cd0ccbbfb241b44
BLAKE2b-256 fc0ca9073abaedb2f3b6749774a785dd475018a00a115b4738595f0d5ffd3c35

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.18-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ece6e99aa43743ec61ec39fa90f4844d669ea01c9203c9b3fbbee5e196c9c90d
MD5 6d18996380e756ffebb42f084efb655c
BLAKE2b-256 700a7fd2794d3d2fb8e8d51371ebdeb892c703ef64e531acfb92f154b0a22642

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.18-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fbe7309961420c5f57174ed863114f79d99ff9def001fa063c2a7e1cd629e94a
MD5 84d6a7b4acb1c0fce6662ff2e26963dd
BLAKE2b-256 550d158b607d1284e09876446b5777bfefcea769191140543e627d4871f8e2fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.18-cp313-cp313t-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 28199ea47848c24bb65fa0beb193c201f60f531a1e71ddb695df4f9c9b47f41e
MD5 d5a00223f64b09e0773cf37485a1c61c
BLAKE2b-256 0b62bbb2020e14a3863d35fa671a4513fe000b3c0ab8d1a3d4d69ecd3f0581de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.18-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 67198bb9807a08749a91cba7cf22ce38cfb8ab3f1a682490a4c4446a3054e315
MD5 b386209b4408102fbffe3633776a322b
BLAKE2b-256 be1a271d0bb48c6bfcb9502737884877a2f2c8762b17d8903d2ab025bb4e2436

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.18-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 069fe6d30fa1fd62de605c0aec6455c12f92fc544b18d0b3a2e050e049ccdf8c
MD5 da6bec3fb465e594f5b81fd7da11b56d
BLAKE2b-256 2afc5c298065871d8baca5e81106ebe922abcddda86ccdb939ffcc98f536efb2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.18-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c95599e1d40f7375de3c5f2328cb04d3626bc672c9afabd670cdc4f7c0913d15
MD5 b4c59273b6e3f6c5f386fff568c13cab
BLAKE2b-256 61800827fe2476898a6f9b6c3f7ad96f6e98b7fdb632f7ca26a694a2951d61ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.18-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 73990efc78c44e0f023132fc3c8792ca75fb5af94d8a2debbb1072ddded85b3a
MD5 cec002bc7ecb8c8b33c01a80f8085efc
BLAKE2b-256 2ae8b23ebc1b11bf9da8dd5c030c3f03d94d832cc93b51040e9916e20d9f1d15

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.18-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b37d57206e9dc7ee66364d6e48c78e43346777120e8bbcba89ff6fb53da347c0
MD5 260062d2d11cb5de0c1360e43a92650a
BLAKE2b-256 0b3089f3941b9ea2cdb0c5c497322a34ad1b404ab145428d6dd3934eed6713a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.18-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6896b598b0c39202dce434011dfa841acbddd792099a5b442fd7c866f03513d7
MD5 7124b3486acfdf5dad3fec2712c0f843
BLAKE2b-256 a8fffbfb1bab5df812f3598c25f71fd9689a2f0d61697f6aafb1d930ee6a1cfb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.18-cp313-cp313-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 d08579d42e0bfff581933acd23191e89475c15f93dc205cce0d03cf0f0d9f2a4
MD5 944c22ae0afb2a0755b9a4f6d9dccd16
BLAKE2b-256 ec52f78dd7361f082b96973043122aa880e14ff0812345d6c645b6e7c1c5e0d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.18-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 54553cb7abed9e34e55243c75c032190b18d3d019be4012635cd859cab396066
MD5 c133cbf656c647561873c625a73da423
BLAKE2b-256 038901c2f2747565324254f44f08e0744bd0fe46751b984d9ee76353193e2035

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.18-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 02a11c9c79dda045777ecde0f948c738f918396e74ad5e1d6de069b0db0f14d1
MD5 15e1b1f3f558d7c340e09e20fea0763e
BLAKE2b-256 1c71043ec2eb964d871f916ee949f99b71dbbd31ffe85c5a280edaaa6f877789

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.18-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 12dfdf2b1209e8f38a40c890d8b7fe2a2235c2a77d614b6728848565a72bb85f
MD5 57bf322c330dfdec799d2a2cc7cee3c9
BLAKE2b-256 5e7114c54b75b3c7b592048feae4cdb8165535d5d92080cd550510473d563054

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.18-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 35b8aee04e65f00ae9014006da454e96d62b9d3324917f8018da81a8bff03bf6
MD5 5796dd1512fd5105bc807ee9924ec43e
BLAKE2b-256 2296740587efe12cb7514c1961c6c0461d343c918a93d866d57c319ef392b197

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.18-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 33c2dabcaf61484d70082c794530b53e4bcf4f820c14a46e46c401d42fd3b249
MD5 d1731e645da89dbad861486f27798226
BLAKE2b-256 16cc65ec5928ee327652e76dd4592adc077821324fc8028599320ac128614146

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.18-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 63d0ee8359d95d86812329ce4a46f9aa98c833745e69d5a3592f00c53146383a
MD5 8d9c1b5c43cf19bd9ddfa19f42c69139
BLAKE2b-256 f097e3688de1e085865cabbd4a49af7730f6b33199ad3c34ac31e95e46dbb7d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.18-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4661c1e2365790344f611e9d14ebadf5ccdfd1617750ab456616dbdb4e609e65
MD5 92ab3e879dc2c17f4d0be1234302129c
BLAKE2b-256 841d7fc1ac62e4dfad1c98551e16daed6b072981c9774ce54df01ec289c893ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.18-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8a124518861e5576c7f56daace9f2cc6ffaad3f15003eb80937eb462dbf95973
MD5 3999e94d28f92583329d5de3a219c354
BLAKE2b-256 f2906f372593bc59977d45126e93b89a82bb8a95e5550e4900abc50d65de1398

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.18-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d786382d734fc34cf51dc0558c5c83de5b0a61c47900bfb503052211b0f5a8e6
MD5 e575aa438a7006df772104f236015a10
BLAKE2b-256 46cf00744358046a0a9150ead5f91d03099ed99d4b654347bbe39a9a6ba52204

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.18-cp312-cp312-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 e5c4bb9a7b05e82fea038ef84ffd06912ea0df1eec1860ee52b2b8318627541d
MD5 3d98f529396bb26f2fb04b9ee27be644
BLAKE2b-256 28c9156efe8a3e056cdff8119d266d7c4fca9a325d746d0bf0d53414c00fc780

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.18-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9e39c66ba4ebd56cf6d241780dc8674d4b385e176eb5da821821e63574a7a9db
MD5 4d75b72268eb3c6cc672e53815630434
BLAKE2b-256 0f4a5b24c32e417b8726202788a1301878cc187bbbe4b1f599155cef77e4a3f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.18-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f88703ea50cf44b9f8c008b266e66aeede9f01faab832a7a4fb096f544f68740
MD5 0aa5f381edf54f88bdda0721745cd7d7
BLAKE2b-256 a48dabb022501cba724381214ba9821380e359690059946d05fc2d2b50d0c9e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.18-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8de0fb1f01346796afce7d6fba09182d1419c80d45fee5c16d850800d200c1c8
MD5 52d752aaed761c58f6149d3fad79ce47
BLAKE2b-256 981bb0e7913dd831806e4270898d1af6cdd40a50f6b450521ff16896588b48e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.18-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ae09ae946bfb3ab56ab3cd3c7f7ff1748e86e4658c4a211d3ea103757e795d0f
MD5 a56ec167f324935f8e575e76c9ea72fd
BLAKE2b-256 a9d6dd07daaafb52ead61a034f8d5b6179f6cebefb034c1754fc5c7529e41598

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.18-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 209604c9fb9e1c7ca8cf22336e34772c0fe1d6b48365fa762e4fa9c1ac96f310
MD5 0108a56da440fd514c889f4777b53904
BLAKE2b-256 1982d8244ac0a47c8216434256115c14bb8201f2d6a10dc8a455c43128fdb95f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.18-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 541b198fbb88eacb71208a58b6bc12a261ed0c729389e9e0fea4382ec860966a
MD5 6760887ecf9dce2b03f937fa590bbcc3
BLAKE2b-256 9b94a9b3fa99263cb20c57ba9a2a0d9b94e3992846daa5552ef21459911ea06f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.18-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3e05c66c251edb8b8bdc63a9c71ea41ab2efd65695a812223c4245e60e483e1b
MD5 c4809b36e5401cd10b9f4e7b4376ba93
BLAKE2b-256 109248d904486e7f3c86631106a8b5bbcbfebbe70e3c007bd60a225614bad91b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.18-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5ab02aecec764c446de575c7dc9885470ee1f86e2f2843d164a279b00a8e70af
MD5 379fe7eea0b6ac84c5f2ec821b2ee222
BLAKE2b-256 c83ea73708faf5ac44b7c681922f7d39c477ddb8fdfc5c9d812f02cfd4622988

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.18-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e5b8c175a6c37d2f78d894a4b3f1d13b3d37e15b2508ce09a3054b7fe41d6408
MD5 0871bdf691638b251c7e8a2903ebbad7
BLAKE2b-256 33e88dbb4a7a2eea9befbef395c09856198398fe8b905b792251d4ebcfc40a9f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.18-cp311-cp311-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 1b043e3318126ae7a29313fc072abc216b9f8ab2b28f4d78601dbd1227d04a99
MD5 a028098abf14dfbfc2a76fd7e93054ab
BLAKE2b-256 ce2cbbd5dbc95e98135b807ab5b826161ec7295eeda14f450119bb49e769e6eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.18-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3eff665324c5d32d161376b2f3d25b87e472712ea1f4417a5facba4669bb949b
MD5 1c99811c9c29aef050b9057dc2dc746a
BLAKE2b-256 5f97cf55bd520dda1fb07c2e4ff5b78bc9871092c4c7b3a577bc8c3acdd3bc69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.18-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 78112f193831d04d30e134d711783178e1b34b7308b743dd91f7116b9f3f35b9
MD5 ac1c1c8f4e1fe72a07449dc8d6dc7e37
BLAKE2b-256 f5dce5bf30eec4295c89ea448d49f4676d166ab2d3026c219f23b09dfcbb1d48

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.18-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8d7d9a8d33b552e5f7fcf4d7bb205f1fd5bb10d46eb431d8ee55ab7a2ff11547
MD5 24854c68b7cc12fc94a4cba2121c33ad
BLAKE2b-256 257bcb42b3929fc5446871e3c2df72fef66c3a27f528e91b17728adaf7f8320e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for icechunk-1.1.18-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 387da1a37cc5e77cd31ddd50e932b44468db62a6a82a55247db7cc547b3127bc
MD5 48db6fe7233f59edebf242b87609b282
BLAKE2b-256 5c591ea81778066ef56b785906712086ea3ca4d7fb4523a46ee9c5e0938a5eb8

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