BaseClass¶
-
class
sknano.core.meta.
BaseClass
(*args, verbose=False, debug=False, **kwargs)[source] [edit on github][source]¶ Bases:
object
ABC defining a common set of attributes/methods for other base classes.
Parameters: Attributes
fmtstr
Format string. Methods
todict
()Return dict
of constructor parameters.Attributes Summary
fmtstr
Format string. Methods Summary
todict
()Return dict
of constructor parameters.Attributes Documentation
-
fmtstr
¶ Format string.
User defined format string that should be set by all
BaseClass
sub-classes. The format string should contain replacement fields that are the named keyword arguments contained in thedict
returned by the sub-class implementation of thetodict
method, which is required to be overridden by any callable sub-class ofBaseClass
.
Methods Documentation
-