httpimport icon indicating copy to clipboard operation
httpimport copied to clipboard

Add "VERIFY" to allow for self signed certs

Open wetw0rk opened this issue 5 years ago • 0 comments

This feature should operate in a similar fashion to httpimport.INSECURE = True but instead httpimport.VERIFY = False to allow self signed certificates.

For example:

import httpimport

httpimport.VERIFY = False

with httpimport.remote_repo(['lib'], 'https://127.0.0.1'):
  from lib import thing

wetw0rk avatar Sep 01 '20 18:09 wetw0rk