bx2
bx2

Reputation: 6486

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?

Upvotes: 7

Views: 13823

Answers (1)

Mark Lavin
Mark Lavin

Reputation: 25164

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.

Upvotes: 3

Related Questions