Returns all the metadata as a dict. Note that modifications to the returned dict will not reflect on the Metadata object.
(self)
| 153 | super().__setattr__(key, val) |
| 154 | |
| 155 | def as_dict(self): |
| 156 | """ |
| 157 | Returns all the metadata as a dict. |
| 158 | Note that modifications to the returned dict will not reflect on the Metadata object. |
| 159 | """ |
| 160 | return copy.copy(self.__dict__) |
| 161 | |
| 162 | def set(self, **kwargs): |
| 163 | """ |