frictionlessdata / datapackage-py

A Python library for working with Data Packages.
https://frictionlessdata.io
MIT License
189 stars 44 forks source link

add howto for proxy server to documentation #238

Closed renxida closed 4 years ago

renxida commented 4 years ago

It took me a little to figure out, but in order to fetch data with a proxy server, one has to do the following before running Package("https://xxx.json"):

import os os.environ["HTTP_PROXY"] = 'xxx' os.environ["HTTPS_PROXY"] = 'xxx'

I wonder if we could add this to the documentation? I searched for "proxy" on the repo with 0 results. I also checked the tableschema repo to no avail.

roll commented 4 years ago

Thanks!

It's added