You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Most HTTP(S) downloads from this library support proxy automatically by reading the HTTP_PROXY environment variable (et al.) because requests is widely used. However, in some parts of the code, fsspec is used, which in turn uses aiohttp for HTTP(S) requests (as opposed to requests), which in turn doesn't support reading proxy env variables by default. This PR enables reading them automatically.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Most HTTP(S) downloads from this library support proxy automatically by reading the
HTTP_PROXY
environment variable (et al.) becauserequests
is widely used. However, in some parts of the code,fsspec
is used, which in turn usesaiohttp
for HTTP(S) requests (as opposed torequests
), which in turn doesn't support reading proxy env variables by default. This PR enables reading them automatically.Read aiohttp docs on using proxies.
For context, the Python library requests and the official Python library via
urllib.urlopen
support this automatically by default. Many (most common ones?) programs also do the same, including cURL, APT, Wget, and many others.