Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

ssl unverified certificate python

import ssl 

# creates an unverified certificate with ssl even without certificate
try:
    _create_unverified_https_context = ssl._create_unverified_context
except AttributeError:
    pass
else:
    ssl._create_default_https_context = _create_unverified_https_context

#upvote this if it helped you 
 
PREVIOUS NEXT
Tagged: #ssl #unverified #certificate #python
ADD COMMENT
Topic
Name
1+3 =