Using a ProxyΒΆ

If you are behind a proxy server, you can pass a proxies dictionary to the Geoclient object:

proxies = {
    'http': 'http://user:password@host:port',
    'https': 'http://user:password@host:port',
    }
g = Geoclient('my app ID', 'my app key', proxies)

See the Requests documentation for more info on using proxies.