Esempio n. 1
0
File: did.py Progetto: kbg/rucio
def get_did_meta(scope, name):
    """
    Get all metadata for a given did

    :param scope: the scope of did
    :param name: the name of the did
    """
    return did.get_did_meta(scope=scope, name=name)
Esempio n. 2
0
def get_did_meta(scope, name, vo='def'):
    """
    Get all metadata for a given did

    :param scope: the scope of did
    :param name: the name of the did
    :param vo: The VO to act on.
    """

    scope = InternalScope(scope, vo=vo)
    return did.get_did_meta(scope=scope, name=name)