Closed Jamalc0m closed 3 years ago
Urllib will automatically detect proxies set up in the environment - so one can just set the HTTP_PROXY variable either in your environment e.g. for Bash:
export HTTP_PROXY=http://proxy_url:proxy_port
export HTTPS_PROXY=http://proxy_url:proxy_port
for Windows CMD:
set HTTP_PROXY=http://proxy_url:proxy_port
set HTTPS_PROXY=http://proxy_url:proxy_port
If you want to use Basic Authenctiation for proxy you should specify credentials as following:
http://username:password@proxy_url:proxy_port
Hey @Barkhat26, thanks for chiming in and providing a correct answer. I've added a hint to the README.
Best, Sebastian
Add to the tool proxy support. Thanks,