pinexq-client 0.2.0.2024.607.8__py3-none-any.whl → 0.3.0.2024.610.1__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.
Files changed (50) hide show
  1. {hypermedia_client → pinexq_client}/core/enterapi.py +2 -2
  2. {hypermedia_client → pinexq_client}/core/hco/action_hco.py +2 -2
  3. {hypermedia_client → pinexq_client}/core/hco/action_with_parameters_hco.py +2 -2
  4. {hypermedia_client → pinexq_client}/core/hco/download_link_hco.py +2 -2
  5. {hypermedia_client → pinexq_client}/core/hco/hco_base.py +1 -1
  6. {hypermedia_client → pinexq_client}/core/hco/link_hco.py +2 -2
  7. {hypermedia_client → pinexq_client}/core/hco/upload_action_hco.py +2 -2
  8. {hypermedia_client → pinexq_client}/job_management/enterjma.py +7 -7
  9. {hypermedia_client → pinexq_client}/job_management/hcos/entrypoint_hco.py +8 -8
  10. {hypermedia_client → pinexq_client}/job_management/hcos/info_hco.py +5 -5
  11. {hypermedia_client → pinexq_client}/job_management/hcos/input_dataslot_hco.py +10 -10
  12. {hypermedia_client → pinexq_client}/job_management/hcos/job_hco.py +10 -10
  13. {hypermedia_client → pinexq_client}/job_management/hcos/job_query_result_hco.py +5 -5
  14. {hypermedia_client → pinexq_client}/job_management/hcos/job_used_tags_hco.py +4 -4
  15. {hypermedia_client → pinexq_client}/job_management/hcos/jobsroot_hco.py +10 -10
  16. {hypermedia_client → pinexq_client}/job_management/hcos/output_dataslot_hco.py +5 -5
  17. {hypermedia_client → pinexq_client}/job_management/hcos/processing_step_hco.py +7 -7
  18. {hypermedia_client → pinexq_client}/job_management/hcos/processing_step_used_tags_hco.py +4 -4
  19. {hypermedia_client → pinexq_client}/job_management/hcos/processingstep_query_result_hco.py +5 -5
  20. {hypermedia_client → pinexq_client}/job_management/hcos/processingsteproot_hco.py +10 -10
  21. {hypermedia_client → pinexq_client}/job_management/hcos/user_hco.py +4 -4
  22. {hypermedia_client → pinexq_client}/job_management/hcos/workdata_hco.py +8 -8
  23. {hypermedia_client → pinexq_client}/job_management/hcos/workdata_query_result_hco.py +5 -5
  24. {hypermedia_client → pinexq_client}/job_management/hcos/workdata_used_tags_query_result_hco.py +4 -4
  25. {hypermedia_client → pinexq_client}/job_management/hcos/workdataroot_hco.py +11 -11
  26. {hypermedia_client → pinexq_client}/job_management/model/sirenentities.py +2 -2
  27. {hypermedia_client → pinexq_client}/job_management/tool/job.py +11 -11
  28. {pinexq_client-0.2.0.2024.607.8.dist-info → pinexq_client-0.3.0.2024.610.1.dist-info}/METADATA +13 -14
  29. pinexq_client-0.3.0.2024.610.1.dist-info/RECORD +49 -0
  30. pinexq_client-0.2.0.2024.607.8.dist-info/RECORD +0 -49
  31. {hypermedia_client → pinexq_client}/core/__init__.py +0 -0
  32. {hypermedia_client → pinexq_client}/core/base_relations.py +0 -0
  33. {hypermedia_client → pinexq_client}/core/exceptions.py +0 -0
  34. {hypermedia_client → pinexq_client}/core/hco/__init__.py +0 -0
  35. {hypermedia_client → pinexq_client}/core/http_headers.py +0 -0
  36. {hypermedia_client → pinexq_client}/core/media_types.py +0 -0
  37. {hypermedia_client → pinexq_client}/core/model/__init__.py +0 -0
  38. {hypermedia_client → pinexq_client}/core/model/error.py +0 -0
  39. {hypermedia_client → pinexq_client}/core/model/sirenmodels.py +0 -0
  40. {hypermedia_client → pinexq_client}/core/polling.py +0 -0
  41. {hypermedia_client → pinexq_client}/core/sirenaccess.py +0 -0
  42. {hypermedia_client → pinexq_client}/job_management/__init__.py +0 -0
  43. {hypermedia_client → pinexq_client}/job_management/hcos/__init__.py +0 -0
  44. {hypermedia_client → pinexq_client}/job_management/ideas.md +0 -0
  45. {hypermedia_client → pinexq_client}/job_management/known_relations.py +0 -0
  46. {hypermedia_client → pinexq_client}/job_management/model/__init__.py +0 -0
  47. {hypermedia_client → pinexq_client}/job_management/model/open_api_generated.py +0 -0
  48. {hypermedia_client → pinexq_client}/job_management/tool/__init__.py +0 -0
  49. {pinexq_client-0.2.0.2024.607.8.dist-info → pinexq_client-0.3.0.2024.610.1.dist-info}/WHEEL +0 -0
  50. {pinexq_client-0.2.0.2024.607.8.dist-info → pinexq_client-0.3.0.2024.610.1.dist-info}/licenses/LICENSE +0 -0
@@ -2,8 +2,8 @@ from typing import TypeVar, Type
2
2
 
3
3
  import httpx
4
4
 
5
- from hypermedia_client.core import Entity
6
- from hypermedia_client.core.hco.hco_base import Hco
5
+ from pinexq_client.core import Entity
6
+ from pinexq_client.core.hco.hco_base import Hco
7
7
 
8
8
  THco = TypeVar('THco', bound=Hco)
9
9
 
@@ -4,8 +4,8 @@ import httpx
4
4
  from httpx import Response
5
5
  from httpx import URL
6
6
 
7
- from hypermedia_client.core import SirenException, Entity, Action, ProblemDetails, execute_action
8
- from hypermedia_client.core.hco.hco_base import ClientContainer
7
+ from pinexq_client.core import SirenException, Entity, Action, ProblemDetails, execute_action
8
+ from pinexq_client.core.hco.hco_base import ClientContainer
9
9
 
10
10
  TEntity = TypeVar('TEntity', bound=Entity)
11
11
  THcoEntity = TypeVar('THcoEntity', bound=Entity)
@@ -5,8 +5,8 @@ from httpx import Response
5
5
  from httpx import URL
6
6
  from pydantic import BaseModel
7
7
 
8
- from hypermedia_client.core import SirenException, Entity, Action, ProblemDetails, execute_action
9
- from hypermedia_client.core.hco.hco_base import ClientContainer
8
+ from pinexq_client.core import SirenException, Entity, Action, ProblemDetails, execute_action
9
+ from pinexq_client.core.hco.hco_base import ClientContainer
10
10
 
11
11
  TParameters = TypeVar('TParameters', bound=BaseModel)
12
12
 
@@ -4,8 +4,8 @@ from typing import Self
4
4
  import httpx
5
5
  from httpx import Response
6
6
 
