pinexq-client 0.9.2.20250417.36__py3-none-any.whl → 0.9.2.20250515.43__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/job_hco.py +1 -0
- pinexq_client/job_management/hcos/jobsroot_hco.py +14 -0
- pinexq_client/job_management/hcos/processing_step_hco.py +19 -0
- pinexq_client/job_management/model/open_api_generated.py +49 -16
- pinexq_client/job_management/tool/job.py +18 -1
- pinexq_client/job_management/tool/processing_step.py +20 -0
- {pinexq_client-0.9.2.20250417.36.dist-info → pinexq_client-0.9.2.20250515.43.dist-info}/METADATA +1 -1
- {pinexq_client-0.9.2.20250417.36.dist-info → pinexq_client-0.9.2.20250515.43.dist-info}/RECORD +12 -12
- {pinexq_client-0.9.2.20250417.36.dist-info → pinexq_client-0.9.2.20250515.43.dist-info}/WHEEL +0 -0
- {pinexq_client-0.9.2.20250417.36.dist-info → pinexq_client-0.9.2.20250515.43.dist-info}/entry_points.txt +0 -0
- {pinexq_client-0.9.2.20250417.36.dist-info → pinexq_client-0.9.2.20250515.43.dist-info}/licenses/LICENSE +0 -0
|
@@ -117,6 +117,7 @@ class JobHco(Hco[JobEntity]):
|
|
|
117
117
|
tags: list[str] | None = Property()
|
|
118
118
|
output_is_deletable: bool = Property()
|
|
119
119
|
created_at: datetime = Property()
|
|
120
|
+
started_at: datetime = Property()
|
|
120
121
|
completed_at: datetime = Property()
|
|
121
122
|
error_description: str = Property()
|
|
122
123
|
processing: ProcessingView = Property()
|
|
@@ -15,6 +15,7 @@ from pinexq_client.job_management.hcos.job_query_result_hco import (
|
|
|
15
15
|
)
|
|
16
16
|
from pinexq_client.job_management.hcos.job_used_tags_hco import JobUsedTagsLink
|
|
17
17
|
from pinexq_client.job_management.known_relations import Relations
|
|
18
|
+
from pinexq_client.job_management.model import RapidJobSetupParameters
|
|
18
19
|
from pinexq_client.job_management.model.open_api_generated import (
|
|
19
20
|
CreateJobParameters,
|
|
20
21
|
JobQueryParameters,
|
|
@@ -43,6 +44,16 @@ class CreateSubJobAction(ActionWithParametersHco[CreateSubJobParameters]):
|
|
|
43
44
|
return self._get_default_parameters(CreateSubJobParameters, CreateSubJobParameters())
|
|
44
45
|
|
|
45
46
|
|
|
47
|
+
class RapidJobSetupAction(ActionWithParametersHco[RapidJobSetupParameters]):
|
|
48
|
+
def execute(self, parameters: RapidJobSetupParameters) -> JobLink:
|
|
49
|
+
url: URL = self._execute_returns_url(parameters)
|
|
50
|
+
link = Link.from_url(url, [str(Relations.CREATED_RESSOURCE)], "Rapid job setup", MediaTypes.SIREN)
|
|
51
|
+
return JobLink.from_link(self._client, link)
|
|
52
|
+
|
|
53
|
+
def default_parameters(self) -> RapidJobSetupParameters:
|
|
54
|
+
return self._get_default_parameters(RapidJobSetupParameters, RapidJobSetupParameters())
|
|
55
|
+
|
|
56
|
+
|
|
46
57
|
class JobQueryAction(ActionWithParametersHco):
|
|
47
58
|
def execute(self, parameters: JobQueryParameters) -> JobQueryResultHco:
|
|
48
59
|
url = self._execute_returns_url(parameters)
|
|
@@ -56,6 +67,7 @@ class JobQueryAction(ActionWithParametersHco):
|
|
|
56
67
|
|
|
57
68
|
class JobsRootHco(Hco[JobsRootEntity]):
|
|
58
69
|
create_job_action: CreateJobAction | UnavailableAction
|
|
70
|
+
rapid_job_setup_action: RapidJobSetupAction | UnavailableAction
|
|
59
71
|
job_query_action: JobQueryAction | UnavailableAction
|
|
60
72
|
create_subjob_action: CreateSubJobAction | UnavailableAction
|
|
61
73
|
used_tags_link: JobUsedTagsLink | UnavailableLink
|
|
@@ -70,6 +82,8 @@ class JobsRootHco(Hco[JobsRootEntity]):
|
|
|
70
82
|
instance.create_job_action = CreateJobAction.from_entity_optional(client, instance._entity, "CreateJob")
|
|
71
83
|
instance.create_subjob_action = CreateSubJobAction.from_entity_optional(client, instance._entity,
|
|
72
84
|
"CreateSubJob")
|
|
85
|
+
instance.rapid_job_setup_action = RapidJobSetupAction.from_entity_optional(client, instance._entity,
|
|
86
|
+
"RapidSetupJob")
|
|
73
87
|
instance.job_query_action = JobQueryAction.from_entity_optional(client, instance._entity, "CreateJobQuery")
|
|
74
88
|
instance.used_tags_link = JobUsedTagsLink.from_entity_optional(
|
|
75
89
|
instance._client, instance._entity, Relations.USED_TAGS)
|
|
@@ -32,6 +32,16 @@ class ProcessingStepEditTagsAction(ActionWithParametersHco[SetProcessingStepTags
|
|
|
32
32
|
return self._get_default_parameters(SetProcessingStepTagsParameters, SetProcessingStepTagsParameters(tags=[]))
|
|
33
33
|
|
|
34
34
|
|
|
35
|
+
class ProcessingStepHideAction(ActionHco):
|
|
36
|
+
def execute(self):
|
|
37
|
+
self._execute_internal()
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
class ProcessingStepUnHideAction(ActionHco):
|
|
41
|
+
def execute(self):
|
|
42
|
+
self._execute_internal()
|
|
43
|
+
|
|
44
|
+
|
|
35
45
|
class ProcessingStepEditPropertiesAction(ActionWithParametersHco[EditProcessingStepParameters]):
|
|
36
46
|
def execute(self, parameters: EditProcessingStepParameters):
|
|
37
47
|
self._execute(parameters)
|
|
@@ -81,6 +91,8 @@ class ProcessingStepHco(Hco[ProcessingStepEntity]):
|
|
|
81
91
|
default_parameters: str | None = Property()
|
|
82
92
|
return_schema: str | None = Property()
|
|
83
93
|
error_schema: str | None = Property()
|
|
94
|
+
hidden: bool | None = Property()
|
|
95
|
+
|
|
84
96
|
input_data_slot_specification: List[DataSpecificationHto] | None = Property()
|
|
85
97
|
output_data_slot_specification: List[DataSpecificationHto] | None = Property()
|
|
86
98
|
edit_tags_action: ProcessingStepEditTagsAction | UnavailableAction
|
|
@@ -88,6 +100,8 @@ class ProcessingStepHco(Hco[ProcessingStepEntity]):
|
|
|
88
100
|
configure_default_parameters_action: ConfigureDefaultParametersAction | UnavailableAction
|
|
89
101
|
clear_default_parameters_action: ClearDefaultParametersAction | UnavailableAction
|
|
90
102
|
upload_configuration_action: UploadConfigurationAction | None
|
|
103
|
+
hide_action: ProcessingStepHideAction | UnavailableAction
|
|
104
|
+
unhide_action: ProcessingStepUnHideAction | UnavailableAction
|
|
91
105
|
|
|
92
106
|
self_link: ProcessingStepLink
|
|
93
107
|
download_link: DownloadLinkHco
|
|
@@ -112,4 +126,9 @@ class ProcessingStepHco(Hco[ProcessingStepEntity]):
|
|
|
112
126
|
client, instance._entity, "ClearDefaultParameters")
|
|
113
127
|
instance.upload_configuration_action = UploadConfigurationAction.from_entity_optional(
|
|
114
128
|
client, instance._entity, "Upload")
|
|
129
|
+
instance.hide_action = ProcessingStepHideAction.from_entity_optional(
|
|
130
|
+
client, instance._entity, "Hide")
|
|
131
|
+
instance.unhide_action = ProcessingStepUnHideAction.from_entity_optional(
|
|
132
|
+
client, instance._entity, "UnHide")
|
|
133
|
+
|
|
115
134
|
return instance
|
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
# generated by datamodel-codegen:
|
|
2
2
|
# filename: openapi.json
|
|
3
|
-
# timestamp: 2025-
|
|
3
|
+
# timestamp: 2025-05-14T12:10:18+00:00
|
|
4
4
|
|
|
5
5
|
from __future__ import annotations
|
|
6
6
|
|
|
7
|
-
from datetime import datetime
|
|
8
7
|
from enum import Enum
|
|
9
8
|
from typing import Any, List
|
|
10
9
|
|
|
11
|
-
from pydantic import BaseModel, ConfigDict, Field, constr
|
|
10
|
+
from pydantic import AwareDatetime, BaseModel, ConfigDict, Field, constr
|
|
12
11
|
|
|
13
12
|
|
|
14
13
|
class AdminJobQueryResultHtoOpenApiProperties(BaseModel):
|
|
@@ -138,6 +137,15 @@ class InfoHtoOpenApiProperties(BaseModel):
|
|
|
138
137
|
used_storage_in_bytes: int | None = Field(None, alias='UsedStorageInBytes')
|
|
139
138
|
|
|
140
139
|
|
|
140
|
+
class InputDataSlotParameter(BaseModel):
|
|
141
|
+
model_config = ConfigDict(
|
|
142
|
+
extra='allow',
|
|
143
|
+
populate_by_name=True,
|
|
144
|
+
)
|
|
145
|
+
index: int | None = Field(None, alias='Index')
|
|
146
|
+
work_data_urls: List[str] | None = Field(None, alias='WorkDataUrls')
|
|
147
|
+
|
|
148
|
+
|
|
141
149
|
class JobQueryResultHtoOpenApiProperties(BaseModel):
|
|
142
150
|
model_config = ConfigDict(
|
|
143
151
|
extra='allow',
|
|
@@ -231,6 +239,8 @@ class ProcessingStepFilterParameter(BaseModel):
|
|
|
231
239
|
tags_by_and: List[str] | None = Field(None, alias='TagsByAnd')
|
|
232
240
|
tags_by_or: List[str] | None = Field(None, alias='TagsByOr')
|
|
233
241
|
is_public: bool | None = Field(None, alias='IsPublic')
|
|
242
|
+
show_hidden: bool | None = Field(None, alias='ShowHidden')
|
|
243
|
+
is_configured: bool | None = Field(None, alias='IsConfigured')
|
|
234
244
|
|
|
235
245
|
|
|
236
246
|
class ProcessingStepHtoOpenApiProperties(BaseModel):
|
|
@@ -260,8 +270,9 @@ class ProcessingStepHtoOpenApiProperties(BaseModel):
|
|
|
260
270
|
is_public: bool | None = Field(None, alias='IsPublic')
|
|
261
271
|
tags: List[str] | None = Field(None, alias='Tags')
|
|
262
272
|
is_configured: bool | None = Field(None, alias='IsConfigured')
|
|
263
|
-
|
|
264
|
-
|
|
273
|
+
hidden: bool | None = Field(None, alias='Hidden')
|
|
274
|
+
created_at: AwareDatetime | None = Field(None, alias='CreatedAt')
|
|
275
|
+
last_modified_at: AwareDatetime | None = Field(None, alias='LastModifiedAt')
|
|
265
276
|
parameter_schema: str | None = Field(None, alias='ParameterSchema')
|
|
266
277
|
default_parameters: str | None = Field(None, alias='DefaultParameters')
|
|
267
278
|
return_schema: str | None = Field(None, alias='ReturnSchema')
|
|
@@ -322,6 +333,25 @@ class ProcessingView(BaseModel):
|
|
|
322
333
|
)
|
|
323
334
|
|
|
324
335
|
|
|
336
|
+
class RapidJobSetupParameters(BaseModel):
|
|
337
|
+
model_config = ConfigDict(
|
|
338
|
+
extra='allow',
|
|
339
|
+
populate_by_name=True,
|
|
340
|
+
)
|
|
341
|
+
name: constr(min_length=1) = Field(..., alias='Name')
|
|
342
|
+
processing_step_url: str | None = Field(None, alias='ProcessingStepUrl')
|
|
343
|
+
parent_job_url: str | None = Field(None, alias='ParentJobUrl')
|
|
344
|
+
tags: List[str] | None = Field(None, alias='Tags')
|
|
345
|
+
parameters: str | None = Field(None, alias='Parameters')
|
|
346
|
+
allow_output_data_deletion: bool | None = Field(
|
|
347
|
+
None, alias='AllowOutputDataDeletion'
|
|
348
|
+
)
|
|
349
|
+
input_data_slots: List[InputDataSlotParameter] | None = Field(
|
|
350
|
+
None, alias='InputDataSlots'
|
|
351
|
+
)
|
|
352
|
+
start: bool | None = Field(None, alias='Start')
|
|
353
|
+
|
|
354
|
+
|
|
325
355
|
class RenameJobParameters(BaseModel):
|
|
326
356
|
model_config = ConfigDict(
|
|
327
357
|
extra='allow',
|
|
@@ -500,8 +530,8 @@ class AdminJobFilterParameter(BaseModel):
|
|
|
500
530
|
state: JobStates | None = Field(None, alias='State')
|
|
501
531
|
show_hidden: bool | None = Field(None, alias='ShowHidden')
|
|
502
532
|
processing_step_url: str | None = Field(None, alias='ProcessingStepUrl')
|
|
503
|
-
created_before:
|
|
504
|
-
created_after:
|
|
533
|
+
created_before: AwareDatetime | None = Field(None, alias='CreatedBefore')
|
|
534
|
+
created_after: AwareDatetime | None = Field(None, alias='CreatedAfter')
|
|
505
535
|
tags_by_and: List[str] | None = Field(None, alias='TagsByAnd')
|
|
506
536
|
tags_by_or: List[str] | None = Field(None, alias='TagsByOr')
|
|
507
537
|
parent_job_url: str | None = Field(None, alias='ParentJobUrl')
|
|
@@ -537,6 +567,8 @@ class AdminProcessingStepFilterParameter(BaseModel):
|
|
|
537
567
|
tags_by_and: List[str] | None = Field(None, alias='TagsByAnd')
|
|
538
568
|
tags_by_or: List[str] | None = Field(None, alias='TagsByOr')
|
|
539
569
|
is_public: bool | None = Field(None, alias='IsPublic')
|
|
570
|
+
show_hidden: bool | None = Field(None, alias='ShowHidden')
|
|
571
|
+
is_configured: bool | None = Field(None, alias='IsConfigured')
|
|
540
572
|
|
|
541
573
|
|
|
542
574
|
class AdminProcessingStepQueryResultHtoOpenApi(BaseModel):
|
|
@@ -567,8 +599,8 @@ class AdminWorkDataFilterParameter(BaseModel):
|
|
|
567
599
|
tags_by_and: List[str] | None = Field(None, alias='TagsByAnd')
|
|
568
600
|
tags_by_or: List[str] | None = Field(None, alias='TagsByOr')
|
|
569
601
|
is_kind: WorkDataKind | None = Field(None, alias='IsKind')
|
|
570
|
-
created_before:
|
|
571
|
-
created_after:
|
|
602
|
+
created_before: AwareDatetime | None = Field(None, alias='CreatedBefore')
|
|
603
|
+
created_after: AwareDatetime | None = Field(None, alias='CreatedAfter')
|
|
572
604
|
is_deletable: bool | None = Field(None, alias='IsDeletable')
|
|
573
605
|
is_used: bool | None = Field(None, alias='IsUsed')
|
|
574
606
|
|
|
@@ -632,8 +664,8 @@ class JobFilterParameter(BaseModel):
|
|
|
632
664
|
name: str | None = Field(None, alias='Name')
|
|
633
665
|
show_hidden: bool | None = Field(None, alias='ShowHidden')
|
|
634
666
|
work_data_url: str | None = Field(None, alias='WorkDataUrl')
|
|
635
|
-
created_before:
|
|
636
|
-
created_after:
|
|
667
|
+
created_before: AwareDatetime | None = Field(None, alias='CreatedBefore')
|
|
668
|
+
created_after: AwareDatetime | None = Field(None, alias='CreatedAfter')
|
|
637
669
|
tags_by_and: List[str] | None = Field(None, alias='TagsByAnd')
|
|
638
670
|
tags_by_or: List[str] | None = Field(None, alias='TagsByOr')
|
|
639
671
|
processing_step_url: str | None = Field(None, alias='ProcessingStepUrl')
|
|
@@ -654,8 +686,9 @@ class JobHtoOpenApiProperties(BaseModel):
|
|
|
654
686
|
tags: List[str] | None = Field(None, alias='Tags')
|
|
655
687
|
hidden: bool | None = Field(None, alias='Hidden')
|
|
656
688
|
output_is_deletable: bool | None = Field(None, alias='OutputIsDeletable')
|
|
657
|
-
created_at:
|
|
658
|
-
|
|
689
|
+
created_at: AwareDatetime | None = Field(None, alias='CreatedAt')
|
|
690
|
+
started_at: AwareDatetime | None = Field(None, alias='StartedAt')
|
|
691
|
+
completed_at: AwareDatetime | None = Field(None, alias='CompletedAt')
|
|
659
692
|
error_description: str | None = Field(None, alias='ErrorDescription')
|
|
660
693
|
processing: ProcessingView | None = Field(None, alias='Processing')
|
|
661
694
|
result: str | None = Field(None, alias='Result')
|
|
@@ -800,8 +833,8 @@ class WorkDataFilterParameter(BaseModel):
|
|
|
800
833
|
tags_by_and: List[str] | None = Field(None, alias='TagsByAnd')
|
|
801
834
|
tags_by_or: List[str] | None = Field(None, alias='TagsByOr')
|
|
802
835
|
is_kind: WorkDataKind | None = Field(None, alias='IsKind')
|
|
803
|
-
created_before:
|
|
804
|
-
created_after:
|
|
836
|
+
created_before: AwareDatetime | None = Field(None, alias='CreatedBefore')
|
|
837
|
+
created_after: AwareDatetime | None = Field(None, alias='CreatedAfter')
|
|
805
838
|
is_deletable: bool | None = Field(None, alias='IsDeletable')
|
|
806
839
|
is_used: bool | None = Field(None, alias='IsUsed')
|
|
807
840
|
|
|
@@ -815,7 +848,7 @@ class WorkDataHtoOpenApiProperties(BaseModel):
|
|
|
815
848
|
None, alias='OwnerId', description='The owner of this resource'
|
|
816
849
|
)
|
|
817
850
|
name: str | None = Field(None, alias='Name')
|
|
818
|
-
created_at:
|
|
851
|
+
created_at: AwareDatetime | None = Field(None, alias='CreatedAt')
|
|
819
852
|
size_in_bytes: int | None = Field(None, alias='SizeInBytes')
|
|
820
853
|
tags: List[str] | None = Field(None, alias='Tags')
|
|
821
854
|
media_type: str | None = Field(None, alias='MediaType')
|
|
@@ -35,7 +35,7 @@ from pinexq_client.job_management.model import (
|
|
|
35
35
|
SelectProcessingParameters,
|
|
36
36
|
SelectWorkDataCollectionForDataSlotParameters,
|
|
37
37
|
SelectWorkDataForDataSlotParameters,
|
|
38
|
-
SetJobTagsParameters,
|
|
38
|
+
SetJobTagsParameters, RapidJobSetupParameters,
|
|
39
39
|
)
|
|
40
40
|
from pinexq_client.job_management.tool.processing_step import ProcessingStep
|
|
41
41
|
from pinexq_client.job_management.tool.workdata import WorkData
|
|
@@ -661,6 +661,23 @@ class Job:
|
|
|
661
661
|
self._raise_if_no_hco()
|
|
662
662
|
return self.job_hco.processing
|
|
663
663
|
|
|
664
|
+
def create_and_configure_rapidly(
|
|
665
|
+
self,
|
|
666
|
+
parameters: RapidJobSetupParameters
|
|
667
|
+
) -> Self:
|
|
668
|
+
"""
|
|
669
|
+
Creates a new job and configures it rapidly with RapidJobSetupParameters.
|
|
670
|
+
|
|
671
|
+
Args:
|
|
672
|
+
parameters: The parameters to configure the job with.
|
|
673
|
+
|
|
674
|
+
Returns:
|
|
675
|
+
The newly created job as `Job` object
|
|
676
|
+
"""
|
|
677
|
+
job_link = self._jobs_root.rapid_job_setup_action.execute(parameters)
|
|
678
|
+
self._get_by_link(job_link)
|
|
679
|
+
return self
|
|
680
|
+
|
|
664
681
|
def self_link(self) -> JobLink:
|
|
665
682
|
self._raise_if_no_hco()
|
|
666
683
|
return self.job_hco.self_link
|
|
@@ -246,6 +246,26 @@ class ProcessingStep:
|
|
|
246
246
|
|
|
247
247
|
return self
|
|
248
248
|
|
|
249
|
+
def hide(self) -> Self:
|
|
250
|
+
"""Hide ProcessingStep.
|
|
251
|
+
|
|
252
|
+
Returns:
|
|
253
|
+
This `ProcessingStep` object"""
|
|
254
|
+
self._raise_if_no_hco()
|
|
255
|
+
self.processing_step_hco.hide_action.execute()
|
|
256
|
+
self.refresh()
|
|
257
|
+
return self
|
|
258
|
+
|
|
259
|
+
def unhide(self) -> Self:
|
|
260
|
+
"""Hide ProcessingStep.
|
|
261
|
+
|
|
262
|
+
Returns:
|
|
263
|
+
This `ProcessingStep` object"""
|
|
264
|
+
self._raise_if_no_hco()
|
|
265
|
+
self.processing_step_hco.unhide_action.execute()
|
|
266
|
+
self.refresh()
|
|
267
|
+
return self
|
|
268
|
+
|
|
249
269
|
def upload_configuration(self, json_data: Any) -> Self:
|
|
250
270
|
"""Upload processing configuration.
|
|
251
271
|
|
{pinexq_client-0.9.2.20250417.36.dist-info → pinexq_client-0.9.2.20250515.43.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.20250515.43
|
|
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.20250417.36.dist-info → pinexq_client-0.9.2.20250515.43.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.20250515.43.dist-info/METADATA,sha256=0WwpBhk9GA6PUPIi3nDnyX9fvaaRIb9nloEjn2OVsBk,3279
|
|
2
|
+
pinexq_client-0.9.2.20250515.43.dist-info/WHEEL,sha256=tSfRZzRHthuv7vxpI4aehrdN9scLjk-dCJkPLzkHxGg,90
|
|
3
|
+
pinexq_client-0.9.2.20250515.43.dist-info/entry_points.txt,sha256=6OYgBcLyFCUgeqLgnvMyOJxPCWzgy7se4rLPKtNonMs,34
|
|
4
|
+
pinexq_client-0.9.2.20250515.43.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,18 +21,18 @@ 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=jaOkYyOSur8EMcz4fgEFlENQFwagHKjLwlR67E9FIhs,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
28
|
pinexq_client/job_management/hcos/info_hco.py,sha256=zWjR63SCEO_sUcZ9ha_aIoC_qUzAWLf50Xu4AHddAn8,1328
|
|
29
29
|
pinexq_client/job_management/hcos/input_dataslot_hco.py,sha256=SDflhyW8kjpcTUfKAXnJxNR-etPzAHfoTqlYUcJZrxs,3442
|
|
30
|
-
pinexq_client/job_management/hcos/job_hco.py,sha256=
|
|
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
|
-
pinexq_client/job_management/hcos/jobsroot_hco.py,sha256=
|
|
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=JH9s3ifchYvpwzPGkDon9AyDnjdZZiSCu1Xtgd2jKnY,6131
|
|
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
|
|
@@ -43,11 +43,11 @@ pinexq_client/job_management/hcos/workdata_used_tags_query_result_hco.py,sha256=
|
|
|
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=s-XtnhuK5YmBhbOqKsy09iRKrQMtZL6-N2be-g5d8QU,33211
|
|
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
|
-
pinexq_client/job_management/tool/job.py,sha256=
|
|
49
|
+
pinexq_client/job_management/tool/job.py,sha256=p9WDfJiIcQMZyLfNajpxK9kSd0DqF2H9hoS7lvDIFC0,25496
|
|
50
50
|
pinexq_client/job_management/tool/job_group.py,sha256=TNWw46UDyP2gmArhbzMAqpHa6lS2hzwarLIrxxpOMnk,4822
|
|
51
|
-
pinexq_client/job_management/tool/processing_step.py,sha256=
|
|
51
|
+
pinexq_client/job_management/tool/processing_step.py,sha256=LLesEbS7vaAiCoGs7MV8bnaD8bWnkK-2YTxAsyPiJFM,10796
|
|
52
52
|
pinexq_client/job_management/tool/workdata.py,sha256=wRy_yfFZUJDh-hoGUuAbQaRGtPysDmEOhLwD84Fgz04,5510
|
|
53
|
-
pinexq_client-0.9.2.
|
|
53
|
+
pinexq_client-0.9.2.20250515.43.dist-info/RECORD,,
|
{pinexq_client-0.9.2.20250417.36.dist-info → pinexq_client-0.9.2.20250515.43.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|