File tree Expand file tree Collapse file tree 1 file changed +10
-10
lines changed
Expand file tree Collapse file tree 1 file changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -68,16 +68,16 @@ def process_url(
6868
6969 This allows us to pass options to the simplecache filesystem as well::
7070
71- process_url(
72- url="s3://bucket/key",
73- mode="r",
74- storage_options={
75- "s3": {"key": "my_key", "secret": "my_secret"},
76- "simplecache": {"cache_storage": "custom/local/cache/path"}
77- },
78- memory_cache_size=0,
79- disk_cache=True,
80- )
71+ >>> process_url(
72+ ... url="s3://bucket/key",
73+ ... mode="r",
74+ ... storage_options={
75+ ... "s3": {"key": "my_key", "secret": "my_secret"},
76+ ... "simplecache": {"cache_storage": "custom/local/cache/path"}
77+ ... },
78+ ... memory_cache_size=0,
79+ ... disk_cache=True,
80+ ... )
8181 """
8282 # Append simplecache (disk caching) protocol to the URL.
8383 if disk_cache is True :
You can’t perform that action at this time.
0 commit comments