pysimm.utils module¶
-
class
pysimm.utils.
Container
[source]¶ Bases:
object
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:
_abcoll.Sequence
Container object intended to organize
Item
objects. 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 anItem
object.Item
.tag should equal the key for the object in the dictionary.