Store¶
The store module provides a factory for opening Zarr stores from path strings. Paths starting with s3:// open S3-backed stores; all other paths open local filesystem stores.
Factory¶
zagg.store.open_store ¶
Open a Zarr store from a path string.
Parameters:
-
path(str) –Store path.
s3://bucket/prefixopens an S3-backed store; all other paths open a local filesystem store. -
read_only(bool, default:False) –Whether to open in read-only mode.
-
**kwargs–For S3 stores:
region(default"us-west-2").
Returns:
-
Store–