MCPcopy Create free account
hub / github.com/ronreiter/interactive-tutorials / __init__

Method __init__

suds/serviceproxy.py:41–55  ·  view source on GitHub ↗

@param url: The URL for the WSDL. @type url: str @param kwargs: keyword arguments. @keyword faults: Raise faults raised by server (default:True), else return tuple from service method invocation as (http code, object)

(self, url, **kwargs)

Source from the content-addressed store, hash-verified

39 """
40
41 def __init__(self, url, **kwargs):
42 """
43 @param url: The URL for the WSDL.
44 @type url: str
45 @param kwargs: keyword arguments.
46 @keyword faults: Raise faults raised by server (default:True),
47 else return tuple from service method invocation as
48 (http code, object).
49 @type faults: boolean
50 @keyword proxy: An http proxy to be specified on requests (default:{}).
51 The proxy is defined as {protocol:proxy,}
52 @type proxy: dict
53 """
54 client = Client(url, **kwargs)
55 self.__client__ = client
56
57 def get_instance(self, name):
58 """

Callers

nothing calls this directly

Calls 1

ClientClass · 0.85

Tested by

no test coverage detected