Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

urllib2 - ability skip certificate verification

I need to simulate somehow option -k (vide --insecure to ignore SSL certificate verification) for curl but using urllib2. Any clues?

like image 888
bx2 Avatar asked Jul 30 '12 15:07

bx2


1 Answers

There is nothing special to do here. urllib2 does not do SSL certificate verification by default. There is a warning in the documentation http://docs.python.org/library/urllib2.html

Warning HTTPS requests do not do any verification of the server’s certificate.

like image 50
Mark Lavin Avatar answered Oct 12 '22 19:10

Mark Lavin