spacepy.datamodel.MetaMixin¶
- class spacepy.datamodel.MetaMixin[source]¶
Mixin class that adds a ‘meta’ attribute that acts like ‘attrs’
Recommendation from the Python Heliophysics community is to allow access to metadata via either an
attrs
attribute ormeta
. This mixin class supports that recommendation.- __init__(*args, **kwargs)¶
Methods
Attributes
- meta¶
Equivalent to
attrs
Some APIs use
attrs
for metadata; some usemeta
. This is a convenience property to make it easier for those familiar with themeta
convention.