Group¶
zarrista.Group ¶
A read-only Zarr group.
open
staticmethod
¶
open(store: FilesystemStore | MemoryStore, path: str = '/') -> Group
Open the group stored at path in store.
zarrista.AsyncGroup ¶
A read-only Zarr group backed by an async store.
open_async
async
staticmethod
¶
open_async(store: AsyncStore, path: str = '/') -> AsyncGroup
Open the group stored at path in store.
store may be an obstore ObjectStore or an icechunk Session.
open_child_async
async
¶
open_child_async(name: str) -> AsyncArray | AsyncGroup
Open a direct child array or group by name.