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 d08c192 commit 9e9bc06Copy full SHA for 9e9bc06
docs/user-guide/storage.rst
@@ -89,9 +89,11 @@ API. ``storage_options`` can be used to configure the fsspec backend.:
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
+
93
+ >>> import fsspec
94
>>> fs = fsspec.filesystem(
95
... 's3', anon=True, asynchronous=True,
- ... client_kwargs={'endpoint_url': "https://s3.example-site.org"}
96
+ ... client_kwargs={'endpoint_url': "https://noaa-nwm-retro-v2-zarr-pds.s3.amazonaws.com"}
97
... )
98
>>> store = zarr.storage.FsspecStore(fs)
99
0 commit comments