Skip to content

Instantly share code, notes, and snippets.

@random-robbie
Last active October 26, 2021 02:10
Show Gist options
  • Star 8 You must be signed in to star a gist
  • Fork 4 You must be signed in to fork a gist
  • Save random-robbie/bb65335b9632bf1ed38923c768cefa02 to your computer and use it in GitHub Desktop.
Save random-robbie/bb65335b9632bf1ed38923c768cefa02 to your computer and use it in GitHub Desktop.
Python Requests Ignore Bad SSL certificate
import requests
from requests.packages.urllib3.exceptions import InsecureRequestWarning
requests.packages.urllib3.disable_warnings(InsecureRequestWarning)
URL = "https://www.somesitewithbadssl.com"
headers = {"User-Agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:54.0) Gecko/20100101 Firefox/54.0","Connection":"close","Accept-Language":"en-US,en;q=0.5","Accept":"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8","Upgrade-Insecure-Requests":"1"}
response = session.get(URL, headers=headers, timeout=15, verify=False)
result = response.text
print (result)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment