Metadata-Version: 2.1
Name: rechunker
Version: 0.5.1
Summary: A library for rechunking arrays.
Home-page: https://github.com/pangeo-data/rechunker
Author: Pangeo developers
Author-email: ryan.abernathey@gmail.com
License: MIT
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Topic :: Database
Classifier: Topic :: Scientific/Engineering
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: dask[array,diagnostics]
Requires-Dist: zarr (>=2.11)
Requires-Dist: mypy-extensions
Provides-Extra: complete
Requires-Dist: dask[array,diagnostics] ; extra == 'complete'
Requires-Dist: zarr (>=2.11) ; extra == 'complete'
Requires-Dist: mypy-extensions ; extra == 'complete'
Requires-Dist: apache-beam ; extra == 'complete'
Requires-Dist: pyyaml ; extra == 'complete'
Requires-Dist: fsspec ; extra == 'complete'
Requires-Dist: prefect (<2) ; extra == 'complete'
Requires-Dist: xarray (>=2022.3) ; extra == 'complete'
Provides-Extra: dev
Requires-Dist: dask[array,diagnostics] ; extra == 'dev'
Requires-Dist: zarr (>=2.11) ; extra == 'dev'
Requires-Dist: mypy-extensions ; extra == 'dev'
Requires-Dist: apache-beam ; extra == 'dev'
Requires-Dist: pyyaml ; extra == 'dev'
Requires-Dist: fsspec ; extra == 'dev'
Requires-Dist: prefect (<2) ; extra == 'dev'
Requires-Dist: xarray (>=2022.3) ; extra == 'dev'
Requires-Dist: pytest ; extra == 'dev'
Requires-Dist: hypothesis ; extra == 'dev'
Requires-Dist: pytest-cov ; extra == 'dev'
Requires-Dist: flake8 ; extra == 'dev'
Requires-Dist: black ; extra == 'dev'
Requires-Dist: codecov ; extra == 'dev'
Requires-Dist: mypy (==0.782) ; extra == 'dev'
Provides-Extra: docs
Requires-Dist: sphinx ; extra == 'docs'
Requires-Dist: sphinxcontrib-srclinks ; extra == 'docs'
Requires-Dist: sphinx-pangeo-theme ; extra == 'docs'
Requires-Dist: numpydoc ; extra == 'docs'
Requires-Dist: IPython ; extra == 'docs'
Requires-Dist: nbsphinx ; extra == 'docs'
Provides-Extra: test
Requires-Dist: pytest ; extra == 'test'
Requires-Dist: hypothesis ; extra == 'test'

Rechunker
=========

[![Documentation Status](https://readthedocs.org/projects/rechunker/badge/?version=latest)](https://rechunker.readthedocs.io/en/latest/?badge=latest)
![Tests](https://github.com/pangeo-data/rechunker/workflows/Tests/badge.svg)
[![Coverage](https://codecov.io/github/pangeo-data/rechunker/coverage.svg?branch=master)](https://codecov.io/github/pangeo-data/rechunker?branch=master)


`Rechunker` is a Python package which enables efficient and scalable manipulation of the chunk structure of chunked array formats such as [Zarr](https://zarr.readthedocs.io/en/stable/) and [TileDB](https://tiledb.com/). `Rechunker` takes an input array (or group of arrays) stored in a persistent storage device (such as a filesystem or a cloud storage bucket) and writes out an array (or group of arrays) with the same data, but different chunking scheme, to a new location.

Rechunker is designed to be used within a parallel execution framework such as [Dask](https://dask.org/).

See [the documentation](https://rechunker.readthedocs.io/en/latest/) for more.
