Created
August 28, 2018 22:04
-
-
Save jeffgreenca/7d00ecfcc9638dc2998dd93602945ebe to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import requests | |
# BAD IDEA - VERY INSECURE | |
from urllib3.exceptions import InsecureRequestWarning | |
requests.packages.urllib3.disable_warnings(category=InsecureRequestWarning) | |
r = requests.get(url, verify=False) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment