demo_requests_delete_verify_false.py:
import requests url = 'https://begtut.com/python/demopage.php' #make the request and specify that there will be no verifying: x = requests.delete(url, verify=False) print(x.status_code)
➜ begtut>python demo_requests_delete_verify_false.py
200