No project description provided
Project description
Zarrita
Zarrita is an experimental implementation of Zarr v3 including sharding. This is only a technical proof of concept meant for generating sample datasets. Not recommended for production use.
Setup
import zarrita
import numpy as np
store = zarrita.LocalStore('testoutput') # or zarrita.RemoteStore('s3://bucket/test')
testdata = np.arange(0, 16 * 16, dtype='int32').reshape((16, 16))
Create an array
a = zarrita.Array.create(
store / 'array',
shape=(16, 16),
dtype='int32',
chunk_shape=(2, 8),
codecs=[
zarrita.codecs.bytes_codec(),
zarrita.codecs.blosc_codec(typesize=4),
],
attributes={'question': 'life', 'answer': 42}
)
a[:, :] = testdata
Open an array
a = zarrita.Array.open(store / 'array')
assert np.array_equal(a[:, :], testdata)
Create an array with sharding
a = zarrita.Array.create(
store / 'sharding',
shape=(16, 16),
dtype='int32',
chunk_shape=(16, 16),
chunk_key_encoding=('v2', '.'),
codecs=[
zarrita.codecs.sharding_codec(
chunk_shape=(8, 8),
codecs=[
zarrita.codecs.bytes_codec(),
zarrita.codecs.blosc_codec(typesize=4),
]
),
],
)
a[:, :] = testdata
assert np.array_equal(a[:, :], testdata)
Create a group
g = zarrita.Group.create(store / 'group')
g2 = g.create_group('group2')
a = g2.create_array(
'array',
shape=(16, 16),
dtype='int32',
chunk_shape=(16, 16),
)
a[:, :] = testdata
Open a group
g = zarrita.Group.open(store / 'group')
g2 = g['group2']
a = g['group2']['array']
assert np.array_equal(a[:, :], testdata)
Resize array
a.resize((10, 10))
Update attributes
a.update_attributes({'question': 'life', 'answer': 0})
Zarr v2
a = zarrita.ArrayV2.create(
store / 'array',
shape=(16, 16),
dtype='int32',
chunks=(2, 8),
)
a[:, :] = testdata
a3 = a.convert_to_v3()
assert a3.metadata.shape == a.shape
Async methods
a = await zarrita.Array.create_async(
store / 'array_async',
shape=(16, 16),
dtype='int32',
chunk_shape=(2, 8),
)
await a.async_[:, :].set(testdata)
assert np.array_equal(await a.async_[:, :].get(), testdata)
Credits
This is a largely-rewritten fork of zarrita by @alimanfoo. It implements the Zarr v3 draft specification created by @alimanfoo, @jstriebel, @jbms et al.
Licensed under MIT
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file zarrita-0.2.7.tar.gz.
File metadata
- Download URL: zarrita-0.2.7.tar.gz
- Upload date:
- Size: 24.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.3 CPython/3.11.9 Darwin/23.5.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f607d401f6f179e1b95e8cb089301287df2ba92c6a301d5659c645feafa05a4a
|
|
| MD5 |
19217ca6f883ecc302133cf9d46a6e3e
|
|
| BLAKE2b-256 |
ad5ace27b43d6fc3c6a7520d15f598f32905210cfc7d7f5b42119f5a10e753f1
|
File details
Details for the file zarrita-0.2.7-py3-none-any.whl.
File metadata
- Download URL: zarrita-0.2.7-py3-none-any.whl
- Upload date:
- Size: 30.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.3 CPython/3.11.9 Darwin/23.5.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c9b830be3c3b5376dca94d6dc573747d5674148aa0b0b758d1511a43fee22c26
|
|
| MD5 |
596784cc7bf534ae6f63f1f040fca309
|
|
| BLAKE2b-256 |
1437817ee1313ce7fdf8a52e85ccba15873c1ae6ad3761f61702cd90846cb81c
|