dayhoff-tools 1.13.4__py3-none-any.whl → 1.13.5__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- dayhoff_tools/cli/engines_studios/api_client.py +13 -2
- {dayhoff_tools-1.13.4.dist-info → dayhoff_tools-1.13.5.dist-info}/METADATA +1 -1
- {dayhoff_tools-1.13.4.dist-info → dayhoff_tools-1.13.5.dist-info}/RECORD +5 -5
- {dayhoff_tools-1.13.4.dist-info → dayhoff_tools-1.13.5.dist-info}/WHEEL +0 -0
- {dayhoff_tools-1.13.4.dist-info → dayhoff_tools-1.13.5.dist-info}/entry_points.txt +0 -0
|
@@ -116,11 +116,22 @@ class StudioManagerClient:
|
|
|
116
116
|
Response JSON
|
|
117
117
|
|
|
118
118
|
Raises:
|
|
119
|
-
|
|
119
|
+
RuntimeError: If request fails with error message from API
|
|
120
120
|
"""
|
|
121
121
|
url = f"{self.api_url}{path}"
|
|
122
122
|
response = requests.request(method, url, **kwargs)
|
|
123
|
-
|
|
123
|
+
|
|
124
|
+
# Parse error body if request failed
|
|
125
|
+
if not response.ok:
|
|
126
|
+
try:
|
|
127
|
+
error_body = response.json()
|
|
128
|
+
error_message = error_body.get("error", response.text)
|
|
129
|
+
except Exception:
|
|
130
|
+
error_message = response.text or f"HTTP {response.status_code}"
|
|
131
|
+
|
|
132
|
+
# Raise exception with the actual error message from API
|
|
133
|
+
raise RuntimeError(error_message)
|
|
134
|
+
|
|
124
135
|
return response.json()
|
|
125
136
|
|
|
126
137
|
# Engine operations
|
|
@@ -11,7 +11,7 @@ dayhoff_tools/cli/engine1/engine_management.py,sha256=s_H3FtMlKsdfzR8pwV-j2W2QX-
|
|
|
11
11
|
dayhoff_tools/cli/engine1/shared.py,sha256=Ecx6I1jtzmxQDn3BezKpgpQ4SJeZf4SZjUCLg-67p80,16844
|
|
12
12
|
dayhoff_tools/cli/engine1/studio_commands.py,sha256=VwTQujz32-uMcYusDRE73SdzRpgvIkv7ZAF4zRv6AzA,30266
|
|
13
13
|
dayhoff_tools/cli/engines_studios/__init__.py,sha256=E6aG0C6qjJnJuClemSKRFlYvLUL49MQZOvfqNQ7SDKs,159
|
|
14
|
-
dayhoff_tools/cli/engines_studios/api_client.py,sha256=
|
|
14
|
+
dayhoff_tools/cli/engines_studios/api_client.py,sha256=McZyyh5H36gkrK6s6Z7s9hl7yLLSLrHjsBtR4Opg6Ko,13491
|
|
15
15
|
dayhoff_tools/cli/engines_studios/auth.py,sha256=rwetV5hp4jSvK8FyvKgXCnezLOZx1aW8oiSDc6U83iE,5189
|
|
16
16
|
dayhoff_tools/cli/engines_studios/engine-studio-cli.md,sha256=or4k7ZZKPMTkvu67PdcUTE2_cxjnj0HQxxTuJZR1uiA,29924
|
|
17
17
|
dayhoff_tools/cli/engines_studios/engine_commands.py,sha256=ZvUt9Gfl1-mhTu-jWAP3w6C_JVcrwOqfJV_jG0-_YGA,37330
|
|
@@ -48,7 +48,7 @@ dayhoff_tools/intake/uniprot.py,sha256=BZYJQF63OtPcBBnQ7_P9gulxzJtqyorgyuDiPeOJq
|
|
|
48
48
|
dayhoff_tools/logs.py,sha256=DKdeP0k0kliRcilwvX0mUB2eipO5BdWUeHwh-VnsICs,838
|
|
49
49
|
dayhoff_tools/sqlite.py,sha256=jV55ikF8VpTfeQqqlHSbY8OgfyfHj8zgHNpZjBLos_E,18672
|
|
50
50
|
dayhoff_tools/warehouse.py,sha256=UETBtZD3r7WgvURqfGbyHlT7cxoiVq8isjzMuerKw8I,24475
|
|
51
|
-
dayhoff_tools-1.13.
|
|
52
|
-
dayhoff_tools-1.13.
|
|
53
|
-
dayhoff_tools-1.13.
|
|
54
|
-
dayhoff_tools-1.13.
|
|
51
|
+
dayhoff_tools-1.13.5.dist-info/METADATA,sha256=KZfqGPGjAPOX9-anxbiPQ1pMh04iS9YhCBU5e-cs2aE,2980
|
|
52
|
+
dayhoff_tools-1.13.5.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
|
|
53
|
+
dayhoff_tools-1.13.5.dist-info/entry_points.txt,sha256=iAf4jteNqW3cJm6CO6czLxjW3vxYKsyGLZ8WGmxamSc,49
|
|
54
|
+
dayhoff_tools-1.13.5.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|