urllib2.URLError Python SUDS library
To figure this out, you’re going to need logging. Turn on logging with the following:
http://stackoverflow.com/questions/2388046/can-you-help-me-solve-this-suds-soap-issue
import logging
logging.basicConfig(level=logging.INFO)
logging.getLogger('suds.client').setLevel(logging.DEBUG)
logging.getLogger('suds.transport').setLevel(logging.DEBUG)
logging.getLogger('suds.xsd.schema').setLevel(logging.DEBUG)
logging.getLogger('suds.wsdl').setLevel(logging.DEBUG)