Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions HISTORY.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@ Changelog



14.5.1 (2026-04-27)
-------------------

* Initial release for DSS 14.5.1


14.5.0 (2026-04-17)
-------------------

Expand Down
21 changes: 21 additions & 0 deletions dataikuapi/dss/project.py
Original file line number Diff line number Diff line change
Expand Up @@ -3017,6 +3017,27 @@ def get_webapp(self, webapp_id):
"""
return DSSWebApp(self.client, self.project_key, webapp_id)

def create_webapp(self, name, webapp_type="STANDARD"):
"""
Create a new native code webapp in the project

:param str name: the name of the webapp
:param str webapp_type: the type of webapp to create (defaults to ``STANDARD``)
Supported values are ``STANDARD``, ``BOKEH``, ``DASH``, ``STREAMLIT``, and ``SHINY``

:returns: A webapp handle
:rtype: :class:`dataikuapi.dss.webapp.DSSWebApp`
:raises Exception: If the DSS backend returns an error.
"""
if webapp_type not in ("STANDARD", "BOKEH", "DASH", "STREAMLIT", "SHINY"):
raise ValueError("Webapp type not supported")
payload = {
"name": name,
"type": webapp_type
}
webapp = self.client._perform_json("POST", "/projects/%s/webapps/" % self.project_key, body=payload)
return DSSWebApp(self.client, self.project_key, webapp["webAppId"])


########################################################
# Dashboards
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from setuptools import setup

VERSION = "14.5.0"
VERSION = "14.5.1"

long_description = (open('README').read() + '\n\n' +
open('HISTORY.txt').read())
Expand Down