Skip to content

Commit d8b67d4

Browse files
committed
expose the get-manifest call
1 parent 5f8e959 commit d8b67d4

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

dataikuapi/dss/project.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
from .ml import DSSMLTask
1717
from .analysis import DSSAnalysis
1818
from .flow import DSSProjectFlow
19+
from .app import DSSAppManifest
1920
from dataikuapi.utils import DataikuException
2021

2122

@@ -930,6 +931,15 @@ def to_schema_table_pair(x):
930931
return {"schema":x.get("databaseName", None), "table":x["table"]}
931932
return [to_schema_table_pair(x) for x in DSSFuture.get_result_wait_if_needed(self.client, ret)['tables']]
932933

934+
########################################################
935+
# App designer
936+
########################################################
937+
938+
def get_app_manifest(self):
939+
raw_data = self.client._perform_json("GET", "/projects/%s/app-manifest" % self.project_key)
940+
return DSSAppManifest(self.client, raw_data)
941+
942+
933943
class TablesImportDefinition(object):
934944
"""
935945
Temporary structure holding the list of tables to import

0 commit comments

Comments
 (0)