For working with SOAP in Python there is a suds library. The problem is that I need to work on the https protocol. In this case suds when typing Client(url) swears at me as follows:
urllib2.URLError: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:590)> I did not think of anything better than sending xml via requests like this:
response = requests.post(url,headers = headers, data = xml, verify = False) So everything works, but I still want to use ready-made solutions. Is there a way to get around ssl in suds ?