Skip to main content

Transactional storage engine for Zarr designed for use on cloud object storage

Project description

Icechunk

Icechunk logo

PyPI Crates.io GitHub Repo stars Earthmover Community Slack


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 Icehcunk 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 are 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 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 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-0.1.0a4.tar.gz (1.0 MB view details)

Uploaded Source

Built Distributions

icechunk-0.1.0a4-cp312-none-win_amd64.whl (5.8 MB view details)

Uploaded CPython 3.12 Windows x86-64

icechunk-0.1.0a4-cp312-none-win32.whl (5.0 MB view details)

Uploaded CPython 3.12 Windows x86

icechunk-0.1.0a4-cp312-cp312-musllinux_1_2_x86_64.whl (7.5 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

icechunk-0.1.0a4-cp312-cp312-musllinux_1_2_i686.whl (7.3 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

icechunk-0.1.0a4-cp312-cp312-musllinux_1_2_armv7l.whl (7.3 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARMv7l

icechunk-0.1.0a4-cp312-cp312-musllinux_1_2_aarch64.whl (7.6 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

icechunk-0.1.0a4-cp312-cp312-manylinux_2_28_armv7l.whl (7.0 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.28+ ARMv7l

icechunk-0.1.0a4-cp312-cp312-manylinux_2_28_aarch64.whl (7.3 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.28+ ARM64

icechunk-0.1.0a4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.4 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

icechunk-0.1.0a4-cp312-cp312-macosx_11_0_arm64.whl (6.4 MB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

icechunk-0.1.0a4-cp312-cp312-macosx_10_12_x86_64.whl (6.4 MB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

icechunk-0.1.0a4-cp311-none-win_amd64.whl (5.8 MB view details)

Uploaded CPython 3.11 Windows x86-64

icechunk-0.1.0a4-cp311-none-win32.whl (4.9 MB view details)

Uploaded CPython 3.11 Windows x86

icechunk-0.1.0a4-cp311-cp311-musllinux_1_2_x86_64.whl (7.5 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

icechunk-0.1.0a4-cp311-cp311-musllinux_1_2_i686.whl (7.3 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

icechunk-0.1.0a4-cp311-cp311-musllinux_1_2_armv7l.whl (7.3 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARMv7l

icechunk-0.1.0a4-cp311-cp311-musllinux_1_2_aarch64.whl (7.6 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

icechunk-0.1.0a4-cp311-cp311-manylinux_2_28_armv7l.whl (7.0 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.28+ ARMv7l

icechunk-0.1.0a4-cp311-cp311-manylinux_2_28_aarch64.whl (7.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.28+ ARM64

icechunk-0.1.0a4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

icechunk-0.1.0a4-cp311-cp311-macosx_11_0_arm64.whl (6.4 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

icechunk-0.1.0a4-cp311-cp311-macosx_10_12_x86_64.whl (6.4 MB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: icechunk-0.1.0a4.tar.gz
  • Upload date:
  • Size: 1.0 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for icechunk-0.1.0a4.tar.gz
Algorithm Hash digest
SHA256 ce488b28f441e8d42d56c27f8ea2091cdd4a3c5487ad95c5b48e831439379db8
MD5 9d017fabd9c149e8d37baebd5a24b463
BLAKE2b-256 761779251cbf0485ca010af868ac831bccfca5ae9397cc879a6544996f65706a

See more details on using hashes here.

Provenance

File details

Details for the file icechunk-0.1.0a4-cp312-none-win_amd64.whl.

File metadata

File hashes

Hashes for icechunk-0.1.0a4-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 f2a4ebafdce59b496323ec912c25dac837c48c66d48f8898ceca5b0989c891cb
MD5 009c14b28b22c579420bc0dc8ea3c397
BLAKE2b-256 08da384f57a06d5f143647a1cec55c66ff0d0e5a104d039889073a7ba6f9400d

See more details on using hashes here.

Provenance

File details

Details for the file icechunk-0.1.0a4-cp312-none-win32.whl.

File metadata

File hashes

Hashes for icechunk-0.1.0a4-cp312-none-win32.whl
Algorithm Hash digest
SHA256 630d50e56e6c627f426ff31ae4b6b01e9ebe8c6a0a382c3a4abe0e47e470ede7
MD5 20e0e5d9fce76a7bb8fa90e67c2cc953
BLAKE2b-256 b2840b90f165d1d68dbcd908bcc4b55aa2ad3c839655bbf66f1321ffe66732b1

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for icechunk-0.1.0a4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7eaca6b508e3087a58647031833f3988df42e9e5d181cb7e9df0f6a48c76b089
MD5 35552008fc1b5b5bc6d0076cf9eac5a7
BLAKE2b-256 49ae7ff8fd29642698162d55a9a9164dece249e0a8e71c3595ad3ccd7b9d6dfc

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for icechunk-0.1.0a4-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7b3fc63c42af7c18822624978940e8137bf216460503f9123682a57fc51920e7
MD5 8d000cc5f14044e44c8eacfdfa686a94
BLAKE2b-256 e2dc3dcb624949ee0ea3d73e1c7d98d9cf3172fd4aa49e34abb43f462661d409

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for icechunk-0.1.0a4-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3e5119141eb83a0d7edb294ab50baf805bb2635579a9f2d94ad11178b73658e8
MD5 d0bf5005e01ba6a9c9df5031e02299c8
BLAKE2b-256 ff2bbd11e1102ba2a24305b0330eb763f81ca48d56fd4a093cfba275d2827870

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for icechunk-0.1.0a4-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 865ac23ff09ab3d71725976cae2822c95177ef9e5a9c9118ba1ad0726442c09a
MD5 108bfc1211dfb35ec29f232ba9c32f98
BLAKE2b-256 1cd3f65a7fb5aafbd5bec0f1c9c7bccdabed10ec315045ea4c80f6b16283c3fc

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for icechunk-0.1.0a4-cp312-cp312-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 e19d1983d79d27df0efc0347fbda72a4eb9607e22c602c3fc82c0acf9dc73d1c
MD5 4c4f7831e2848ffe7b8b41661e8fd582
BLAKE2b-256 c860387a8f05cbba46a141aca5f66c8900f4fe4ffcaefd71d013abc3dcd2e4a0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for icechunk-0.1.0a4-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 05740dddc6957be3fbd3d7a7e5641194788148129b30429990830770c2fda469
MD5 cb9bb6516cb8c8ff48f02714efc39c71
BLAKE2b-256 3b3234bdcf5eda156a93678530c497407c880220310df02b1a8406725766ead4

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for icechunk-0.1.0a4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7798802798353739c613ad56bd2ebb59e01beeb2c21e38034bcb97416d36e7a7
MD5 6171a944ea69acab43c89ff7eb93c382
BLAKE2b-256 7f3da5b3aa93a59683f77cbf4e8f461b14b2e2b394e84c4e16cdb2f0edd6dd46

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for icechunk-0.1.0a4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4ef3253e1c394a17fcd5f51e7a8709418663919af109b0a83addab7c18874ea4
MD5 f4d40d7bf111ebae599b1e74abd2f691
BLAKE2b-256 9d6e8dd8dfc7ea804b2f6915387a5dd331abd5a8ea07372370bcca1c4052685e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for icechunk-0.1.0a4-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3213c2c2b0d07e3a4a836a80de8b2680675415eb496be8ccdc0945c877122c28
MD5 e5b5e6f380239862baaae4faa396f99d
BLAKE2b-256 a497b3a67d01d85cccda307fcf44fd73a89cd67e55fe3f693d271e88a85e3b4b

See more details on using hashes here.

Provenance

File details

Details for the file icechunk-0.1.0a4-cp311-none-win_amd64.whl.

File metadata

File hashes

Hashes for icechunk-0.1.0a4-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 4c73da2b468101834049dbec56e6657f764e579fd0585d63a9df3f3372c5f213
MD5 7676741c8e1e50a6deadddadfa75c2ba
BLAKE2b-256 e4602ee93b9e82daa118efe084506af30ce9176a3996b14695fede7082d775be

See more details on using hashes here.

Provenance

File details

Details for the file icechunk-0.1.0a4-cp311-none-win32.whl.

File metadata

File hashes

Hashes for icechunk-0.1.0a4-cp311-none-win32.whl
Algorithm Hash digest
SHA256 82bc8f548f2622fc827a25e9b0932f2787f206bd1b850dcbb81af58a4720eb7b
MD5 d4a94fd3120980e2c06edeb534fc6170
BLAKE2b-256 7f29cb6f9b1b0624c3fdc8af2d28f54abce9c49e35ea1b141d5c31be98d19d96

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for icechunk-0.1.0a4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 30332d9cc979cf85e2f9bc13bfb7e71c68d4640c7b48853c750cc78af7e6c38c
MD5 a796b76274e3a1de3f12f0cf0964097c
BLAKE2b-256 0480c25370c18e24b9fbc79b6bead71c200ca2c64f450d092902650b88e5b3e2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for icechunk-0.1.0a4-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b0145a805ecc90076506150c747252b4e7f49600f7ca8c67c953618d93a9127e
MD5 307d8e2b19f0e34f81fa11d3ca695c31
BLAKE2b-256 26f99baa201e4345b5e396637c595755b76f72c7ca243fea3eeba12dcd48ec66

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for icechunk-0.1.0a4-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a108e33d63d3424973b0c9ee971dcd674e868a08fe23d415e8975c270ba3e0b3
MD5 e40add19f151677d6ae4e4bd6c603a2c
BLAKE2b-256 cb262a0dc028b54728a51c95a135c9f1cfe2dd907b2770d1d6bf985b0a7e352d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for icechunk-0.1.0a4-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a1a5f643264f5139c863d3d3a1695f1f8fdc9a0af5cdf80d1b5301cb858cbd1e
MD5 e478372c287aca3c0b54a97045d4bb88
BLAKE2b-256 b918e2df48941ecdeb772a4f64447f3ac5514be2c60e605b293f2d84e5eb3322

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for icechunk-0.1.0a4-cp311-cp311-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 428c1ccdd8a980f23fc737fed4e451dea61f9deeb1b402aa491dd3c0a131067d
MD5 b56641c82073eadcb4e87f7490ea5047
BLAKE2b-256 f62340f86cd9efb03ec2aff990c8a947bcab94721ea4579d5c527a419a26856f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for icechunk-0.1.0a4-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 21f4ded852966ca0015442f54e874890c10041754d0dd159bfea61ff3fb4f871
MD5 417ac00c1cfb25b127552fdd8c4e5604
BLAKE2b-256 7125586e8af605fca01f5c87073ebd41bdfa3cfb8d0d17e5f1b21cd884a4e020

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for icechunk-0.1.0a4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8fa6a58addc3aa975d6608d01f27fc0bb06fdf1a16b8feab1749b0013e64884b
MD5 07ca883d3a700ecf42f03c404f477305
BLAKE2b-256 3f1742817576ececef54e2da56ec0036772821798cf7e122452406cbc8a08763

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for icechunk-0.1.0a4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0c9c5cbadf3ebd280dd09237e088692cfd3a26a1774059c8191558c95f30345e
MD5 bfea54b409a348f0aa4424e72888feeb
BLAKE2b-256 46cfed0e5f47f0730e336a4c5aa9b49dab59882effa10ac5f8bc555dd2a97559

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for icechunk-0.1.0a4-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7818659338db2f8234689ea45de4de9991ddf4fb36a4ba7cac3186a574071c5b
MD5 11681a2fbb6a876989ffbb030a80529c
BLAKE2b-256 129a4b7b31def0f9432cfda7211947e3228ee007347e1cb4839b08bc6e79e72a

See more details on using hashes here.

Provenance

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page