Metadata-Version: 2.1
Name: rechunker
Version: 0.5.2
Summary: A library for rechunking arrays
Author-email: Pangeo developers <ryan.abernathey@gmail.com>
License: MIT License
        
        Copyright (c) 2020 Rechunker Developers
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
        
Project-URL: documentation, https://rechunker.readthedocs.io
Project-URL: homepage, https://pypi.org/project/rechunker/
Project-URL: repository, https://github.com/pangeo-data/rechunker
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: dask[array,diagnostics]
Requires-Dist: mypy-extensions
Requires-Dist: zarr >=2.11
Provides-Extra: complete
Requires-Dist: apache-beam ; extra == 'complete'
Requires-Dist: fsspec ; extra == 'complete'
Requires-Dist: prefect <2 ; extra == 'complete'
Requires-Dist: pyyaml ; extra == 'complete'
Requires-Dist: xarray >=2022.3 ; extra == 'complete'
Provides-Extra: dev
Requires-Dist: black ; extra == 'dev'
Requires-Dist: codecov ; extra == 'dev'
Requires-Dist: flake8 ; extra == 'dev'
Requires-Dist: hypothesis ; extra == 'dev'
Requires-Dist: IPython ; extra == 'dev'
Requires-Dist: mypy ==0.782 ; extra == 'dev'
Requires-Dist: nbsphinx ; extra == 'dev'
Requires-Dist: numpydoc ; extra == 'dev'
Requires-Dist: pytest ; extra == 'dev'
Requires-Dist: pytest-cov ; extra == 'dev'
Requires-Dist: sphinx ; extra == 'dev'
Requires-Dist: sphinx-pangeo-theme ; extra == 'dev'
Requires-Dist: sphinxcontrib-srclinks ; extra == 'dev'
Provides-Extra: docs
Requires-Dist: IPython ; extra == 'docs'
Requires-Dist: nbsphinx ; extra == 'docs'
Requires-Dist: numpydoc ; extra == 'docs'
Requires-Dist: sphinx ; extra == 'docs'
Requires-Dist: sphinx-pangeo-theme ; extra == 'docs'
Requires-Dist: sphinxcontrib-srclinks ; extra == 'docs'
Provides-Extra: test
Requires-Dist: hypothesis ; extra == 'test'
Requires-Dist: pytest ; 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.
