I have a python script that loads a csv file from a server via https. I'm behind a corporate proxy, so I need to provide that info to the script.
Let
proxy_dict = {"https://user:password@10.10.1.1:8080"}
where all values are changed to be correct.
Using
print(requests.get(my_url, proxies=proxy_dict).text[:1000]
works as expected.
I want to use pandas.read_csv, which does not have a proxy argument.
How do I set the proxy for pandas? Either as a variable, or for the kernel, or system-wide, as long as only Python is affected.
Running Anaconda 3.6.3 x64 on Windows 7 x64.
Thank you!