Skip to content

Instantly share code, notes, and snippets.

@dasgoll
Created June 10, 2023 08:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dasgoll/1d3b32676f31a2a69d99b27bc03d5110 to your computer and use it in GitHub Desktop.
Save dasgoll/1d3b32676f31a2a69d99b27bc03d5110 to your computer and use it in GitHub Desktop.
python requests no verify ssl warning
import requests
import urllib3
urllib3.disable_warnings()
r = requests.get('https://localhost:8080/hi', verify=False)
print(r.text)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment