We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 34a995c commit 6434724Copy full SHA for 6434724
python/hopsworks/client/external.py
@@ -41,6 +41,11 @@ def __init__(
41
self._port = port
42
self._base_url = "https://" + self._host + ":" + str(self._port)
43
self._project_name = project
44
+ if project is not None:
45
+ project_info = self._get_project_info(project)
46
+ self._project_id = str(project_info["projectId"])
47
+ else:
48
+ self._project_id = None
49
50
if api_key_value is not None:
51
api_key = api_key_value
0 commit comments