-
I'm trying to access a remote zarr store via my work network which uses a proxy. It seems that the requests go through |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 11 replies
-
Hey @loicdtx, I ran into the same problem today. Did you find a solution eventually? |
Beta Was this translation helpful? Give feedback.
actually, it appears there's an even easier option: just pass
storage_options={"client_kwargs": {"trust_env": True}}
toxr.open_dataset
:(this works for the
http
filesystem, other filesystem implementations might have different names, e.g."session_kwargs"
instead of"client_kwargs"
forgcfs
)