After authentication, the earth engine API connects with the servers successfully with the Initialize() function.
import ee
ee.Initialize()
However, as soon as I start using a proxy server, the initialization fails and generates the following error.
TimeoutError: [WinError 10060] A connection attempt failed because the
connected party did not properly respond after a period of time, or
established connection failed because connected host has failed to respond
I have tried modifying the IPython notebook server environment
import os
os.environ['HTTP_PROXY'] = 'my_proxy_id:proxy_port'
os.environ['HTTPS_PROXY'] = 'my_proxy_id:proxy_port'
Still the ee library fails to connect with the servers. How do I update the proxy settings?