Exemplo n.º 1
0
 def  _delete(self, url):
     cert_path = config.get_client_cert_path()
     return requests.delete(url, verify=False, cert=cert_path)
Exemplo n.º 2
0
 def _put(self, url, data):
     cert_path = config.get_client_cert_path()
     return requests.put(url, verify=False, cert=cert_path, data=data)