|
__init__(self,
parent,
table,
file=None,
decorate=1,
locks=1,
allowalt=True,
loadable=1)
Parameter management table class |
source code
|
|
|
|
|
|
|
find(self,
name,
show=1)
Find parameter tables fields that (partial) match name. |
source code
|
|
|
|
|
keys(self)
Get list of keys (ie, row names) for this table/ |
source code
|
|
|
query(self,
qname)
Retrieve single value from the parameter table by name
without validation. |
source code
|
|
|
queryv(self,
qname)
Retrieve single value from the parameter table by name
with validation. |
source code
|
|
|
|
|
|
|
load(self,
file=None)
Load pickled table database - note that the pickled dictionary
will be unpickled, but only those values referenced in the table
will actually be used. The rest (ie, obsolete) are discarded.
This way you can safely inherit from previous modules w/o
accumulating excess garbage. |
source code
|
|
|
|
|
view(self)
View current contents of table (in a popup dialog box). |
source code
|
|
|
|
|
runlock(self,
lock=1)
Lock table (in preparation for a run. |
source code
|
|
Inherited from object :
__delattr__ ,
__format__ ,
__getattribute__ ,
__hash__ ,
__new__ ,
__reduce__ ,
__reduce_ex__ ,
__repr__ ,
__setattr__ ,
__sizeof__ ,
__str__ ,
__subclasshook__
|