You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`zarr.storage.ObjectStore` stores the contents of the Zarr hierarchy using any ObjectStore
114
-
[storage implementation](https://developmentseed.org/obstore/latest/api/store/), including AWS S3 (`obstore.store.S3Store`), Google Cloud Storage (`obstore.store.GCSStore`), and Azure Blob Storage (`obstore.store.AzureStore`). This store is backed by [obstore](https://developmentseed.org/obstore/latest/), which
113
+
[`zarr.storage.ObjectStore`][] stores the contents of the Zarr hierarchy using any ObjectStore
114
+
[storage implementation](https://developmentseed.org/obstore/latest/api/store/), including AWS S3 ([`obstore.store.S3Store`][]), Google Cloud Storage ([`obstore.store.GCSStore`][]), and Azure Blob Storage ([`obstore.store.AzureStore`][]). This store is backed by [obstore](https://developmentseed.org/obstore/latest/), which
115
115
builds on the production quality Rust library [object_store](https://docs.rs/object_store/latest/object_store/).
116
116
117
117
```python
@@ -144,10 +144,10 @@ group.info
144
144
```
145
145
146
146
!!! warning
147
-
The `zarr.storage.ObjectStore` class is experimental.
147
+
The [`zarr.storage.ObjectStore`][] class is experimental.
148
148
149
149
## Developing custom stores
150
150
151
-
Zarr-Python `zarr.abc.store.Store` API is meant to be extended. The Store Abstract Base
151
+
Zarr-Python [`zarr.abc.store.Store`][] API is meant to be extended. The Store Abstract Base
152
152
Class includes all of the methods needed to be a fully operational store in Zarr Python.
153
-
Zarr also provides a test harness for custom stores: `zarr.testing.store.StoreTests`.
153
+
Zarr also provides a test harness for custom stores: [`zarr.testing.store.StoreTests`][].
0 commit comments