If I supply None
or an empty dict
to the proxies
parameter, requests
will automatically fall back to the proxies configured for the operating system as obtained through urllib.request.getproxies()
(Python 3) / urllib.getproxies()
.
import requests
r = requests.get('http://google.com', proxies = {}) # or = None...
print(r.text)
Specifying proxies = { 'http': False }
will even cause requests
to hang completely for whatever weird reason.
So how do I direct requests
to perform HTTP requests directly, without any proxy ?