We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a07c660 commit c2b10b0Copy full SHA for c2b10b0
docs/user-guide/storage.rst
@@ -87,6 +87,14 @@ API. ``storage_options`` can be used to configure the fsspec backend.:
87
>>> zarr.open_group(store=store, mode='r')
88
<Group <FsspecStore(S3FileSystem, noaa-nwm-retro-v2-zarr-pds)>>
89
90
+The type of filesystem (e.g. S3, https, etc..) is inferred from the scheme of the url (e.g. s3 for "**s3**://noaa-nwm-retro-v2-zarr-pds").
91
+In case a specific filesystem is needed, one can explicitly create it. For example to create a S3 filesystem:
92
+ >>> fs = fsspec.filesystem(
93
+ ... 's3', anon=True, asynchronous=True,
94
+ ... client_kwargs={'endpoint_url': "https://s3.example-site.org"}
95
+ ... )
96
+ >>> store = zarr.storage.FsspecStore(fs)
97
+
98
Memory Store
99
~~~~~~~~~~~~
100
0 commit comments