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 25f68e7 commit 8bed978Copy full SHA for 8bed978
src/mdio/api/io_utils.py
@@ -58,13 +58,13 @@ def process_url(
58
explicitly state that the options we are passing are for the S3
59
filesystem::
60
61
- process_url(
62
- url="s3://bucket/key",
63
- mode="r",
64
- storage_options={"s3": {"key": "my_key", "secret": "my_secret"}},
65
- memory_cache_size=0,
66
- disk_cache=True,
67
- )
+ >>> process_url(
+ ... url="s3://bucket/key",
+ ... mode="r",
+ ... storage_options={"s3": {"key": "my_key", "secret": "my_secret"}},
+ ... memory_cache_size=0,
+ ... disk_cache=True,
+ ... )
68
69
This allows us to pass options to the simplecache filesystem as well::
70
0 commit comments