Skip to content

Commit a3afa44

Browse files
committed
Obstore interlinking
1 parent bfb70cd commit a3afa44

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

docs/conf.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -369,6 +369,7 @@ def setup(app: sphinx.application.Sphinx) -> None:
369369
"python": ("https://docs.python.org/3/", None),
370370
"numpy": ("https://numpy.org/doc/stable/", None),
371371
"numcodecs": ("https://numcodecs.readthedocs.io/en/stable/", None),
372+
"obstore": ("https://developmentseed.org/obstore/latest/", None),
372373
}
373374

374375

docs/user-guide/storage.rst

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ Explicit Store Creation
4747

4848
In some cases, it may be helpful to create a store instance directly. Zarr-Python offers four
4949
built-in store: :class:`zarr.storage.LocalStore`, :class:`zarr.storage.FsspecStore`,
50-
:class:`zarr.storage.ZipStore`, and :class:`zarr.storage.MemoryStore`.
50+
:class:`zarr.storage.ZipStore`, :class:`zarr.storage.MemoryStore`, and :class:`zarr.storage.ObjectStore`.
5151

5252
Local Store
5353
~~~~~~~~~~~
@@ -102,10 +102,8 @@ Zarr data (metadata and chunks) to a dictionary.:
102102
Object Store
103103
~~~~~~~~~~~~
104104

105-
106105
:class:`zarr.storage.ObjectStore` stores the contents of the Zarr hierarchy using any ObjectStore
107-
`storage implementation <https://developmentseed.org/obstore/latest/api/store/>`_, such as
108-
AWS S3, Google Cloud Storage, and Azure Blob Storage. This store is backed by `obstore <https://developmentseed.org/obstore/latest/>`_, which
106+
`storage implementation <https://developmentseed.org/obstore/latest/api/store/>`_, including AWS S3 (:class:`obstore.store.S3Store`), Google Cloud Storage (:class:`obstore.store.GCSStore`), and Azure Blob Storage (:class:`obstore.store.AzureStore`). This store is backed by `obstore <https://developmentseed.org/obstore/latest/>`_, which
109107
builds on the production quality Rust library `object_store <https://docs.rs/object_store/latest/object_store/>`_.
110108

111109

0 commit comments

Comments
 (0)