44=======
55
66Zarr-Python supports multiple storage backends, including: local file systems,
7- Zip files, remote stores via `` fsspec `` (S3, HTTP, etc.), and in-memory stores. In
7+ Zip files, remote stores via fsspec _ (S3, HTTP, etc.), and in-memory stores. In
88Zarr-Python 3, stores must implement the abstract store API from
99:class: `zarr.abc.store.Store `.
1010
@@ -58,7 +58,7 @@ Zip Store
5858~~~~~~~~~
5959
6060The :class: `zarr.storage.ZipStore ` stores the contents of a Zarr hierarchy in a single
61- Zip file. The `Zip Store specification_ ` is currently in draft form.
61+ Zip file. The `Zip Store specification `_ is currently in draft form.
6262
6363.. ipython :: python
6464
@@ -71,9 +71,9 @@ Remote Store
7171The :class: `zarr.storage.FsspecStore ` stores the contents of a Zarr hierarchy in following the same
7272logical layout as the ``LocalStore ``, except the store is assumed to be on a remote storage system
7373such as cloud object storage (e.g. AWS S3, Google Cloud Storage, Azure Blob Store). The
74- :class: `zarr.storage.FsspecStore ` is backed by `Fsspec_ ` and can support any Fsspec backend
74+ :class: `zarr.storage.FsspecStore ` is backed by `fsspec `_ and can support any backend
7575that implements the `AbstractFileSystem ` API. ``storage_options `` can be used to configure
76- the Fsspec backend.
76+ the fsspec backend.
7777
7878.. ipython :: python
7979
@@ -87,7 +87,7 @@ the Fsspec backend.
8787 Memory Store
8888~~~~~~~~~~~~
8989
90- The :class: `zarr.storage.FsspecStore ` a in-memory store that allows for serialization of
90+ The :class: `zarr.storage.MemoryStore ` a in-memory store that allows for serialization of
9191Zarr data (metadata and chunks) to a dictionary.
9292
9393.. ipython :: python
@@ -104,4 +104,4 @@ Class includes all of the methods needed to be a fully operational store in Zarr
104104Zarr also provides a test harness for custom stores: :class: `zarr.testing.store.StoreTests `.
105105
106106.. _Zip Store Specification : https://github.com/zarr-developers/zarr-specs/pull/311
107- .. _ Fsspec : https://zarr-specs .readthedocs.io/en/latest/v3/core/v3.0.html#consolidated-metadata
107+ .. _ fsspec : https://filesystem-spec .readthedocs.io
0 commit comments