def get_item(api_key, uuid):
    "Return an item, identified by @uuid"
    return _get_object(api_key, "item", uuid)
def get_version(api_key, uuid):
    "Return an SDK Version, identified by @uuid"
    return _get_object(api_key, "version", uuid)
def get_bundle(api_key, uuid):
    "Return a bundle, identified by @uuid"
    return _get_object(api_key, "collectionbundle", uuid)
def get_app(api_key, uuid):
    "Return an application, identified by @uuid"
    return _get_object(api_key, "app", uuid)
def get_collection(api_key, uuid):
    "Return a collection, identified by @uuid"
    return _get_object(api_key, "collection", uuid)
def get_media(api_key, uuid):
    "Return a media object, identified by @uuid"
    return _get_object(api_key, "media", uuid)
def get_tag(api_key, uuid):
    "Return an item, identified by @uuid"
    return _get_object(api_key, "tag", uuid)
示例#8
0
def get_item(api_key, uuid):
    "Return an item, identified by @uuid"
    return _get_object(api_key, "item", uuid)
def get_image(api_key, uuid):
    "Return an image, identified by @uuid"
    return _get_object(api_key, "image", uuid)
示例#10
0
def get_media(api_key, uuid):
    "Return a media object, identified by @uuid"
    return _get_object(api_key, "image", uuid)
示例#11
0
def get_collection(api_key, uuid):
    "Return a collection, identified by @uuid"
    return _get_object(api_key, "collection", uuid)
示例#12
0
def get_image(api_key, uuid):
    "Return an image, identified by @uuid"
    return _get_object(api_key, "image", uuid)
示例#13
0
def get_bundle(api_key, uuid):
    "Return a bundle, identified by @uuid"
    return _get_object(api_key, "collectionbundle", uuid)
示例#14
0
def get_version(api_key, uuid):
    "Return an SDK Version, identified by @uuid"
    return _get_object(api_key, "version", uuid)
示例#15
0
def get_app(api_key, uuid):
    "Return an application, identified by @uuid"
    return _get_object(api_key, "app", uuid)
示例#16
0
def get_tag(api_key, uuid):
    "Return an item, identified by @uuid"
    return _get_object(api_key, "tag", uuid)