Ejemplo n.º 1
0
def get_item(api_key, uuid):
    "Return an item, identified by @uuid"
    return _get_object(api_key, "item", uuid)
Ejemplo n.º 2
0
def get_version(api_key, uuid):
    "Return an SDK Version, identified by @uuid"
    return _get_object(api_key, "version", uuid)
Ejemplo n.º 3
0
def get_bundle(api_key, uuid):
    "Return a bundle, identified by @uuid"
    return _get_object(api_key, "collectionbundle", uuid)
Ejemplo n.º 4
0
def get_app(api_key, uuid):
    "Return an application, identified by @uuid"
    return _get_object(api_key, "app", uuid)
Ejemplo n.º 5
0
def get_collection(api_key, uuid):
    "Return a collection, identified by @uuid"
    return _get_object(api_key, "collection", uuid)
Ejemplo n.º 6
0
def get_media(api_key, uuid):
    "Return a media object, identified by @uuid"
    return _get_object(api_key, "media", uuid)
Ejemplo n.º 7
0
def get_tag(api_key, uuid):
    "Return an item, identified by @uuid"
    return _get_object(api_key, "tag", uuid)
Ejemplo n.º 8
0
def get_item(api_key, uuid):
    "Return an item, identified by @uuid"
    return _get_object(api_key, "item", uuid)
Ejemplo n.º 9
0
def get_image(api_key, uuid):
    "Return an image, identified by @uuid"
    return _get_object(api_key, "image", uuid)
Ejemplo n.º 10
0
def get_media(api_key, uuid):
    "Return a media object, identified by @uuid"
    return _get_object(api_key, "image", uuid)
Ejemplo n.º 11
0
def get_collection(api_key, uuid):
    "Return a collection, identified by @uuid"
    return _get_object(api_key, "collection", uuid)
Ejemplo n.º 12
0
def get_image(api_key, uuid):
    "Return an image, identified by @uuid"
    return _get_object(api_key, "image", uuid)
Ejemplo n.º 13
0
def get_bundle(api_key, uuid):
    "Return a bundle, identified by @uuid"
    return _get_object(api_key, "collectionbundle", uuid)
Ejemplo n.º 14
0
def get_version(api_key, uuid):
    "Return an SDK Version, identified by @uuid"
    return _get_object(api_key, "version", uuid)
Ejemplo n.º 15
0
def get_app(api_key, uuid):
    "Return an application, identified by @uuid"
    return _get_object(api_key, "app", uuid)
Ejemplo n.º 16
0
def get_tag(api_key, uuid):
    "Return an item, identified by @uuid"
    return _get_object(api_key, "tag", uuid)