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
If you want to remove the warnings, use the code below.
import urllib3 urllib3.disable_warnings()
and verify=False with request.get or post method
verify=False
request.get
post