Skip to content
Snippets Groups Projects
Forked from DM / dm-docs
261 commits behind, 429 commits ahead of the upstream repository.
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
datasetMetadata.py 223 B
#!/usr/bin/env python

from dmObject import DmObject

class DatasetMetadata(DmObject):

    DEFAULT_KEY_LIST = [ 'id', 'datasetName', 'experimentName' ]

    def __init__(self, dict):
        DmObject.__init__(self, dict)