I'm using a proxy which has self-signed SSL certificate.
curl
has a --proxy-insecure
option which not check ssl of proxy for validation.
curl -x https://some.proxy.com --proxy-insecure -I https://www.somewebsite.now
I want to covert my code in python,
so is there any substitution for --proxy-insecure
in python?