zarr-python
zarr-python copied to clipboard
An implementation of chunked, compressed, N-dimensional arrays for Python.
xref: #2215 This issue tracks the documentation progress for the [`zarr.core.group`](https://github.com/zarr-developers/zarr-python/blob/v3/src/zarr/core/group.py) module. We'll be focusing on adding docstrings and code samples to the functions. Progress: - [ ] docstrings -...
xref: #2215 This issue tracks the documentation progress for the [`zarr.array`](https://github.com/zarr-developers/zarr-python/blob/v3/src/zarr/core/array.py) module. We'll be focusing on adding docstrings and code samples to the functions. Progress: - [ ] docstrings -...
In the docs, the deprecation notice for N5Store simply says > Deprecated since version 2.18.3: N5Store will be removed in Zarr 3.0.0. This doesn't explain why this is happening, or...
### Zarr version v3 ### Numcodecs version na ### Python Version na ### Operating System na ### Installation na ### Description While working on consolidated metadata, I bumped into some...
Zarr Python 2 had nice `info` properties on the `Group` and `Array` classes. We haven't built these for v3 yet. ```python >>> import zarr >>> z = zarr.zeros(1000000, chunks=100000, dtype='i4')...
We have not yet implemented bulk erase (dir or prefix) or rename methods for the V3 store interface. These are both needed to support efficient evolution of existing zarr hierarchies....
Over the past few weeks, we've had a number of conversations/questions about the policy for backward compatibility, deprecations, and breaking changes with the upcoming 3.0 release. This doc is meant...
Arrays written by tensorstore are being returned by open_array, open, AsyncArray.open, etc. as having all fill values. ``` $ ./ts_info.py output.zarr/0 min=3 max=4095 $ ./zr_info.py output.zarr/0/ min=0 max=0 ``` zarr.json...
### Zarr version 3.0.0.beta ### Numcodecs version 0.13 ### Python Version 3.11 ### Operating System Mac ### Installation pip ### Description It used to be possible to create a one...
Moves the BatchedCodecPipeline to zarr.core to make it easier to evolve it post 3.0.0 release.