
Zarr-Python — zarr 3.1.0 documentation
The reference guide contains a detailed description of the functions, modules, and objects included in Zarr. The reference describes how the methods work and which parameters can …
User guide — zarr 3.1.0 documentation
© Copyright 2025, Zarr Developers. Created using Sphinx 8.1.3. Built with the PyData Sphinx Theme 0.16.1.
zarr — zarr 3.1.0 documentation
Examples >>> import numpy as np >>> import zarr >>> a = np.arange(10000000, dtype='i4').reshape(10000, 1000) >>> z = zarr.array(a, chunks=(1000, 100)) >>> z.shape …
Working with groups — zarr 3.1.0 documentation
Zarr supports hierarchical organization of arrays via groups. As with arrays, groups can be stored in memory, on disk, or via other storage systems that support a similar interface.
Quickstart — zarr 3.1.0 documentation
Zarr is a powerful library for storage of n-dimensional arrays, supporting chunking, compression, and various backends, making it a versatile choice for scientific and large-scale data.
Storage guide — zarr 3.1.0 documentation
Storage guide # Zarr-Python supports multiple storage backends, including: local file systems, Zip files, remote stores via fsspec (S3, HTTP, etc.), and in-memory stores. In Zarr-Python 3, …
Working with arrays — zarr 3.1.0 documentation
Compressors # A number of different compressors can be used with Zarr. Zarr includes Blosc, Zstandard and Gzip compressors. Additional compressors are available through a separate …
zarr.storage — zarr 3.1.0 documentation
Returning False can be useful for stores which implement their own consolidation mechanism outside of the zarr-python implementation. supports_deletes: bool = False #
Optimizing performance — zarr 3.1.0 documentation
Zarr arrays and groups can be pickled, as long as the underlying store object can be pickled. With the exception of the zarr.storage.MemoryStore, any of the storage classes provided in the …
Storage (zarr.storage) — zarr 2.2.0 documentation
Storage (zarr.storage) ¶ This module contains storage classes for use with Zarr arrays and groups. Note that any object implementing the MutableMapping interface from the collections …