pinexq-client 0.9.2.20250716.44__py3-none-any.whl → 0.9.2.20250827.46__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.
- pinexq_client/job_management/__init__.py +1 -1
- pinexq_client/job_management/hcos/info_hco.py +1 -0
- pinexq_client/job_management/hcos/processing_step_hco.py +30 -1
- pinexq_client/job_management/hcos/user_hco.py +1 -1
- pinexq_client/job_management/hcos/workdata_hco.py +25 -0
- pinexq_client/job_management/model/open_api_generated.py +39 -2
- pinexq_client/job_management/tool/processing_step.py +44 -1
- pinexq_client/job_management/tool/workdata.py +24 -1
- {pinexq_client-0.9.2.20250716.44.dist-info → pinexq_client-0.9.2.20250827.46.dist-info}/METADATA +1 -1
- {pinexq_client-0.9.2.20250716.44.dist-info → pinexq_client-0.9.2.20250827.46.dist-info}/RECORD +13 -13
- {pinexq_client-0.9.2.20250716.44.dist-info → pinexq_client-0.9.2.20250827.46.dist-info}/WHEEL +0 -0
- {pinexq_client-0.9.2.20250716.44.dist-info → pinexq_client-0.9.2.20250827.46.dist-info}/entry_points.txt +0 -0
- {pinexq_client-0.9.2.20250716.44.dist-info → pinexq_client-0.9.2.20250827.46.dist-info}/licenses/LICENSE +0 -0
|
@@ -4,7 +4,7 @@ from typing import List, Self
|
|
|
4
4
|
import httpx
|
|
5
5
|
from pydantic import BaseModel, ConfigDict
|
|
6
6
|
|
|
7
|
-
from pinexq_client.core import upload_json
|
|
7
|
+
from pinexq_client.core import upload_json, Link, MediaTypes
|
|
8
8
|
from pinexq_client.core.hco.action_hco import ActionHco
|
|
9
9
|
from pinexq_client.core.hco.action_with_parameters_hco import ActionWithParametersHco
|
|
10
10
|
from pinexq_client.core.hco.download_link_hco import DownloadLinkHco
|
|
@@ -13,6 +13,7 @@ from pinexq_client.core.hco.link_hco import LinkHco
|
|
|
13
13
|
from pinexq_client.core.hco.unavailable import UnavailableAction
|
|
14
14
|
from pinexq_client.core.hco.upload_action_hco import UploadAction, UploadParameters
|
|
15
15
|
from pinexq_client.job_management.known_relations import Relations
|
|
16
|
+
from pinexq_client.job_management.model import CopyPsFromUserToOrgActionParameters, CopyPsFromOrgToUserActionParameters
|
|
16
17
|
from pinexq_client.job_management.model.open_api_generated import DataSpecificationHto, \
|
|
17
18
|
SetProcessingStepTagsParameters, EditProcessingStepParameters
|
|
18
19
|
from pinexq_client.job_management.model.sirenentities import ProcessingStepEntity
|
|
@@ -75,6 +76,28 @@ class UploadConfigurationAction(UploadAction):
|
|
|
75
76
|
upload_json(self._client, self._action, parameters.json_, parameters.filename)
|
|
76
77
|
|
|
77
78
|
|
|
79
|
+
class ProcessingStepCopyFromUserToOrgAction(ActionWithParametersHco[CopyPsFromUserToOrgActionParameters]):
|
|
80
|
+
def execute(self, parameters: CopyPsFromUserToOrgActionParameters) -> ProcessingStepLink:
|
|
81
|
+
url = self._execute_returns_url(parameters)
|
|
82
|
+
link = Link.from_url(url, [str(Relations.CREATED_RESSOURCE)], "Copied Processing Step", MediaTypes.SIREN)
|
|
83
|
+
return ProcessingStepLink.from_link(self._client, link)
|
|
84
|
+
|
|
85
|
+
def default_parameters(self) -> CopyPsFromUserToOrgActionParameters:
|
|
86
|
+
return self._get_default_parameters(CopyPsFromUserToOrgActionParameters,
|
|
87
|
+
CopyPsFromUserToOrgActionParameters())
|
|
88
|
+
|
|
89
|
+
|
|
90
|
+
class ProcessingStepCopyFromOrgToUserAction(ActionWithParametersHco[CopyPsFromOrgToUserActionParameters]):
|
|
91
|
+
def execute(self, parameters: CopyPsFromOrgToUserActionParameters) -> ProcessingStepLink:
|
|
92
|
+
url = self._execute_returns_url(parameters)
|
|
93
|
+
link = Link.from_url(url, [str(Relations.CREATED_RESSOURCE)], "Copied Processing Step", MediaTypes.SIREN)
|
|
94
|
+
return ProcessingStepLink.from_link(self._client, link)
|
|
95
|
+
|
|
96
|
+
def default_parameters(self) -> CopyPsFromOrgToUserActionParameters:
|
|
97
|
+
return self._get_default_parameters(CopyPsFromOrgToUserActionParameters,
|
|
98
|
+
CopyPsFromOrgToUserActionParameters())
|
|
99
|
+
|
|
100
|
+
|
|
78
101
|
class ProcessingStepHco(Hco[ProcessingStepEntity]):
|
|
79
102
|
title: str = Property()
|
|
80
103
|
version: str | None = Property()
|
|
@@ -102,6 +125,8 @@ class ProcessingStepHco(Hco[ProcessingStepEntity]):
|
|
|
102
125
|
upload_configuration_action: UploadConfigurationAction | None
|
|
103
126
|
hide_action: ProcessingStepHideAction | UnavailableAction
|
|
104
127
|
unhide_action: ProcessingStepUnHideAction | UnavailableAction
|
|
128
|
+
copy_from_user_to_org_action: ProcessingStepCopyFromUserToOrgAction | UnavailableAction
|
|
129
|
+
copy_from_org_to_user_action: ProcessingStepCopyFromOrgToUserAction | UnavailableAction
|
|
105
130
|
|
|
106
131
|
self_link: ProcessingStepLink
|
|
107
132
|
download_link: DownloadLinkHco
|
|
@@ -130,5 +155,9 @@ class ProcessingStepHco(Hco[ProcessingStepEntity]):
|
|
|
130
155
|
client, instance._entity, "Hide")
|
|
131
156
|
instance.unhide_action = ProcessingStepUnHideAction.from_entity_optional(
|
|
132
157
|
client, instance._entity, "UnHide")
|
|
158
|
+
instance.copy_from_user_to_org_action = ProcessingStepCopyFromUserToOrgAction.from_entity_optional(
|
|
159
|
+
client, instance._entity, "CopyToOrg")
|
|
160
|
+
instance.copy_from_org_to_user_action = ProcessingStepCopyFromOrgToUserAction.from_entity_optional(
|
|
161
|
+
client, instance._entity, "CopyToUser")
|
|
133
162
|
|
|
134
163
|
return instance
|
|
@@ -3,6 +3,7 @@ from typing import Self
|
|
|
3
3
|
|
|
4
4
|
import httpx
|
|
5
5
|
|
|
6
|
+
from pinexq_client.core import Link, MediaTypes
|
|
6
7
|
from pinexq_client.core.hco.action_hco import ActionHco
|
|
7
8
|
from pinexq_client.core.hco.action_with_parameters_hco import ActionWithParametersHco
|
|
8
9
|
from pinexq_client.core.hco.download_link_hco import DownloadLinkHco
|
|
@@ -12,6 +13,7 @@ from pinexq_client.core.hco.unavailable import UnavailableAction, UnavailableLin
|
|
|
12
13
|
from pinexq_client.job_management.hcos.processing_step_hco import ProcessingStepLink
|
|
13
14
|
from pinexq_client.job_management.hcos.job_hco import JobLink
|
|
14
15
|
from pinexq_client.job_management.known_relations import Relations
|
|
16
|
+
from pinexq_client.job_management.model import CopyWorkDataFromUserToOrgActionParameters
|
|
15
17
|
from pinexq_client.job_management.model.open_api_generated import (
|
|
16
18
|
SetNameWorkDataParameters,
|
|
17
19
|
SetCommentWorkDataParameters,
|
|
@@ -76,6 +78,23 @@ class WorkDataUnHideAction(ActionHco):
|
|
|
76
78
|
self._execute_internal()
|
|
77
79
|
|
|
78
80
|
|
|
81
|
+
class WorkDataCopyUserToOrgAction(ActionWithParametersHco[CopyWorkDataFromUserToOrgActionParameters]):
|
|
82
|
+
def execute(self, parameters: CopyWorkDataFromUserToOrgActionParameters) -> WorkDataLink:
|
|
83
|
+
url = self._execute_returns_url(parameters)
|
|
84
|
+
link = Link.from_url(url, [str(Relations.CREATED_RESSOURCE)], "Copied workdata", MediaTypes.SIREN)
|
|
85
|
+
return WorkDataLink.from_link(self._client, link)
|
|
86
|
+
|
|
87
|
+
def default_parameters(self) -> CopyWorkDataFromUserToOrgActionParameters:
|
|
88
|
+
return self._get_default_parameters(CopyWorkDataFromUserToOrgActionParameters, CopyWorkDataFromUserToOrgActionParameters())
|
|
89
|
+
|
|
90
|
+
|
|
91
|
+
class WorkDataCopyOrgToUserAction(ActionHco):
|
|
92
|
+
def execute(self) -> WorkDataLink:
|
|
93
|
+
url = self._execute_internal()
|
|
94
|
+
link = Link.from_url(url, [str(Relations.CREATED_RESSOURCE)], "Copied workdata", MediaTypes.SIREN)
|
|
95
|
+
return WorkDataLink.from_link(self._client, link)
|
|
96
|
+
|
|
97
|
+
|
|
79
98
|
class WorkDataHco(Hco[WorkDataEntity]):
|
|
80
99
|
name: str | None = Property()
|
|
81
100
|
created_at: datetime | None = Property()
|
|
@@ -95,6 +114,8 @@ class WorkDataHco(Hco[WorkDataEntity]):
|
|
|
95
114
|
rename_action: WorkDataRenameAction | UnavailableAction
|
|
96
115
|
edit_comment_action: WorkDataEditCommentAction | UnavailableAction
|
|
97
116
|
edit_tags_action: WorkDataEditTagsAction | UnavailableAction
|
|
117
|
+
copy_user_to_org_action: WorkDataCopyUserToOrgAction | UnavailableAction
|
|
118
|
+
copy_org_to_user_action: WorkDataCopyOrgToUserAction | UnavailableAction
|
|
98
119
|
|
|
99
120
|
self_link: WorkDataLink
|
|
100
121
|
download_link: DownloadLinkHco
|
|
@@ -123,6 +144,10 @@ class WorkDataHco(Hco[WorkDataEntity]):
|
|
|
123
144
|
client, instance._entity, "AllowDeletion")
|
|
124
145
|
instance.disallow_deletion_action = WorkDataDisallowAction.from_entity_optional(
|
|
125
146
|
client, instance._entity, "DisallowDeletion")
|
|
147
|
+
instance.copy_user_to_org_action = WorkDataCopyUserToOrgAction.from_entity_optional(
|
|
148
|
+
client, instance._entity, "CopyToOrg")
|
|
149
|
+
instance.copy_org_to_user_action = WorkDataCopyOrgToUserAction.from_entity_optional(
|
|
150
|
+
client, instance._entity, "CopyToUser")
|
|
126
151
|
|
|
127
152
|
# links
|
|
128
153
|
instance.self_link = WorkDataLink.from_entity(
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# generated by datamodel-codegen:
|
|
2
2
|
# filename: openapi.json
|
|
3
|
-
# timestamp: 2025-
|
|
3
|
+
# timestamp: 2025-08-15T14:47:13+00:00
|
|
4
4
|
|
|
5
5
|
from __future__ import annotations
|
|
6
6
|
|
|
@@ -43,6 +43,35 @@ class AdminWorkDataQueryResultHtoOpenApiProperties(BaseModel):
|
|
|
43
43
|
remaining_tags: List[str] | None = Field(None, alias='RemainingTags')
|
|
44
44
|
|
|
45
45
|
|
|
46
|
+
class CopyPsFromOrgToUserActionParameters(BaseModel):
|
|
47
|
+
model_config = ConfigDict(
|
|
48
|
+
extra='allow',
|
|
49
|
+
populate_by_name=True,
|
|
50
|
+
)
|
|
51
|
+
title: constr(min_length=1) = Field(..., alias='Title')
|
|
52
|
+
function_name: constr(min_length=1) = Field(..., alias='FunctionName')
|
|
53
|
+
version: constr(min_length=1) = Field(..., alias='Version')
|
|
54
|
+
|
|
55
|
+
|
|
56
|
+
class CopyPsFromUserToOrgActionParameters(BaseModel):
|
|
57
|
+
model_config = ConfigDict(
|
|
58
|
+
extra='allow',
|
|
59
|
+
populate_by_name=True,
|
|
60
|
+
)
|
|
61
|
+
org_id: constr(min_length=1) = Field(..., alias='OrgId')
|
|
62
|
+
title: constr(min_length=1) = Field(..., alias='Title')
|
|
63
|
+
function_name: constr(min_length=1) = Field(..., alias='FunctionName')
|
|
64
|
+
version: constr(min_length=1) = Field(..., alias='Version')
|
|
65
|
+
|
|
66
|
+
|
|
67
|
+
class CopyWorkDataFromUserToOrgActionParameters(BaseModel):
|
|
68
|
+
model_config = ConfigDict(
|
|
69
|
+
extra='allow',
|
|
70
|
+
populate_by_name=True,
|
|
71
|
+
)
|
|
72
|
+
org_id: constr(min_length=1) = Field(..., alias='OrgId')
|
|
73
|
+
|
|
74
|
+
|
|
46
75
|
class CreateJobParameters(BaseModel):
|
|
47
76
|
model_config = ConfigDict(
|
|
48
77
|
extra='allow',
|
|
@@ -132,6 +161,7 @@ class InfoHtoOpenApiProperties(BaseModel):
|
|
|
132
161
|
extra='allow',
|
|
133
162
|
populate_by_name=True,
|
|
134
163
|
)
|
|
164
|
+
organization_id: str | None = Field(None, alias='OrganizationId')
|
|
135
165
|
api_version: str | None = Field(None, alias='ApiVersion')
|
|
136
166
|
build_version: str | None = Field(None, alias='BuildVersion')
|
|
137
167
|
used_storage_in_bytes: int | None = Field(None, alias='UsedStorageInBytes')
|
|
@@ -252,6 +282,9 @@ class ProcessingStepHtoOpenApiProperties(BaseModel):
|
|
|
252
282
|
owner_id: str | None = Field(
|
|
253
283
|
None, alias='OwnerId', description='The owner of this resource'
|
|
254
284
|
)
|
|
285
|
+
created_by: str | None = Field(
|
|
286
|
+
None, alias='CreatedBy', description='The creator of this resource'
|
|
287
|
+
)
|
|
255
288
|
version: str | None = Field(
|
|
256
289
|
None, alias='Version', description='Version of the algorithm. Default = "0"'
|
|
257
290
|
)
|
|
@@ -444,7 +477,7 @@ class UserHtoOpenApiProperties(BaseModel):
|
|
|
444
477
|
populate_by_name=True,
|
|
445
478
|
)
|
|
446
479
|
user_id: str | None = Field(None, alias='UserId')
|
|
447
|
-
|
|
480
|
+
user_grants: List[str] | None = Field(None, alias='UserGrants')
|
|
448
481
|
|
|
449
482
|
|
|
450
483
|
class WorkDataKind(Enum):
|
|
@@ -682,6 +715,7 @@ class JobHtoOpenApiProperties(BaseModel):
|
|
|
682
715
|
owner_id: str | None = Field(
|
|
683
716
|
None, alias='OwnerId', description='The owner of this resource'
|
|
684
717
|
)
|
|
718
|
+
created_by: str | None = Field(None, alias='CreatedBy')
|
|
685
719
|
state: JobStates | None = Field(None, alias='State')
|
|
686
720
|
tags: List[str] | None = Field(None, alias='Tags')
|
|
687
721
|
hidden: bool | None = Field(None, alias='Hidden')
|
|
@@ -847,6 +881,9 @@ class WorkDataHtoOpenApiProperties(BaseModel):
|
|
|
847
881
|
owner_id: str | None = Field(
|
|
848
882
|
None, alias='OwnerId', description='The owner of this resource'
|
|
849
883
|
)
|
|
884
|
+
created_by: str | None = Field(
|
|
885
|
+
None, alias='CreatedBy', description='The creator of this resource'
|
|
886
|
+
)
|
|
850
887
|
name: str | None = Field(None, alias='Name')
|
|
851
888
|
created_at: AwareDatetime | None = Field(None, alias='CreatedAt')
|
|
852
889
|
size_in_bytes: int | None = Field(None, alias='SizeInBytes')
|
|
@@ -14,7 +14,8 @@ from pinexq_client.job_management.known_relations import Relations
|
|
|
14
14
|
from pinexq_client.job_management.model import (
|
|
15
15
|
CreateProcessingStepParameters,
|
|
16
16
|
SetProcessingStepTagsParameters, ProcessingStepQueryParameters, ProcessingStepFilterParameter,
|
|
17
|
-
FunctionNameMatchTypes, EditProcessingStepParameters,
|
|
17
|
+
FunctionNameMatchTypes, EditProcessingStepParameters, CopyPsFromUserToOrgActionParameters,
|
|
18
|
+
CopyPsFromOrgToUserActionParameters,
|
|
18
19
|
)
|
|
19
20
|
|
|
20
21
|
|
|
@@ -284,6 +285,48 @@ class ProcessingStep:
|
|
|
284
285
|
|
|
285
286
|
return self
|
|
286
287
|
|
|
288
|
+
def copy_from_org_to_user(self, *, title: str, function_name: str, version: str) -> ProcessingStepLink:
|
|
289
|
+
"""Copy ProcessingStep from organization to user.
|
|
290
|
+
|
|
291
|
+
Args:
|
|
292
|
+
title: New title for the copied ProcessingStep
|
|
293
|
+
function_name: New function for the copied ProcessingStep
|
|
294
|
+
version: New version for the copied ProcessingStep
|
|
295
|
+
|
|
296
|
+
Returns:
|
|
297
|
+
The URL of the copied ProcessingStep
|
|
298
|
+
"""
|
|
299
|
+
self._raise_if_no_hco()
|
|
300
|
+
return self.processing_step_hco.copy_from_org_to_user_action.execute(
|
|
301
|
+
CopyPsFromOrgToUserActionParameters(
|
|
302
|
+
title=title,
|
|
303
|
+
function_name=function_name,
|
|
304
|
+
version=version
|
|
305
|
+
)
|
|
306
|
+
)
|
|
307
|
+
|
|
308
|
+
def copy_from_user_to_org(self, *, title: str, function_name: str, version: str, org_id: str) -> ProcessingStepLink:
|
|
309
|
+
"""Copy ProcessingStep from user to organization.
|
|
310
|
+
|
|
311
|
+
Args:
|
|
312
|
+
org_id: The ID of the organization to copy the processing step to.
|
|
313
|
+
title: New title for the copied ProcessingStep
|
|
314
|
+
function_name: New function for the copied ProcessingStep
|
|
315
|
+
version: New version for the copied ProcessingStep
|
|
316
|
+
|
|
317
|
+
Returns:
|
|
318
|
+
The URL of the copied ProcessingStep
|
|
319
|
+
"""
|
|
320
|
+
self._raise_if_no_hco()
|
|
321
|
+
return self.processing_step_hco.copy_from_user_to_org_action.execute(
|
|
322
|
+
CopyPsFromUserToOrgActionParameters(
|
|
323
|
+
org_id=org_id,
|
|
324
|
+
title=title,
|
|
325
|
+
function_name=function_name,
|
|
326
|
+
version=version
|
|
327
|
+
)
|
|
328
|
+
)
|
|
329
|
+
|
|
287
330
|
def self_link(self) -> ProcessingStepLink:
|
|
288
331
|
self._raise_if_no_hco()
|
|
289
332
|
return self.processing_step_hco.self_link
|
|
@@ -10,7 +10,7 @@ from pinexq_client.job_management.enterjma import enter_jma
|
|
|
10
10
|
from pinexq_client.job_management.hcos import WorkDataLink, WorkDataRootHco, WorkDataHco
|
|
11
11
|
from pinexq_client.job_management.hcos.entrypoint_hco import EntryPointHco
|
|
12
12
|
from pinexq_client.job_management.known_relations import Relations
|
|
13
|
-
from pinexq_client.job_management.model import SetTagsWorkDataParameters
|
|
13
|
+
from pinexq_client.job_management.model import SetTagsWorkDataParameters, CopyWorkDataFromUserToOrgActionParameters
|
|
14
14
|
|
|
15
15
|
|
|
16
16
|
class WorkData:
|
|
@@ -160,6 +160,29 @@ class WorkData:
|
|
|
160
160
|
self._raise_if_no_hco()
|
|
161
161
|
return self.work_data_hco.download_link.download()
|
|
162
162
|
|
|
163
|
+
def copy_to_user(self) -> WorkDataLink:
|
|
164
|
+
"""Copy WorkData from organization to user.
|
|
165
|
+
|
|
166
|
+
Returns:
|
|
167
|
+
The URL of the copied WorkData
|
|
168
|
+
"""
|
|
169
|
+
self._raise_if_no_hco()
|
|
170
|
+
return self.work_data_hco.copy_org_to_user_action.execute()
|
|
171
|
+
|
|
172
|
+
def copy_to_org(self, org_id: str) -> WorkDataLink:
|
|
173
|
+
"""Copy WorkData from user to organization.
|
|
174
|
+
|
|
175
|
+
Args:
|
|
176
|
+
org_id: The ID of the organization to copy the WorkData to.
|
|
177
|
+
|
|
178
|
+
Returns:
|
|
179
|
+
The URL of the copied WorkData
|
|
180
|
+
"""
|
|
181
|
+
self._raise_if_no_hco()
|
|
182
|
+
return self.work_data_hco.copy_user_to_org_action.execute(
|
|
183
|
+
CopyWorkDataFromUserToOrgActionParameters(org_id=org_id)
|
|
184
|
+
)
|
|
185
|
+
|
|
163
186
|
def self_link(self) -> WorkDataLink:
|
|
164
187
|
self._raise_if_no_hco()
|
|
165
188
|
return self.work_data_hco.self_link
|
{pinexq_client-0.9.2.20250716.44.dist-info → pinexq_client-0.9.2.20250827.46.dist-info}/METADATA
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: pinexq-client
|
|
3
|
-
Version: 0.9.2.
|
|
3
|
+
Version: 0.9.2.20250827.46
|
|
4
4
|
Summary: A hypermedia-based client for the DataCybernetics PinexQ platform.
|
|
5
5
|
Author-Email: =?utf-8?q?Sebastian_H=C3=B6fer?= <hoefer@data-cybernetics.com>, Mathias Reichardt <reichardt@data-cybernetics.com>, Jasim Ahmed <ahmed@data-cybernetics.com>, Pratik Poudel <poudel@data-cybernetics.com>
|
|
6
6
|
Maintainer-Email: Mathias Reichardt <reichardt@data-cybernetics.com>, =?utf-8?q?Sebastian_H=C3=B6fer?= <hoefer@data-cybernetics.com>, Carsten Blank <blank@data-cybernetics.com>
|
{pinexq_client-0.9.2.20250716.44.dist-info → pinexq_client-0.9.2.20250827.46.dist-info}/RECORD
RENAMED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
pinexq_client-0.9.2.
|
|
2
|
-
pinexq_client-0.9.2.
|
|
3
|
-
pinexq_client-0.9.2.
|
|
4
|
-
pinexq_client-0.9.2.
|
|
1
|
+
pinexq_client-0.9.2.20250827.46.dist-info/METADATA,sha256=AK8cqML7oRBHl44AylqhKlqXpM0ZcazbW0sAkk4apPk,3279
|
|
2
|
+
pinexq_client-0.9.2.20250827.46.dist-info/WHEEL,sha256=9P2ygRxDrTJz3gsagc0Z96ukrxjr-LFBGOgv3AuKlCA,90
|
|
3
|
+
pinexq_client-0.9.2.20250827.46.dist-info/entry_points.txt,sha256=6OYgBcLyFCUgeqLgnvMyOJxPCWzgy7se4rLPKtNonMs,34
|
|
4
|
+
pinexq_client-0.9.2.20250827.46.dist-info/licenses/LICENSE,sha256=3oz3tAhM7kOgRukkRe7wmh5T_HihZY77ZtJDJm91ZN8,1072
|
|
5
5
|
pinexq_client/core/__init__.py,sha256=zO9vUuAl6AEokL-SqQO3Jl1qrxFBZPA2kH99VNZugEU,598
|
|
6
6
|
pinexq_client/core/base_relations.py,sha256=oIUS58pkbMDdqm-3YOdsenhL1smtzeAk4fp7-U595MY,162
|
|
7
7
|
pinexq_client/core/enterapi.py,sha256=eB4F2_t3lCbMgKhy-M-Sf_u9MhuJMO7OGh-GB-4Cc-8,731
|
|
@@ -21,33 +21,33 @@ pinexq_client/core/model/error.py,sha256=ZDbUlwsj7d8XPMolSSLTFwgs3RBLvOvgmlEtoBu
|
|
|
21
21
|
pinexq_client/core/model/sirenmodels.py,sha256=vGRQlhM2cSa2caxQel91Jr48KWqM-vMYX32iaQCzIds,5547
|
|
22
22
|
pinexq_client/core/polling.py,sha256=Z6VXn-PCGk4XX-4tQWZG59qJyCIS0eIrpPUORQDIGrs,1077
|
|
23
23
|
pinexq_client/core/sirenaccess.py,sha256=F7eZI5Pz79el0D30SYNGsiS2qWaAZF_jrCrUy-q2GgY,6992
|
|
24
|
-
pinexq_client/job_management/__init__.py,sha256=
|
|
24
|
+
pinexq_client/job_management/__init__.py,sha256=dR0UWg1B4N9i4UBUYBWEmbWqpgfQ0pfIlPYH1DIKqPE,598
|
|
25
25
|
pinexq_client/job_management/enterjma.py,sha256=Ivl_jVPw_gaLyU5nKbywM-bbVGpn0MoCrZ0DMbJYf3s,1411
|
|
26
26
|
pinexq_client/job_management/hcos/__init__.py,sha256=TZgs5kuBk3lSBxPfn5ehgbdUgzPy2jn1PC3Ea6VQY-k,584
|
|
27
27
|
pinexq_client/job_management/hcos/entrypoint_hco.py,sha256=qodjAwO_MtawUuhmaYjhGXHV-uW1k94V9gKRYZRkhn4,2234
|
|
28
|
-
pinexq_client/job_management/hcos/info_hco.py,sha256=
|
|
28
|
+
pinexq_client/job_management/hcos/info_hco.py,sha256=foAIojj0qzv5qXwW418CtYLFtdX78AwyzSljtkig1zU,1366
|
|
29
29
|
pinexq_client/job_management/hcos/input_dataslot_hco.py,sha256=SDflhyW8kjpcTUfKAXnJxNR-etPzAHfoTqlYUcJZrxs,3442
|
|
30
30
|
pinexq_client/job_management/hcos/job_hco.py,sha256=8Lq5RABq7XUp3Z6jhYegPgVPfm591-38eC8CCLes0KQ,8934
|
|
31
31
|
pinexq_client/job_management/hcos/job_query_result_hco.py,sha256=I0G8YIlYDhTahLz8n06L8BywlcsMGNWUEsmEr4Sk0GU,3315
|
|
32
32
|
pinexq_client/job_management/hcos/job_used_tags_hco.py,sha256=nys6E97NNXATdnvX6KZ46JR9qEb2lnqol9ZvJVEiNpQ,944
|
|
33
33
|
pinexq_client/job_management/hcos/jobsroot_hco.py,sha256=5h_CYb9FyjpmAlvDXuK_AimCvomadFTcCSQ6QmMD0QY,4726
|
|
34
34
|
pinexq_client/job_management/hcos/output_dataslot_hco.py,sha256=zxpo-fI9eHcp_pMKcf2l-gRoPHX1RzQO53auHMRB_T8,1549
|
|
35
|
-
pinexq_client/job_management/hcos/processing_step_hco.py,sha256=
|
|
35
|
+
pinexq_client/job_management/hcos/processing_step_hco.py,sha256=KCZd-dEQyFqpHH2Zu-rsGgngplI17FovZLEI-zS_00g,8114
|
|
36
36
|
pinexq_client/job_management/hcos/processing_step_used_tags_hco.py,sha256=90-2IWlYTcYX62NzmAPnmcUCwMDhmMZyBrNs_G3yigs,1067
|
|
37
37
|
pinexq_client/job_management/hcos/processingstep_query_result_hco.py,sha256=YcCgigKvOIggILixgaEbmnM23FlkjCgxnhZC2Eh98dY,3817
|
|
38
38
|
pinexq_client/job_management/hcos/processingsteproot_hco.py,sha256=gQBGMWEKX5kq_HwC7-eEjjfAm6oYTuIxGX5kKw_GKUM,3684
|
|
39
|
-
pinexq_client/job_management/hcos/user_hco.py,sha256=
|
|
40
|
-
pinexq_client/job_management/hcos/workdata_hco.py,sha256=
|
|
39
|
+
pinexq_client/job_management/hcos/user_hco.py,sha256=6GZrNeUZSZxwOiyCylkfl-pqDa1RL7Lc9Lg3vf0EuYc,1095
|
|
40
|
+
pinexq_client/job_management/hcos/workdata_hco.py,sha256=QI1m_IUWVBesCft9UR1svCRsWDz16moY7XMhWvfFGcE,7206
|
|
41
41
|
pinexq_client/job_management/hcos/workdata_query_result_hco.py,sha256=yxEnu_COMxP3mt553JZD13jjPyqSp3DJjgd8es5Nq_E,3520
|
|
42
42
|
pinexq_client/job_management/hcos/workdata_used_tags_query_result_hco.py,sha256=qB1iQpwD63579dq3tUF4DBB_rZRMqJ80y1ysf-41aOo,1087
|
|
43
43
|
pinexq_client/job_management/hcos/workdataroot_hco.py,sha256=LdEPW2JJTqAWi-6zj-40lfREhthcDL6nPXQk_nfMtCA,3936
|
|
44
44
|
pinexq_client/job_management/known_relations.py,sha256=f3-7RagAfeSFv9b54l5zxnLKbVQjQQHzYsM4W2QHf0Y,708
|
|
45
45
|
pinexq_client/job_management/model/__init__.py,sha256=iuAKRXdW_Mxo0i3HsBfEzhJJZUKkNe3qs4gLW-ge1PU,63
|
|
46
|
-
pinexq_client/job_management/model/open_api_generated.py,sha256=
|
|
46
|
+
pinexq_client/job_management/model/open_api_generated.py,sha256=UlLAn638ggAi4kIgapnfB_-Nqcu1x_Gq-lyk1aabHis,34544
|
|
47
47
|
pinexq_client/job_management/model/sirenentities.py,sha256=MUjgByEwzQcrduCEJuNK85uAj8SLTdyaiKmnlB44h3E,3430
|
|
48
48
|
pinexq_client/job_management/tool/__init__.py,sha256=zPobd-hQyANHzC0-TjJG91z9XrewvE54ZJ6VViymW5M,128
|
|
49
49
|
pinexq_client/job_management/tool/job.py,sha256=yVEVE3RRalQy8abA2G1X-a1Tj3v32YCsDeN52LDMSp8,30572
|
|
50
50
|
pinexq_client/job_management/tool/job_group.py,sha256=TNWw46UDyP2gmArhbzMAqpHa6lS2hzwarLIrxxpOMnk,4822
|
|
51
|
-
pinexq_client/job_management/tool/processing_step.py,sha256=
|
|
52
|
-
pinexq_client/job_management/tool/workdata.py,sha256=
|
|
53
|
-
pinexq_client-0.9.2.
|
|
51
|
+
pinexq_client/job_management/tool/processing_step.py,sha256=uzdmdcEQsged2rdWuLkjERoGCztKQHVc3UuGiX8vnpc,12481
|
|
52
|
+
pinexq_client/job_management/tool/workdata.py,sha256=E1Qt945tocXiSZuQo2IbTnlgW2VRnq2ODEFQ96lXTDI,6270
|
|
53
|
+
pinexq_client-0.9.2.20250827.46.dist-info/RECORD,,
|
{pinexq_client-0.9.2.20250716.44.dist-info → pinexq_client-0.9.2.20250827.46.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|