Skip to content

Latest commit

 

History

History
37 lines (30 loc) · 1.05 KB

File metadata and controls

37 lines (30 loc) · 1.05 KB

Working with attributes

Zarr arrays and groups support custom key/value attributes, which can be useful for storing application-specific metadata. For example:

import zarr
store = zarr.storage.MemoryStore()
root = zarr.create_group(store=store)
root.attrs['foo'] = 'bar'
z = root.create_array(name='zzz', shape=(10000, 10000), dtype='int32')
z.attrs['baz'] = 42
z.attrs['qux'] = [1, 4, 7, 12]
print(sorted(root.attrs))
print('foo' in root.attrs)
print(root.attrs['foo'])
print(sorted(z.attrs))
print(z.attrs['baz'])
print(z.attrs['qux'])

Internally Zarr uses JSON to store array attributes, so attribute values must be JSON serializable.