7
- from hypermedia_client.core import Link, Entity, get_resource, SirenException
8
- from hypermedia_client.core.hco.link_hco import LinkHco
7
+ from pinexq_client.core import Link, Entity, get_resource, SirenException
8
+ from pinexq_client.core.hco.link_hco import LinkHco
9
9
 
10
10
 
11
11
  class DownloadLinkHco(LinkHco):
@@ -4,7 +4,7 @@ from typing import List, TypeVar, Generic, Callable, Any
4
4
  import httpx
5
5
  from httpx import URL
6
6
 
7
- from hypermedia_client.core import SirenException, Entity, BaseRelations, Link
7
+ from pinexq_client.core import SirenException, Entity, BaseRelations, Link
8
8
 
9
9
  TEntity = TypeVar('TEntity', bound=Entity)
10
10
  THcoEntity = TypeVar('THcoEntity', bound=Entity)
@@ -3,8 +3,8 @@ from typing import Self, Type
3
3
  import httpx
4
4
  from httpx import URL
5
5
 
6
- from hypermedia_client.core import Link, SirenException, Entity, navigate, ensure_siren_response
7
- from hypermedia_client.core.hco.hco_base import ClientContainer, TEntity
6
+ from pinexq_client.core import Link, SirenException, Entity, navigate, ensure_siren_response
7
+ from pinexq_client.core.hco.hco_base import ClientContainer, TEntity
8
8
 
9
9
 
10
10
  class LinkHco(ClientContainer):
@@ -5,9 +5,9 @@ import httpx
5
5
  from httpx import URL
6
6
  from pydantic import BaseModel, ConfigDict, Field, model_validator
7
7
 
8
- from hypermedia_client.core import upload_file, upload_binary, upload_json, SirenException, MediaTypes, Action, Entity, \
8
+ from pinexq_client.core import upload_file, upload_binary, upload_json, SirenException, MediaTypes, Action, Entity, \
9
9
  SirenClasses
10
- from hypermedia_client.core.hco.action_with_parameters_hco import ActionWithParametersHco
10
+ from pinexq_client.core.hco.action_with_parameters_hco import ActionWithParametersHco
11
11
 
12
12
 
13
13
  class UploadParameters(BaseModel):
@@ -4,12 +4,12 @@ import httpx
4
4
 
5
5
  import logging
6
6
 
7
- from hypermedia_client.core import Entity
8
- from hypermedia_client.core.enterapi import enter_api
9
- from hypermedia_client.core.hco.hco_base import Hco
10
- from hypermedia_client.job_management.hcos.entrypoint_hco import EntryPointHco
11
- from hypermedia_client.job_management.model.sirenentities import EntryPointEntity
12
- import hypermedia_client.job_management
7
+ from pinexq_client.core import Entity
8
+ from pinexq_client.core.enterapi import enter_api
9
+ from pinexq_client.core.hco.hco_base import Hco
10
+ from pinexq_client.job_management.hcos.entrypoint_hco import EntryPointHco
11
+ from pinexq_client.job_management.model.sirenentities import EntryPointEntity
12
+ import pinexq_client.job_management
13
13
 
14
14
  LOG = logging.getLogger(__name__)
15
15
 
