zarr-python
zarr-python copied to clipboard
An implementation of chunked, compressed, N-dimensional arrays for Python.
xref https://github.com/zarr-developers/zarr-python/issues/1888. This should fail the doc build on broken links. Perhaps it's not worth fixing these on the `v2` branch, but I thought we could at least see how...
### Zarr version v3 ### Numcodecs version n/a ### Python Version n/a ### Operating System n/a ### Installation n/a ### Description In https://github.com/zarr-developers/zarr-python/pull/2400, we need a method for getting the...
Some of the TODOs in code and tests look like they should be reviewed before releasing v3. ```console $ grep -R TODO src | wc -l 71 $ $ grep...
Fixes #2377. See https://github.com/microsoft/pyright/discussions/4741. TODO: * [ ] Add unit tests and/or doctests in docstrings * [ ] Add docstrings and API docs for any new/modified user-facing classes and functions...
xref: #2215 and #2245 This PR adds docstrings for `zarr.array` module and builds on top of @e-marshall's #2276. I've added documentation for following functions: - from_dict() - getitem() - setitem()...
TODO: * [ ] Add unit tests and/or doctests in docstrings * [ ] Add docstrings and API docs for any new/modified user-facing classes and functions * [ ] New/modified...
### Zarr version 3.0.0.alpha6 ### Numcodecs version N/A ### Python Version N/A ### Operating System N/A ### Installation N/A ### Description In Zarr-Python 2.x, Zarr provided default compressors for most...
This is a work in progress. Running through the tutorial helped identify a number of issues that we likely want to address before we release 3.0. TODO: * [ ]...
We should allow users to set `filters` and `compressor` in `zarr.open` etc. for v3 arrays for backwards compatilibility. The way I would do it is to mark both kwargs as...
Here I am creating an array and specifying the fill_value as raw bytes `b'X'` ```python import zarr fv = b'X' a = zarr.create(shape=10, dtype=bytes, zarr_version=2, fill_value=fv) ad = a.metadata.to_dict() print(ad)...