Package suds :: Module properties :: Class Inspector
[hide private]
[frames] | no frames]

Class Inspector

source code

Wrapper inspector.

Instance Methods [hide private]
 
__init__(self, options) source code
any
get(self, name, *df)
Get the value of a property by name.
source code
Properties
update(self, **kwargs)
Update the property values as specified by keyword/value.
source code
Properties
link(self, other)
Link (associate) this object with another properties object to create a network of properties.
source code
Properties
unlink(self, other)
Unlink (disassociate) the specified properties object.
source code
Method Details [hide private]

get(self, name, *df)

source code 

Get the value of a property by name.

Parameters:
  • name (str) - The property name.
  • df ([1].) - An optional value to be returned when the value is not set
Returns: any
The stored value, or df[0] if not set.

update(self, **kwargs)

source code 

Update the property values as specified by keyword/value.

Parameters:
  • kwargs (dict) - A list of property name/values to set.
Returns: Properties
self

link(self, other)

source code 

Link (associate) this object with another properties object to create a network of properties. Links are bidirectional.

Parameters:
Returns: Properties
self

unlink(self, other)

source code 

Unlink (disassociate) the specified properties object.

Parameters:
Returns: Properties
self