pysimm.utils¶
Module Contents¶
Classes¶
pysimm.utils.Container |
|
pysimm.utils.ItemContainer |
|
Functions¶
|
- exception pysimm.utils.PysimmError[source]¶
Bases:
ExceptionCommon base class for all non-exit exceptions.
- class pysimm.utils.Container[source]¶
Bases:
objectpysimm.utils.Container
Abitrary container object that returns None if trying to access an attribute that does not exist
- class pysimm.utils.ItemContainer(_dict=None, **kwargs)[source]¶
Bases:
collections.abc.Sequencepysimm.utils.ItemContainer
Container object intended to organize
Itemobjects. Arbitrary attributes can be set using keyword arguments. Underlying data structure is a dictionary where the key is referred to as a tag, and the value should be anItemobject.Item.tag should equal the key for the object in the dictionary.