--- layout: default navsection: sdk navmenu: Python title: Python SDK examples ... h2. create
result = api.collection().create(body={"collection": {"name": "create example"}}).execute()
h2. delete
result = api.collection().delete(uuid="aaaaa-bbbbb-ccccccccccccccc").execute()
h2. get
result = api.collection().get(uuid="aaaaa-bbbbb-ccccccccccccccc").execute()
h2. list
result = api.collection().list(filters=[["uuid", "=", "aaaaa-bbbbb-ccccccccccccccc"]]).execute()
h2. update
result = api.collection().update(uuid="aaaaa-bbbbb-ccccccccccccccc", body={"collection": {"name": "update example"}}).execute()