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

Method __init__

suds/servicedefinition.py:45–62  ·  view source on GitHub ↗

@param wsdl: A wsdl object @type wsdl: L{Definitions} @param service: A service B{name}. @type service: str

(self, wsdl, service)

Source from the content-addressed store, hash-verified

43 """
44
45 def __init__(self, wsdl, service):
46 """
47 @param wsdl: A wsdl object
48 @type wsdl: L{Definitions}
49 @param service: A service B{name}.
50 @type service: str
51 """
52 self.wsdl = wsdl
53 self.service = service
54 self.ports = []
55 self.params = []
56 self.types = []
57 self.prefixes = []
58 self.addports()
59 self.paramtypes()
60 self.publictypes()
61 self.getprefixes()
62 self.pushprefixes()
63
64 def pushprefixes(self):
65 """

Callers

nothing calls this directly

Calls 5

addportsMethod · 0.95
paramtypesMethod · 0.95
publictypesMethod · 0.95
getprefixesMethod · 0.95
pushprefixesMethod · 0.95

Tested by

no test coverage detected