@@ -31,7 +31,7 @@ def enter_jma(
31
31
  info = entry_point_hco.info_link.navigate()
32
32
 
33
33
  # Check for matching protocol versions
34
- client_version = hypermedia_client.job_management.__jma_version__
34
+ client_version = pinexq_client.job_management.__jma_version__
35
35
  jma_version = [int(i) for i in str.split(info.api_version, '.')]
36
36
  if not _version_match_major_minor(jma_version, client_version):
37
37
  LOG.warning(
@@ -3,14 +3,14 @@ from typing import Self
3
3
 
4
4
  import httpx
5
5
 
6
- from hypermedia_client.core.hco.hco_base import Hco
7
- from hypermedia_client.core.hco.link_hco import LinkHco
8
- from hypermedia_client.job_management.hcos.info_hco import InfoLink
9
- from hypermedia_client.job_management.hcos.jobsroot_hco import JobsRootLink
10
- from hypermedia_client.job_management.hcos.processingsteproot_hco import ProcessingStepsRootLink
11
- from hypermedia_client.job_management.hcos.workdataroot_hco import WorkDataRootLink
12
- from hypermedia_client.job_management.known_relations import Relations
13
- from hypermedia_client.job_management.model.sirenentities import EntryPointEntity
6
+ from pinexq_client.core.hco.hco_base import Hco
7
+ from pinexq_client.core.hco.link_hco import LinkHco
8
+ from pinexq_client.job_management.hcos.info_hco import InfoLink
9
+ from pinexq_client.job_management.hcos.jobsroot_hco import JobsRootLink
10
+ from pinexq_client.job_management.hcos.processingsteproot_hco import ProcessingStepsRootLink
11
+ from pinexq_client.job_management.hcos.workdataroot_hco import WorkDataRootLink
12
+ from pinexq_client.job_management.known_relations import Relations
13
+ from pinexq_client.job_management.model.sirenentities import EntryPointEntity
14
14
 
15
15
 
16
16
  class EntryPointLink(LinkHco):
@@ -2,11 +2,11 @@ from typing import Self
2
2
 
3
3
  import httpx
4
4
 
5
- from hypermedia_client.core.hco.hco_base import Hco, Property
6
- from hypermedia_client.core.hco.link_hco import LinkHco
7
- from hypermedia_client.job_management.hcos.user_hco import UserHco
8
- from hypermedia_client.job_management.known_relations import Relations
9
- from hypermedia_client.job_management.model.sirenentities import InfoEntity, UserEntity
5
+ from pinexq_client.core.hco.hco_base import Hco, Property
6
+ from pinexq_client.core.hco.link_hco import LinkHco
7
+ from pinexq_client.job_management.hcos.user_hco import UserHco
8
+ from pinexq_client.job_management.known_relations import Relations
9
+ from pinexq_client.job_management.model.sirenentities import InfoEntity, UserEntity
10
10
 
11
11
 
12
12
  class InfoLink(LinkHco):
@@ -2,17 +2,17 @@ from typing import Self
2
2
 
3
3
  import httpx
4
4
 
5
- from hypermedia_client.core import Link, MediaTypes
6
- from hypermedia_client.core.hco.action_hco import ActionHco
7
- from hypermedia_client.core.hco.action_with_parameters_hco import ActionWithParametersHco
8
- from hypermedia_client.core.hco.hco_base import Hco, Property
9
- from hypermedia_client.core.hco.link_hco import LinkHco
10
- from hypermedia_client.core.hco.upload_action_hco import UploadAction, UploadParameters
11
- from hypermedia_client.job_management.hcos.workdata_hco import WorkDataLink, WorkDataHco
12
- from hypermedia_client.job_management.known_relations import Relations
13
- from hypermedia_client.job_management.model.open_api_generated import SelectWorkDataForDataSlotParameters, \
5
+ from pinexq_client.core import Link, MediaTypes
6
+ from pinexq_client.core.hco.action_hco import ActionHco
7
+ from pinexq_client.core.hco.action_with_parameters_hco import ActionWithParametersHco
8
+ from pinexq_client.core.hco.hco_base import Hco, Property
9
+ from pinexq_client.core.hco.link_hco import LinkHco
10
+ from pinexq_client.core.hco.upload_action_hco import UploadAction, UploadParameters
11
+ from pinexq_client.job_management.hcos.workdata_hco import WorkDataLink, WorkDataHco
12
+ from pinexq_client.job_management.known_relations import Relations
13
+ from pinexq_client.job_management.model.open_api_generated import SelectWorkDataForDataSlotParameters, \
14
14
  SelectWorkDataCollectionForDataSlotParameters
15
- from hypermedia_client.job_management.model.sirenentities import InputDataSlotEntity, WorkDataEntity
15
+ from pinexq_client.job_management.model.sirenentities import InputDataSlotEntity, WorkDataEntity
16
16
 
17
17
 
18
18
  class InputDataSlotLink(LinkHco):
@@ -4,17 +4,17 @@ from typing import Self, List
4
4
  import httpx
5
5
  from pydantic import BaseModel, ConfigDict
6
6
 
7
- from hypermedia_client.core.hco.action_hco import ActionHco
8
- from hypermedia_client.core.hco.action_with_parameters_hco import ActionWithParametersHco
9
- from hypermedia_client.core.hco.hco_base import Hco, Property
10
- from hypermedia_client.core.hco.link_hco import LinkHco
11
- from hypermedia_client.job_management.hcos import InputDataSlotHco
12
- from hypermedia_client.job_management.hcos.output_dataslot_hco import OutputDataSlotHco
13
- from hypermedia_client.job_management.hcos.processing_step_hco import ProcessingStepLink
14
- from hypermedia_client.job_management.known_relations import Relations
15
- from hypermedia_client.job_management.model.open_api_generated import JobStates, ProcessingView, RenameJobParameters, \
7
+ from pinexq_client.core.hco.action_hco import ActionHco
8
+ from pinexq_client.core.hco.action_with_parameters_hco import ActionWithParametersHco
9
+ from pinexq_client.core.hco.hco_base import Hco, Property
10
+ from pinexq_client.core.hco.link_hco import LinkHco
11
+ from pinexq_client.job_management.hcos import InputDataSlotHco
12
+ from pinexq_client.job_management.hcos.output_dataslot_hco import OutputDataSlotHco
13
+ from pinexq_client.job_management.hcos.processing_step_hco import ProcessingStepLink
14
+ from pinexq_client.job_management.known_relations import Relations
15
+ from pinexq_client.job_management.model.open_api_generated import JobStates, ProcessingView, RenameJobParameters, \
16
16
  SelectProcessingParameters, SetJobTagsParameters
17
- from hypermedia_client.job_management.model.sirenentities import JobEntity, InputDataSlotEntity, OutputDataSlotEntity
17
+ from pinexq_client.job_management.model.sirenentities import JobEntity, InputDataSlotEntity, OutputDataSlotEntity
18
18
 
19
19
 
20
20
  class JobRenameAction(ActionWithParametersHco[RenameJobParameters]):
@@ -2,11 +2,11 @@ from typing import List
2
2
 
3
3
  import httpx
4
4
 
5
- from hypermedia_client.core.hco.hco_base import Hco, Property
6
- from hypermedia_client.core.hco.link_hco import LinkHco
7
- from hypermedia_client.job_management.hcos.job_hco import JobHco
8
- from hypermedia_client.job_management.known_relations import Relations
9
- from hypermedia_client.job_management.model.sirenentities import JobQueryResultEntity, JobEntity
5
+ from pinexq_client.core.hco.hco_base import Hco, Property
6
+ from pinexq_client.core.hco.link_hco import LinkHco
7
+ from pinexq_client.job_management.hcos.job_hco import JobHco
8
+ from pinexq_client.job_management.known_relations import Relations
9
+ from pinexq_client.job_management.model.sirenentities import JobQueryResultEntity, JobEntity
10
10
 
11
11
 
12
12
  class JobQueryResultPaginationLink(LinkHco):
@@ -2,10 +2,10 @@ from typing import List, Self
2
2
 
3
3
  import httpx
4
4
 
5
- from hypermedia_client.core.hco.hco_base import Hco, Property
6
- from hypermedia_client.core.hco.link_hco import LinkHco
7
- from hypermedia_client.job_management.known_relations import Relations
8
- from hypermedia_client.job_management.model.sirenentities import JobUsedTagsEntity
5
+ from pinexq_client.core.hco.hco_base import Hco, Property
6
+ from pinexq_client.core.hco.link_hco import LinkHco
7
+ from pinexq_client.job_management.known_relations import Relations
8
+ from pinexq_client.job_management.model.sirenentities import JobUsedTagsEntity
9
9
 
10
10
 
11
11
  class JobUsedTagsHco(Hco[JobUsedTagsEntity]):
@@ -3,23 +3,23 @@ from typing import Self
3
3
  import httpx
4
4
  from httpx import URL
5
5
 
6
- from hypermedia_client.core import MediaTypes, Link
7
- from hypermedia_client.core.hco.action_with_parameters_hco import ActionWithParametersHco
8
- from hypermedia_client.core.hco.hco_base import Hco
9
- from hypermedia_client.core.hco.link_hco import LinkHco
10
- from hypermedia_client.job_management.hcos.job_hco import JobLink
11
- from hypermedia_client.job_management.hcos.job_query_result_hco import (
6
+ from pinexq_client.core import MediaTypes, Link
7
+ from pinexq_client.core.hco.action_with_parameters_hco import ActionWithParametersHco
8
+ from pinexq_client.core.hco.hco_base import Hco
9
+ from pinexq_client.core.hco.link_hco import LinkHco
10
+ from pinexq_client.job_management.hcos.job_hco import JobLink
11
+ from pinexq_client.job_management.hcos.job_query_result_hco import (
12
12
  JobQueryResultHco,
13
13
  JobQueryResultLink
14
14
  )
15
- from hypermedia_client.job_management.hcos.job_used_tags_hco import JobUsedTagsLink
16
- from hypermedia_client.job_management.known_relations import Relations
17
- from hypermedia_client.job_management.model.open_api_generated import (
15
+ from pinexq_client.job_management.hcos.job_used_tags_hco import JobUsedTagsLink
16
+ from pinexq_client.job_management.known_relations import Relations
17
+ from pinexq_client.job_management.model.open_api_generated import (
18
18
  CreateJobParameters,
19
19
  JobQueryParameters,
20
20
  CreateSubJobParameters
21
21
  )
22
- from hypermedia_client.job_management.model.sirenentities import JobsRootEntity
22
+ from pinexq_client.job_management.model.sirenentities import JobsRootEntity
23
23
 
24
24
 
25
25
  class CreateJobAction(ActionWithParametersHco[CreateJobParameters]):
@@ -2,11 +2,11 @@ from typing import Self
2
2
 
3
3
  import httpx
4
4
 
5
- from hypermedia_client.core.hco.hco_base import Hco, Property
6
- from hypermedia_client.core.hco.link_hco import LinkHco
7
- from hypermedia_client.job_management.hcos.workdata_hco import WorkDataHco
8
- from hypermedia_client.job_management.known_relations import Relations
9
- from hypermedia_client.job_management.model.sirenentities import (
5
+ from pinexq_client.core.hco.hco_base import Hco, Property
6
+ from pinexq_client.core.hco.link_hco import LinkHco
7
+ from pinexq_client.job_management.hcos.workdata_hco import WorkDataHco
8
+ from pinexq_client.job_management.known_relations import Relations
9
+ from pinexq_client.job_management.model.sirenentities import (
10
10
  OutputDataSlotEntity,
11
11
  WorkDataEntity
12
12
  )
@@ -3,14 +3,14 @@ from typing import List, Self
3
3
 
4
4
  import httpx
5
5
 
6
- from hypermedia_client.core.hco.action_with_parameters_hco import ActionWithParametersHco
7
- from hypermedia_client.core.hco.download_link_hco import DownloadLinkHco
8
- from hypermedia_client.core.hco.hco_base import Hco, Property
9
- from hypermedia_client.core.hco.link_hco import LinkHco
10
- from hypermedia_client.job_management.known_relations import Relations
11
- from hypermedia_client.job_management.model.open_api_generated import DataSpecificationHto, \
6
+ from pinexq_client.core.hco.action_with_parameters_hco import ActionWithParametersHco
7
+ from pinexq_client.core.hco.download_link_hco import DownloadLinkHco
8
+ from pinexq_client.core.hco.hco_base import Hco, Property
9
+ from pinexq_client.core.hco.link_hco import LinkHco
10
+ from pinexq_client.job_management.known_relations import Relations
11
+ from pinexq_client.job_management.model.open_api_generated import DataSpecificationHto, \
12
12
  SetProcessingStepTagsParameters
13
- from hypermedia_client.job_management.model.sirenentities import ProcessingStepEntity
13
+ from pinexq_client.job_management.model.sirenentities import ProcessingStepEntity
14
14
 
15
15
 
16
16
  class ProcessingStepLink(LinkHco):
@@ -2,10 +2,10 @@ from typing import List, Self
2
2
 
3
3
  import httpx
4
4
 
5
- from hypermedia_client.core.hco.hco_base import Hco, Property
6
- from hypermedia_client.core.hco.link_hco import LinkHco
7
- from hypermedia_client.job_management.known_relations import Relations
8
- from hypermedia_client.job_management.model.sirenentities import ProcessingStepUsedTagsEntity
5
+ from pinexq_client.core.hco.hco_base import Hco, Property
6
+ from pinexq_client.core.hco.link_hco import LinkHco
7
+ from pinexq_client.job_management.known_relations import Relations
8
+ from pinexq_client.job_management.model.sirenentities import ProcessingStepUsedTagsEntity
9
9
 
10
10
 
11
11
  class ProcessingStepUsedTagsHco(Hco[{ProcessingStepUsedTagsEntity}]):
@@ -2,11 +2,11 @@ from typing import Self
2
2
 
3
3
  import httpx
4
4
 
5
- from hypermedia_client.core.hco.hco_base import Hco, Property
6
- from hypermedia_client.core.hco.link_hco import LinkHco
7
- from hypermedia_client.job_management.hcos.processing_step_hco import ProcessingStepHco
8
- from hypermedia_client.job_management.known_relations import Relations
9
- from hypermedia_client.job_management.model.sirenentities import (
5
+ from pinexq_client.core.hco.hco_base import Hco, Property
6
+ from pinexq_client.core.hco.link_hco import LinkHco
7
+ from pinexq_client.job_management.hcos.processing_step_hco import ProcessingStepHco
8
+ from pinexq_client.job_management.known_relations import Relations
9
+ from pinexq_client.job_management.model.sirenentities import (
10
10
  ProcessingStepQueryResultEntity,
11
11
  ProcessingStepEntity
12
12
  )
@@ -2,20 +2,20 @@ from typing import Self
2
2
 
3
3
  import httpx
4
4
 
5
- from hypermedia_client.core import MediaTypes, Link
6
- from hypermedia_client.core.hco.action_with_parameters_hco import ActionWithParametersHco
7
- from hypermedia_client.core.hco.hco_base import Hco
8
- from hypermedia_client.core.hco.link_hco import LinkHco
9
- from hypermedia_client.job_management.hcos.processing_step_hco import ProcessingStepLink, ProcessingStepHco
10
- from hypermedia_client.job_management.hcos.processing_step_used_tags_hco import ProcessingStepUsedTagsLink
11
- from hypermedia_client.job_management.hcos.processingstep_query_result_hco import (
5
+ from pinexq_client.core import MediaTypes, Link
6
+ from pinexq_client.core.hco.action_with_parameters_hco import ActionWithParametersHco
7
+ from pinexq_client.core.hco.hco_base import Hco
8
+ from pinexq_client.core.hco.link_hco import LinkHco
9
+ from pinexq_client.job_management.hcos.processing_step_hco import ProcessingStepLink, ProcessingStepHco
10
+ from pinexq_client.job_management.hcos.processing_step_used_tags_hco import ProcessingStepUsedTagsLink
11
+ from pinexq_client.job_management.hcos.processingstep_query_result_hco import (
12
12
  ProcessingStepQueryResultHco,
13
13
  ProcessingStepQueryResultLink,
14
14
  ProcessingStepQueryResultPaginationLink
15
15
  )
16
- from hypermedia_client.job_management.known_relations import Relations
17
- from hypermedia_client.job_management.model import ProcessingStepQueryParameters, CreateProcessingStepParameters
18
- from hypermedia_client.job_management.model.sirenentities import ProcessingStepsRootEntity
16
+ from pinexq_client.job_management.known_relations import Relations
17
+ from pinexq_client.job_management.model import ProcessingStepQueryParameters, CreateProcessingStepParameters
18
+ from pinexq_client.job_management.model.sirenentities import ProcessingStepsRootEntity
19
19
 
20
20
 
21
21
  class ProcessingStepQueryAction(ActionWithParametersHco[ProcessingStepQueryParameters]):
@@ -3,10 +3,10 @@ from uuid import UUID
3
3
 
4
4
  import httpx
5
5
 
6
- from hypermedia_client.core.hco.hco_base import Hco, Property
7
- from hypermedia_client.core.hco.link_hco import LinkHco
8
- from hypermedia_client.job_management.known_relations import Relations
9
- from hypermedia_client.job_management.model.sirenentities import UserEntity
6
+ from pinexq_client.core.hco.hco_base import Hco, Property
7
+ from pinexq_client.core.hco.link_hco import LinkHco
8
+ from pinexq_client.job_management.known_relations import Relations
9
+ from pinexq_client.job_management.model.sirenentities import UserEntity
10
10
 
11
11
 
12
12
  class UserLink(LinkHco):
@@ -3,19 +3,19 @@ from typing import Self
3
3
 
4
4
  import httpx
5
5
 
6
- from hypermedia_client.core.hco.action_hco import ActionHco
7
- from hypermedia_client.core.hco.action_with_parameters_hco import ActionWithParametersHco
8
- from hypermedia_client.core.hco.download_link_hco import DownloadLinkHco
9
- from hypermedia_client.core.hco.hco_base import Hco, Property
10
- from hypermedia_client.core.hco.link_hco import LinkHco
11
- from hypermedia_client.job_management.known_relations import Relations
12
- from hypermedia_client.job_management.model.open_api_generated import (
6
+ from pinexq_client.core.hco.action_hco import ActionHco
7
+ from pinexq_client.core.hco.action_with_parameters_hco import ActionWithParametersHco
8
+ from pinexq_client.core.hco.download_link_hco import DownloadLinkHco
9
+ from pinexq_client.core.hco.hco_base import Hco, Property
10
+ from pinexq_client.core.hco.link_hco import LinkHco
11
+ from pinexq_client.job_management.known_relations import Relations
12
+ from pinexq_client.job_management.model.open_api_generated import (
13
13
  SetNameWorkDataParameters,
14
14
  SetCommentWorkDataParameters,
15
15
  SetTagsWorkDataParameters,
16
16
  WorkDataKind
17
17
  )
18
- from hypermedia_client.job_management.model.sirenentities import WorkDataEntity
18
+ from pinexq_client.job_management.model.sirenentities import WorkDataEntity
19
19
 
20
20
 
21
21
  class WorkDataLink(LinkHco):
@@ -2,11 +2,11 @@ from typing import Self
2
2
 
3
3
  import httpx
4
4
 
5
- from hypermedia_client.job_management.known_relations import Relations
6
- from hypermedia_client.core.hco.hco_base import Hco, Property
7
- from hypermedia_client.core.hco.link_hco import LinkHco
8
- from hypermedia_client.job_management.hcos.workdata_hco import WorkDataHco
9
- from hypermedia_client.job_management.model.sirenentities import WorkDataQueryResultEntity, WorkDataEntity
5
+ from pinexq_client.job_management.known_relations import Relations
6
+ from pinexq_client.core.hco.hco_base import Hco, Property
7
+ from pinexq_client.core.hco.link_hco import LinkHco
8
+ from pinexq_client.job_management.hcos.workdata_hco import WorkDataHco
9
+ from pinexq_client.job_management.model.sirenentities import WorkDataQueryResultEntity, WorkDataEntity
10
10
 
11
11
 
12
12
  class WorkDataQueryResultPaginationLink(LinkHco):
@@ -2,10 +2,10 @@ from typing import List, Self
2
2
 
3
3
  import httpx
4
4
 
5
- from hypermedia_client.core.hco.hco_base import Hco, Property
6
- from hypermedia_client.core.hco.link_hco import LinkHco
7
- from hypermedia_client.job_management.known_relations import Relations
8
- from hypermedia_client.job_management.model.sirenentities import WorkDataUsedTagsQueryResultEntity
5
+ from pinexq_client.core.hco.hco_base import Hco, Property
6
+ from pinexq_client.core.hco.link_hco import LinkHco
7
+ from pinexq_client.job_management.known_relations import Relations
8
+ from pinexq_client.job_management.model.sirenentities import WorkDataUsedTagsQueryResultEntity
9
9
 
10
10
 
11
11
  class WorkDataUsedTagsQueryResultHto(Hco[WorkDataUsedTagsQueryResultEntity]):
@@ -2,21 +2,21 @@ from typing import Self
2
2
 
3
3
  import httpx
4
4
 
5
- from hypermedia_client.core import MediaTypes, Link
6
- from hypermedia_client.core.hco.action_with_parameters_hco import ActionWithParametersHco
7
- from hypermedia_client.core.hco.hco_base import Hco
8
- from hypermedia_client.core.hco.link_hco import LinkHco
9
- from hypermedia_client.core.hco.upload_action_hco import UploadAction, UploadParameters
10
- from hypermedia_client.job_management.hcos.workdata_used_tags_query_result_hco import WorkDataUsedTagsLink
11
- from hypermedia_client.job_management.hcos.workdata_hco import WorkDataLink
12
- from hypermedia_client.job_management.hcos.workdata_query_result_hco import (
5
+ from pinexq_client.core import MediaTypes, Link
6
+ from pinexq_client.core.hco.action_with_parameters_hco import ActionWithParametersHco
7
+ from pinexq_client.core.hco.hco_base import Hco
8
+ from pinexq_client.core.hco.link_hco import LinkHco
9
+ from pinexq_client.core.hco.upload_action_hco import UploadAction, UploadParameters
10
+ from pinexq_client.job_management.hcos.workdata_used_tags_query_result_hco import WorkDataUsedTagsLink
11
+ from pinexq_client.job_management.hcos.workdata_hco import WorkDataLink
12
+ from pinexq_client.job_management.hcos.workdata_query_result_hco import (
13
13
  WorkDataQueryResultHco,
14
14
  WorkDataQueryResultLink,
15
15
  WorkDataQueryResultPaginationLink
16
16
  )
17
- from hypermedia_client.job_management.known_relations import Relations
18
- from hypermedia_client.job_management.model import WorkDataQueryParameters, WorkDataUsedTagsFilterParameter
19
- from hypermedia_client.job_management.model.sirenentities import WorkDataRootEntity
17
+ from pinexq_client.job_management.known_relations import Relations
18
+ from pinexq_client.job_management.model import WorkDataQueryParameters, WorkDataUsedTagsFilterParameter
19
+ from pinexq_client.job_management.model.sirenentities import WorkDataRootEntity
20
20
 
21
21
 
22
22
  class WorkDataQueryAction(ActionWithParametersHco[WorkDataQueryParameters]):
@@ -1,7 +1,7 @@
1
1
  from pydantic import BaseModel, ConfigDict, Field
2
2
 
3
- from hypermedia_client.core import Entity
4
- from hypermedia_client.job_management.model.open_api_generated import (
3
+ from pinexq_client.core import Entity
4
+ from pinexq_client.job_management.model.open_api_generated import (
5
5
  InfoHtoOpenApiProperties,
6
6
  EntryPointHtoOpenApiProperties,
7
7
  JobsRootHtoOpenApiProperties,
@@ -4,23 +4,23 @@ from typing import Any, Self
4
4
  import httpx
5
5
  from httpx import URL
6
6
 
7
- from hypermedia_client.core import Link, MediaTypes
8
- from hypermedia_client.core.polling import wait_until, PollingException
9
- from hypermedia_client.job_management.enterjma import enter_jma
10
- from hypermedia_client.job_management.hcos import WorkDataLink
11
- from hypermedia_client.job_management.hcos.entrypoint_hco import EntryPointHco
12
- from hypermedia_client.job_management.hcos.job_hco import (
7
+ from pinexq_client.core import Link, MediaTypes
8
+ from pinexq_client.core.polling import wait_until, PollingException
9
+ from pinexq_client.job_management.enterjma import enter_jma
10
+ from pinexq_client.job_management.hcos import WorkDataLink
11
+ from pinexq_client.job_management.hcos.entrypoint_hco import EntryPointHco
12
+ from pinexq_client.job_management.hcos.job_hco import (
13
13
  JobHco,
14
14
  GenericProcessingConfigureParameters,
15
15
  JobLink,
16
16
  )
17
- from hypermedia_client.job_management.hcos.job_query_result_hco import JobQueryResultHco
18
- from hypermedia_client.job_management.hcos.jobsroot_hco import JobsRootHco
19
- from hypermedia_client.job_management.hcos.processingsteproot_hco import (
17
+ from pinexq_client.job_management.hcos.job_query_result_hco import JobQueryResultHco
18
+ from pinexq_client.job_management.hcos.jobsroot_hco import JobsRootHco
19
+ from pinexq_client.job_management.hcos.processingsteproot_hco import (
20
20
  ProcessingStepsRootHco,
21
21
  )
22
- from hypermedia_client.job_management.known_relations import Relations
23
- from hypermedia_client.job_management.model import (
22
+ from pinexq_client.job_management.known_relations import Relations
23
+ from pinexq_client.job_management.model import (
24
24
  CreateJobParameters,
25
25
  ProcessingStepQueryParameters,
26
26
  ProcessingStepFilterParameter,
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pinexq-client
3
- Version: 0.2.0.2024.607.8
3
+ Version: 0.3.0.2024.610.1
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>
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>
@@ -41,12 +41,11 @@ To initialize the client parts must be supplied:
41
41
  ```python
42
42
  from httpx import Client
43
43
 
44
- from hypermedia_client.job_management.enterjma import enter_jma
45
- from hypermedia_client.job_management.hcos.entrypoint_hco import EntryPointHco
46
-
44
+ from pinexq_client.job_management.enterjma import enter_jma
45
+ from pinexq_client.job_management.hcos.entrypoint_hco import EntryPointHco
47
46
 
48
47
  client = Client(
49
- base_url="https://myapihost.com:80",
48
+ base_url="https://myapihost.com:80",
50
49
  headers={'x-api-key': '<SECRET_PAT>'}
51
50
  )
52
51
 
@@ -57,16 +56,15 @@ entrypoint: EntryPointHco = enter_jma(client)
57
56
 
58
57
  ## Using the API
59
58
 
60
- There is a convenience layer wrapping job-management-specific objects in interface classes for ease of use.
61
- In the spirit of a hypermedia API you can also use low level calls to navigate the API.
62
59
 
63
60
  ### Job-Management Interface
64
61
 
65
- The main concepts of the job-management-API (e.g. "Jobs") are wrapped in
62
+ There is a convenience layer wrapping job-management-specific objects in interface classes for ease of use.
66
63
 
67
64
  ```python
68
- from hypermedia_client.job_management.tool import Job
69
- from hypermedia_client.job_management.model import JobStates
65
+ from pinexq_client.job_management.tool import Job
66
+ from pinexq_client.job_management.model import JobStates
67
+
70
68
  job = (
71
69
  Job(client)
72
70
  .create(name="JobName")
@@ -80,12 +78,13 @@ result = job.get_result()
80
78
 
81
79
  ### Raw Hypermedia API
82
80
 
83
- You can navigate and use the full API with raw hypermedia primitives, e.g. when features are not yet exposed in the convenience wrapper.
81
+ In the spirit of a hypermedia API you can also use low level calls to navigate the API,
82
+ e.g. when features are not yet exposed in the convenience wrapper.
84
83
 
85
84
  ```python
86
- from hypermedia_client.job_management.enterjma import enter_jma
87
- from hypermedia_client.job_management.hcos.entrypoint_hco import EntryPointHco
88
- from hypermedia_client.job_management.model import CreateJobParameters, SetJobTagsParameters
85
+ from pinexq_client.job_management.enterjma import enter_jma
86
+ from pinexq_client.job_management.hcos.entrypoint_hco import EntryPointHco
87
+ from pinexq_client.job_management.model import CreateJobParameters, SetJobTagsParameters
89
88
 
90
89
  entrypoint: EntryPointHco = enter_jma(client)
91
90
  # Get to jobs root
@@ -0,0 +1,49 @@
1
+ pinexq_client-0.3.0.2024.610.1.dist-info/METADATA,sha256=R8Xubl7bI3affz5x9-yW0us04uR3Rg3WLnVRTnmDNEw,3191
2
+ pinexq_client-0.3.0.2024.610.1.dist-info/WHEEL,sha256=vnE8JVcI2Wz7GRKorsPArnBdnW2SWKWGow5gu5tHlRU,90
3
+ pinexq_client-0.3.0.2024.610.1.dist-info/licenses/LICENSE,sha256=3oz3tAhM7kOgRukkRe7wmh5T_HihZY77ZtJDJm91ZN8,1072
4
+ pinexq_client/core/__init__.py,sha256=8SVD_PRgJtpUCOtVjdR6fRrv6KPNk7HD6UQrn0FKR04,235
5
+ pinexq_client/core/base_relations.py,sha256=oIUS58pkbMDdqm-3YOdsenhL1smtzeAk4fp7-U595MY,162
6
+ pinexq_client/core/enterapi.py,sha256=FutPNPBEaoCgb_uTi19z-AQjQGBxfISkTFI7e6wkOdQ,611
7
+ pinexq_client/core/exceptions.py,sha256=tlU10s02oH4mfXPQqlgN5uLTjRZ7JOYhksXBcmgTscg,42
8
+ pinexq_client/core/hco/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
9
+ pinexq_client/core/hco/action_hco.py,sha256=LuGpjRIjqGYNmX54apiUsa6GY3gnt7MaLPpVHXq71mQ,2276
10
+ pinexq_client/core/hco/action_with_parameters_hco.py,sha256=rQXHefD2-kkSonje2wpzq2iaCJHeWFpBAQMpIg8SHuE,3211
11
+ pinexq_client/core/hco/download_link_hco.py,sha256=ByaN1mrT4QyRNGCD_QiV_kGdKY8LgI-lEQLEXwZ41Eo,1356
12
+ pinexq_client/core/hco/hco_base.py,sha256=RlACLZ_yxfoXTno7Wufos1e0-6wS3Bor9HmObP1rKo0,3366
13
+ pinexq_client/core/hco/link_hco.py,sha256=3a1iH0fKO4ayUwRpFZ0OMFkjeeZqXbQVCdinM0YXnYw,1907
14
+ pinexq_client/core/hco/upload_action_hco.py,sha256=jHG9ROfxWhlffof7QUQWsmOsWEuJxmYmA3nt1QSVcS0,4565
15
+ pinexq_client/core/http_headers.py,sha256=tY4h3DKVDMkjw9DLFn57HdEnwR1NAixMF8Yjgy3gjQY,183
16
+ pinexq_client/core/media_types.py,sha256=qU-Jd92H5HKczWDk51EstFHadO6A_QJL4lLXHRlfgjQ,600
17
+ pinexq_client/core/model/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
18
+ pinexq_client/core/model/error.py,sha256=U-9U1TRc77UNIQe_rvnwzNkTjrUEem3pKMx2c9rMr-k,215
19
+ pinexq_client/core/model/sirenmodels.py,sha256=vGRQlhM2cSa2caxQel91Jr48KWqM-vMYX32iaQCzIds,5547
20
+ pinexq_client/core/polling.py,sha256=Z6VXn-PCGk4XX-4tQWZG59qJyCIS0eIrpPUORQDIGrs,1077
21
+ pinexq_client/core/sirenaccess.py,sha256=5p8twdB0FYMhhBNPH3-xDX20jWR4-b2h8F3BDoyc7C8,6978
22
+ pinexq_client/job_management/__init__.py,sha256=o21xGlNYwHrYtKMX9rDj1L6Gs6f82KYl9W3R9_g3_ec,138
23
+ pinexq_client/job_management/enterjma.py,sha256=VxKe5eFTRfF4bJvyF6OLgn6uoslCAyPAdGqmYnIv2So,1447
24
+ pinexq_client/job_management/hcos/__init__.py,sha256=vMIdxGHBsVcKYKrVkCzD4a_VaheKSNxCimospFn5N88,396
25
+ pinexq_client/job_management/hcos/entrypoint_hco.py,sha256=i4n8R4h1ZGinwuCH2Rj7dwzOkqOd1hQKS3SXmHk1-9A,2316
26
+ pinexq_client/job_management/hcos/info_hco.py,sha256=zWjR63SCEO_sUcZ9ha_aIoC_qUzAWLf50Xu4AHddAn8,1328
27
+ pinexq_client/job_management/hcos/input_dataslot_hco.py,sha256=pxHuymus8J7Syd7Xp25hkmI4ReRQd5HhkJ1fk5K_rf4,3626
28
+ pinexq_client/job_management/hcos/job_hco.py,sha256=-qn37B2MVYerOua9Ji1zee7pma6nSuFr3aWjfRSHUmc,7385
29
+ pinexq_client/job_management/hcos/job_query_result_hco.py,sha256=dTlSES8Nl6FqY6_sFMdG5JpxTaLBuQwaIOdP-Qhu4lc,2994
30
+ pinexq_client/job_management/hcos/job_used_tags_hco.py,sha256=nys6E97NNXATdnvX6KZ46JR9qEb2lnqol9ZvJVEiNpQ,944
31
+ pinexq_client/job_management/hcos/jobsroot_hco.py,sha256=3UPhMyHb9zZO7AQbsCrY_0aimd__VQL54C4vzxgrq0o,3640
32
+ pinexq_client/job_management/hcos/output_dataslot_hco.py,sha256=clnGqgqF4EoNHOOFa3R9YAMqHoX57b2chQEIFOPjxWU,1544
33
+ pinexq_client/job_management/hcos/processing_step_hco.py,sha256=WTKVhG6RsKhLLC0ErvOxf5Q6XzoMGF1oUpAi8mKLu5Y,3027
34
+ pinexq_client/job_management/hcos/processing_step_used_tags_hco.py,sha256=90-2IWlYTcYX62NzmAPnmcUCwMDhmMZyBrNs_G3yigs,1067
35
+ pinexq_client/job_management/hcos/processingstep_query_result_hco.py,sha256=6I1vWylw_nrjiLE00x1tdRaTjze6Hft0AJBUiLtobvo,3248
36
+ pinexq_client/job_management/hcos/processingsteproot_hco.py,sha256=xdgVt__1js7NQZJjmvZuisgZkAynN0Dgw9pBnpPhTcs,3758
37
+ pinexq_client/job_management/hcos/user_hco.py,sha256=z6USe-4nYzBfOoEx3n9_UbgomMTimg4EIa_XeVBj01A,1095
38
+ pinexq_client/job_management/hcos/workdata_hco.py,sha256=jJ0gemgmJ9uHzOTUCA7eBtGbQViCoSmaT3p-2ZIWF30,4934
39
+ pinexq_client/job_management/hcos/workdata_query_result_hco.py,sha256=2AfRmbCzedNtaPKqAvyEv2BRtX-e22NPfe7fmXluK-g,2928
40
+ pinexq_client/job_management/hcos/workdata_used_tags_query_result_hco.py,sha256=qB1iQpwD63579dq3tUF4DBB_rZRMqJ80y1ysf-41aOo,1087
41
+ pinexq_client/job_management/hcos/workdataroot_hco.py,sha256=isivaMxYV8KwTgFe2W5PuhJ_CJUmZO_Pz_yakwKUup8,4043
42
+ pinexq_client/job_management/ideas.md,sha256=dA2qGLbgh561iLqDn792XhfxHPHdVJ__GpFxcEMTghY,431
43
+ pinexq_client/job_management/known_relations.py,sha256=UlOF-sua8SyOPNNKzT_j6JVG8T-aewHIzn7S2ajXBhI,593
44
+ pinexq_client/job_management/model/__init__.py,sha256=ApHhNfjx4bPuz10sQnyBA2zajYbU7loDTZSKC5H_jBY,34
45
+ pinexq_client/job_management/model/open_api_generated.py,sha256=3NdFG6J24JPnKSf03SZyLarkjfJ7AFAL0HsCkpV06os,28965
46
+ pinexq_client/job_management/model/sirenentities.py,sha256=OInvxHpC6mnnYQjOMM2xAw7uLtvWwj9E2EQSRJe2jDo,3202
47
+ pinexq_client/job_management/tool/__init__.py,sha256=W_PQvoWNHAhfgSHSC3opcsRUWtWBGACDtRgipZYHA0o,21
48
+ pinexq_client/job_management/tool/job.py,sha256=Q1aieDKACIfROEAVzuZE_JESUDpvFw7DXPXO42zcRsU,14600
49
+ pinexq_client-0.3.0.2024.610.1.dist-info/RECORD,,
@@ -1,49 +0,0 @@
1
- hypermedia_client/core/__init__.py,sha256=8SVD_PRgJtpUCOtVjdR6fRrv6KPNk7HD6UQrn0FKR04,235
2
- hypermedia_client/core/base_relations.py,sha256=oIUS58pkbMDdqm-3YOdsenhL1smtzeAk4fp7-U595MY,162
3
- hypermedia_client/core/enterapi.py,sha256=llpLgFYE4TPy_DiYylfcODJ6J0pKkeNe4hcH8rPmcBs,619
4
- hypermedia_client/core/exceptions.py,sha256=tlU10s02oH4mfXPQqlgN5uLTjRZ7JOYhksXBcmgTscg,42
5
- hypermedia_client/core/hco/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
6
- hypermedia_client/core/hco/action_hco.py,sha256=iVlSzqWGqw2e-LejQdwN8kzoyHv7eFE9WIoFpcyqFx8,2284
7
- hypermedia_client/core/hco/action_with_parameters_hco.py,sha256=695Af7ci0Qnh17XD_bf5hebdxMnf6GzB4KAJ_nGCJok,3219
8
- hypermedia_client/core/hco/download_link_hco.py,sha256=t6Fv46l03F9KCWo0FfXwJdW62W5ilQwuuqI93Y5lA7c,1364
9
- hypermedia_client/core/hco/hco_base.py,sha256=sLIdlqpiNQAiTSy6IeN5MTzaNAxomIlQr6uM1q5TBVY,3370
10
- hypermedia_client/core/hco/link_hco.py,sha256=gfkpfdS7MAZrywRSe3QK6IFJYBsTeCobRWvEWB4wX-s,1915
11
- hypermedia_client/core/hco/upload_action_hco.py,sha256=4-cpBaVdWGJzpTl3tC10vAsgsmIMcMHDPXgT4Bdk0iA,4573
12
- hypermedia_client/core/http_headers.py,sha256=tY4h3DKVDMkjw9DLFn57HdEnwR1NAixMF8Yjgy3gjQY,183
13
- hypermedia_client/core/media_types.py,sha256=qU-Jd92H5HKczWDk51EstFHadO6A_QJL4lLXHRlfgjQ,600
14
- hypermedia_client/core/model/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
15
- hypermedia_client/core/model/error.py,sha256=U-9U1TRc77UNIQe_rvnwzNkTjrUEem3pKMx2c9rMr-k,215
16
- hypermedia_client/core/model/sirenmodels.py,sha256=vGRQlhM2cSa2caxQel91Jr48KWqM-vMYX32iaQCzIds,5547
17
- hypermedia_client/core/polling.py,sha256=Z6VXn-PCGk4XX-4tQWZG59qJyCIS0eIrpPUORQDIGrs,1077
18
- hypermedia_client/core/sirenaccess.py,sha256=5p8twdB0FYMhhBNPH3-xDX20jWR4-b2h8F3BDoyc7C8,6978
19
- hypermedia_client/job_management/__init__.py,sha256=o21xGlNYwHrYtKMX9rDj1L6Gs6f82KYl9W3R9_g3_ec,138
20
- hypermedia_client/job_management/enterjma.py,sha256=PUOzXWFI3AU84HLYWWKy_sfX0mtnMA60UBVKBma5DKs,1475
21
- hypermedia_client/job_management/hcos/__init__.py,sha256=vMIdxGHBsVcKYKrVkCzD4a_VaheKSNxCimospFn5N88,396
22
- hypermedia_client/job_management/hcos/entrypoint_hco.py,sha256=OYw8w6kpibK7gamhU7Pl6pfzAvmD1pEZ2f-OffQ2TtI,2348
23
- hypermedia_client/job_management/hcos/info_hco.py,sha256=KMNXrbz1dyg_v0sUf8yxGb5ABzg-HOvtAiV0Y5alMV0,1348
24
- hypermedia_client/job_management/hcos/input_dataslot_hco.py,sha256=D3IsGWKJIx_9QUkwE9JUI04tG8nPIqPuAmJhnh-lKIk,3666
25
- hypermedia_client/job_management/hcos/job_hco.py,sha256=PYp_7TIztpmT-UNH9-Pe-CKtUcYJ0bZvVOBW37fsxVA,7425
26
- hypermedia_client/job_management/hcos/job_query_result_hco.py,sha256=so4qzwpLpHQ526VMlr8xikHw-fDHhqhcsy6PbKGX8hA,3014
27
- hypermedia_client/job_management/hcos/job_used_tags_hco.py,sha256=Oeq8G-hsvaST40-ENdo481smMrCiRTYJz2PCC7sgi3U,960
28
- hypermedia_client/job_management/hcos/jobsroot_hco.py,sha256=W2-9koXw2MAH2aZxo75MyIWLQ7s7hCrbjY1BToqdItU,3680
29
- hypermedia_client/job_management/hcos/output_dataslot_hco.py,sha256=8h1sznjRz56jBWr6epWCjOZZb_nkdiegTx3qpKw3-gU,1564
30
- hypermedia_client/job_management/hcos/processing_step_hco.py,sha256=XsYvAqD2xhtCG5q2MryoHfvYsBZr5OPVRE2a3AGz44Y,3055
31
- hypermedia_client/job_management/hcos/processing_step_used_tags_hco.py,sha256=wH6BN_tSCkuZPlDnA6F5Bx3puFEE0o_mWTIxutfHT68,1083
32
- hypermedia_client/job_management/hcos/processingstep_query_result_hco.py,sha256=7Jjy15F417MLW8uOLRkhWvmodeuNdygUKkeu4jGkmXc,3268
33
- hypermedia_client/job_management/hcos/processingsteproot_hco.py,sha256=kCFPn7J8pOSL-M0GvEWjxyOGhk-Rn_eFwkvLyA84Xjg,3798
34
- hypermedia_client/job_management/hcos/user_hco.py,sha256=axcAecmPYLrJuXG6rJTJjUcn8XBl3SDe6fw7m_rU568,1111
35
- hypermedia_client/job_management/hcos/workdata_hco.py,sha256=s_v2_2gmr4Px3Wiu3n1ZdWE7hG-Hi8JH3jHmWJYxJRw,4966
36
- hypermedia_client/job_management/hcos/workdata_query_result_hco.py,sha256=gWM5pPe6bf0xvWHITYTHVRh_LyvGunxNblDjmQOLzXs,2948
37
- hypermedia_client/job_management/hcos/workdata_used_tags_query_result_hco.py,sha256=hCxjW9rLSsdl3hbKvi06zNiXdn-I9TPIRQDoaoWh8uA,1103
38
- hypermedia_client/job_management/hcos/workdataroot_hco.py,sha256=3RZGaTjhPb60ArWVNyEg8yyNHpJnLJBj3Vr3vHwlzfw,4087
39
- hypermedia_client/job_management/ideas.md,sha256=dA2qGLbgh561iLqDn792XhfxHPHdVJ__GpFxcEMTghY,431
40
- hypermedia_client/job_management/known_relations.py,sha256=UlOF-sua8SyOPNNKzT_j6JVG8T-aewHIzn7S2ajXBhI,593
41
- hypermedia_client/job_management/model/__init__.py,sha256=ApHhNfjx4bPuz10sQnyBA2zajYbU7loDTZSKC5H_jBY,34
42
- hypermedia_client/job_management/model/open_api_generated.py,sha256=3NdFG6J24JPnKSf03SZyLarkjfJ7AFAL0HsCkpV06os,28965
43
- hypermedia_client/job_management/model/sirenentities.py,sha256=DcaghAtASYqbAmgHhbPWHJn86GYdOG2nSKJrm23o4iI,3210
44
- hypermedia_client/job_management/tool/__init__.py,sha256=W_PQvoWNHAhfgSHSC3opcsRUWtWBGACDtRgipZYHA0o,21
45
- hypermedia_client/job_management/tool/job.py,sha256=YSWjtVBk8KaBU_2hP1Uamru97_a3rNFAtIDsDe7wEEw,14644
46
- pinexq_client-0.2.0.2024.607.8.dist-info/METADATA,sha256=7WQ-be3MTcQ3N-L2xs0cLDUMef8wNB2efJDI2fr9T2U,3364
47
- pinexq_client-0.2.0.2024.607.8.dist-info/WHEEL,sha256=vnE8JVcI2Wz7GRKorsPArnBdnW2SWKWGow5gu5tHlRU,90
48
- pinexq_client-0.2.0.2024.607.8.dist-info/licenses/LICENSE,sha256=3oz3tAhM7kOgRukkRe7wmh5T_HihZY77ZtJDJm91ZN8,1072
49
- pinexq_client-0.2.0.2024.607.8.dist-info/RECORD,,
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes