I\'m working on a simple script that involves CAS, jspring security check, redirection, etc. I would like to use Kenneth Reitz\'s python requests because it\'s a great piec
The name of CA file to use you could pass via verify:
verify
cafile = 'cacert.pem' # http://curl.haxx.se/ca/cacert.pem r = requests.get(url, verify=cafile)
If you use verify=True then requests uses its own CA set that might not have CA that signed your server certificate.
verify=True
requests