Metadata-Version: 2.1 Name: zarr Version: 2.18.4 Summary: An implementation of chunked, compressed, N-dimensional arrays for Python Maintainer-email: Alistair Miles License: MIT Project-URL: Bug Tracker, https://github.com/zarr-developers/zarr-python/issues Project-URL: Changelog, https://zarr.readthedocs.io/en/stable/release.html Project-URL: Discussions, https://github.com/zarr-developers/zarr-python/discussions Project-URL: Documentation, https://zarr.readthedocs.io/ Project-URL: Homepage, https://github.com/zarr-developers/zarr-python Classifier: Development Status :: 6 - Mature Classifier: Intended Audience :: Developers Classifier: Intended Audience :: Information Technology Classifier: Intended Audience :: Science/Research Classifier: License :: OSI Approved :: MIT License Classifier: Programming Language :: Python Classifier: Topic :: Software Development :: Libraries :: Python Modules Classifier: Operating System :: Unix Classifier: Programming Language :: Python :: 3 Classifier: Programming Language :: Python :: 3.11 Classifier: Programming Language :: Python :: 3.12 Classifier: Programming Language :: Python :: 3.13 Requires-Python: >=3.11 Description-Content-Type: text/markdown License-File: LICENSE.txt Requires-Dist: asciitree Requires-Dist: numpy>=1.24 Requires-Dist: fasteners; sys_platform != "emscripten" Requires-Dist: numcodecs!=0.14.0,!=0.14.1,>=0.10.0 Provides-Extra: jupyter Requires-Dist: notebook; extra == "jupyter" Requires-Dist: ipytree>=0.2.2; extra == "jupyter" Requires-Dist: ipywidgets>=8.0.0; extra == "jupyter" Provides-Extra: docs Requires-Dist: sphinx; extra == "docs" Requires-Dist: sphinx-automodapi; extra == "docs" Requires-Dist: sphinx_design; extra == "docs" Requires-Dist: sphinx-issues; extra == "docs" Requires-Dist: sphinx-copybutton; extra == "docs" Requires-Dist: pydata-sphinx-theme; extra == "docs" Requires-Dist: numpydoc; extra == "docs" Requires-Dist: numcodecs[msgpack]!=0.14.0,!=0.14.1; extra == "docs" Requires-Dist: pytest-doctestplus; extra == "docs"

# Zarr
Latest Release latest release
latest release
Package Status status
License license
Build Status build status
Pre-commit Status pre-commit status
Coverage coverage
Downloads pypi downloads
Zulip
Citation DOI
## What is it? Zarr is a Python package providing an implementation of compressed, chunked, N-dimensional arrays, designed for use in parallel computing. See the [documentation](https://zarr.readthedocs.io) for more information. ## Main Features - [**Create**](https://zarr.readthedocs.io/en/stable/tutorial.html#creating-an-array) N-dimensional arrays with any NumPy `dtype`. - [**Chunk arrays**](https://zarr.readthedocs.io/en/stable/tutorial.html#chunk-optimizations) along any dimension. - [**Compress**](https://zarr.readthedocs.io/en/stable/tutorial.html#compressors) and/or filter chunks using any NumCodecs codec. - [**Store arrays**](https://zarr.readthedocs.io/en/stable/tutorial.html#tutorial-storage) in memory, on disk, inside a zip file, on S3, etc... - [**Read**](https://zarr.readthedocs.io/en/stable/tutorial.html#reading-and-writing-data) an array [**concurrently**](https://zarr.readthedocs.io/en/stable/tutorial.html#parallel-computing-and-synchronization) from multiple threads or processes. - Write to an array concurrently from multiple threads or processes. - Organize arrays into hierarchies via [**groups**](https://zarr.readthedocs.io/en/stable/tutorial.html#groups). ## Where to get it Zarr can be installed from PyPI using `pip`: ```bash pip install zarr ``` or via `conda`: ```bash conda install -c conda-forge zarr ``` For more details, including how to install from source, see the [installation documentation](https://zarr.readthedocs.io/en/stable/index.html#installation).