perceptic-core-client 0.7.1__py3-none-any.whl → 0.7.3__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.
Potentially problematic release.
This version of perceptic-core-client might be problematic. Click here for more details.
- perceptic_core_client/api/connection_resource_api.py +80 -80
- perceptic_core_client/api/file_system_contents_resource_api.py +293 -293
- perceptic_core_client/api/file_system_resource_api.py +145 -145
- perceptic_core_client/api/indexer_resource_api.py +47 -47
- perceptic_core_client/api/indexing_task_resource_api.py +109 -109
- perceptic_core_client/api/uri_resource_api.py +695 -122
- perceptic_core_client/test/test_connection_resource_api.py +6 -6
- perceptic_core_client/test/test_file_system_contents_resource_api.py +23 -23
- perceptic_core_client/test/test_file_system_resource_api.py +12 -12
- perceptic_core_client/test/test_indexer_resource_api.py +6 -6
- perceptic_core_client/test/test_indexing_task_resource_api.py +11 -11
- perceptic_core_client/test/test_uri_resource_api.py +31 -17
- {perceptic_core_client-0.7.1.dist-info → perceptic_core_client-0.7.3.dist-info}/METADATA +15 -6
- {perceptic_core_client-0.7.1.dist-info → perceptic_core_client-0.7.3.dist-info}/RECORD +16 -16
- {perceptic_core_client-0.7.1.dist-info → perceptic_core_client-0.7.3.dist-info}/WHEEL +1 -1
- {perceptic_core_client-0.7.1.dist-info → perceptic_core_client-0.7.3.dist-info}/top_level.txt +0 -0
|
@@ -26,17 +26,17 @@ class TestConnectionResourceApi(unittest.TestCase):
|
|
|
26
26
|
def tearDown(self) -> None:
|
|
27
27
|
pass
|
|
28
28
|
|
|
29
|
-
def
|
|
30
|
-
"""Test case for
|
|
29
|
+
def test_create_connection(self) -> None:
|
|
30
|
+
"""Test case for create_connection
|
|
31
31
|
|
|
32
|
-
|
|
32
|
+
Create Connection
|
|
33
33
|
"""
|
|
34
34
|
pass
|
|
35
35
|
|
|
36
|
-
def
|
|
37
|
-
"""Test case for
|
|
36
|
+
def test_get_connection(self) -> None:
|
|
37
|
+
"""Test case for get_connection
|
|
38
38
|
|
|
39
|
-
|
|
39
|
+
Get Connection
|
|
40
40
|
"""
|
|
41
41
|
pass
|
|
42
42
|
|
|
@@ -26,57 +26,57 @@ class TestFileSystemContentsResourceApi(unittest.TestCase):
|
|
|
26
26
|
def tearDown(self) -> None:
|
|
27
27
|
pass
|
|
28
28
|
|
|
29
|
-
def
|
|
30
|
-
"""Test case for
|
|
29
|
+
def test_create_folder(self) -> None:
|
|
30
|
+
"""Test case for create_folder
|
|
31
31
|
|
|
32
|
-
|
|
32
|
+
Create Folder
|
|
33
33
|
"""
|
|
34
34
|
pass
|
|
35
35
|
|
|
36
|
-
def
|
|
37
|
-
"""Test case for
|
|
36
|
+
def test_download_file(self) -> None:
|
|
37
|
+
"""Test case for download_file
|
|
38
38
|
|
|
39
|
-
|
|
39
|
+
Download
|
|
40
40
|
"""
|
|
41
41
|
pass
|
|
42
42
|
|
|
43
|
-
def
|
|
44
|
-
"""Test case for
|
|
43
|
+
def test_get_metadata(self) -> None:
|
|
44
|
+
"""Test case for get_metadata
|
|
45
45
|
|
|
46
|
-
|
|
46
|
+
Get Metadata
|
|
47
47
|
"""
|
|
48
48
|
pass
|
|
49
49
|
|
|
50
|
-
def
|
|
51
|
-
"""Test case for
|
|
50
|
+
def test_get_parent_resource(self) -> None:
|
|
51
|
+
"""Test case for get_parent_resource
|
|
52
52
|
|
|
53
|
-
|
|
53
|
+
Get Parent
|
|
54
54
|
"""
|
|
55
55
|
pass
|
|
56
56
|
|
|
57
|
-
def
|
|
58
|
-
"""Test case for
|
|
57
|
+
def test_get_signed_url(self) -> None:
|
|
58
|
+
"""Test case for get_signed_url
|
|
59
59
|
|
|
60
|
-
|
|
60
|
+
Signed Url
|
|
61
61
|
"""
|
|
62
62
|
pass
|
|
63
63
|
|
|
64
|
-
def
|
|
65
|
-
"""Test case for
|
|
64
|
+
def test_list_files_flattened(self) -> None:
|
|
65
|
+
"""Test case for list_files_flattened
|
|
66
66
|
|
|
67
|
-
|
|
67
|
+
List Files Flattened
|
|
68
68
|
"""
|
|
69
69
|
pass
|
|
70
70
|
|
|
71
|
-
def
|
|
72
|
-
"""Test case for
|
|
71
|
+
def test_list_folder_contents(self) -> None:
|
|
72
|
+
"""Test case for list_folder_contents
|
|
73
73
|
|
|
74
|
-
|
|
74
|
+
List
|
|
75
75
|
"""
|
|
76
76
|
pass
|
|
77
77
|
|
|
78
|
-
def
|
|
79
|
-
"""Test case for
|
|
78
|
+
def test_upload_file(self) -> None:
|
|
79
|
+
"""Test case for upload_file
|
|
80
80
|
|
|
81
81
|
Upload File
|
|
82
82
|
"""
|
|
@@ -26,31 +26,31 @@ class TestFileSystemResourceApi(unittest.TestCase):
|
|
|
26
26
|
def tearDown(self) -> None:
|
|
27
27
|
pass
|
|
28
28
|
|
|
29
|
-
def
|
|
30
|
-
"""Test case for
|
|
29
|
+
def test_create_managed_file_system(self) -> None:
|
|
30
|
+
"""Test case for create_managed_file_system
|
|
31
31
|
|
|
32
|
-
|
|
32
|
+
Create Managed File System
|
|
33
33
|
"""
|
|
34
34
|
pass
|
|
35
35
|
|
|
36
|
-
def
|
|
37
|
-
"""Test case for
|
|
36
|
+
def test_create_remote_file_system(self) -> None:
|
|
37
|
+
"""Test case for create_remote_file_system
|
|
38
38
|
|
|
39
|
-
|
|
39
|
+
Create Remote File System
|
|
40
40
|
"""
|
|
41
41
|
pass
|
|
42
42
|
|
|
43
|
-
def
|
|
44
|
-
"""Test case for
|
|
43
|
+
def test_get_file_system(self) -> None:
|
|
44
|
+
"""Test case for get_file_system
|
|
45
45
|
|
|
46
|
-
|
|
46
|
+
Get File System
|
|
47
47
|
"""
|
|
48
48
|
pass
|
|
49
49
|
|
|
50
|
-
def
|
|
51
|
-
"""Test case for
|
|
50
|
+
def test_list_all_file_systems(self) -> None:
|
|
51
|
+
"""Test case for list_all_file_systems
|
|
52
52
|
|
|
53
|
-
|
|
53
|
+
List All File Systems
|
|
54
54
|
"""
|
|
55
55
|
pass
|
|
56
56
|
|
|
@@ -26,17 +26,17 @@ class TestIndexerResourceApi(unittest.TestCase):
|
|
|
26
26
|
def tearDown(self) -> None:
|
|
27
27
|
pass
|
|
28
28
|
|
|
29
|
-
def
|
|
30
|
-
"""Test case for
|
|
29
|
+
def test_get_indexer(self) -> None:
|
|
30
|
+
"""Test case for get_indexer
|
|
31
31
|
|
|
32
|
-
|
|
32
|
+
Get Indexer
|
|
33
33
|
"""
|
|
34
34
|
pass
|
|
35
35
|
|
|
36
|
-
def
|
|
37
|
-
"""Test case for
|
|
36
|
+
def test_list_indexers(self) -> None:
|
|
37
|
+
"""Test case for list_indexers
|
|
38
38
|
|
|
39
|
-
|
|
39
|
+
List Indexers
|
|
40
40
|
"""
|
|
41
41
|
pass
|
|
42
42
|
|
|
@@ -26,31 +26,31 @@ class TestIndexingTaskResourceApi(unittest.TestCase):
|
|
|
26
26
|
def tearDown(self) -> None:
|
|
27
27
|
pass
|
|
28
28
|
|
|
29
|
-
def
|
|
30
|
-
"""Test case for
|
|
29
|
+
def test_create_indexing_task(self) -> None:
|
|
30
|
+
"""Test case for create_indexing_task
|
|
31
31
|
|
|
32
32
|
Create Indexing Task
|
|
33
33
|
"""
|
|
34
34
|
pass
|
|
35
35
|
|
|
36
|
-
def
|
|
37
|
-
"""Test case for
|
|
36
|
+
def test_get_indexing_task(self) -> None:
|
|
37
|
+
"""Test case for get_indexing_task
|
|
38
38
|
|
|
39
|
-
|
|
39
|
+
Get Indexing Task
|
|
40
40
|
"""
|
|
41
41
|
pass
|
|
42
42
|
|
|
43
|
-
def
|
|
44
|
-
"""Test case for
|
|
43
|
+
def test_list_indexing_actions(self) -> None:
|
|
44
|
+
"""Test case for list_indexing_actions
|
|
45
45
|
|
|
46
|
-
|
|
46
|
+
List Indexing Actions
|
|
47
47
|
"""
|
|
48
48
|
pass
|
|
49
49
|
|
|
50
|
-
def
|
|
51
|
-
"""Test case for
|
|
50
|
+
def test_start_execution(self) -> None:
|
|
51
|
+
"""Test case for start_execution
|
|
52
52
|
|
|
53
|
-
|
|
53
|
+
Start Execution
|
|
54
54
|
"""
|
|
55
55
|
pass
|
|
56
56
|
|
|
@@ -26,45 +26,59 @@ class TestUriResourceApi(unittest.TestCase):
|
|
|
26
26
|
def tearDown(self) -> None:
|
|
27
27
|
pass
|
|
28
28
|
|
|
29
|
-
def
|
|
30
|
-
"""Test case for
|
|
29
|
+
def test_download_resource(self) -> None:
|
|
30
|
+
"""Test case for download_resource
|
|
31
31
|
|
|
32
32
|
Download Resource
|
|
33
33
|
"""
|
|
34
34
|
pass
|
|
35
35
|
|
|
36
|
-
def
|
|
37
|
-
"""Test case for
|
|
36
|
+
def test_get_metadata_from_uri(self) -> None:
|
|
37
|
+
"""Test case for get_metadata_from_uri
|
|
38
38
|
|
|
39
|
-
|
|
39
|
+
Get Metadata
|
|
40
40
|
"""
|
|
41
41
|
pass
|
|
42
42
|
|
|
43
|
-
def
|
|
44
|
-
"""Test case for
|
|
43
|
+
def test_get_parent(self) -> None:
|
|
44
|
+
"""Test case for get_parent
|
|
45
45
|
|
|
46
|
-
|
|
46
|
+
Get Parent
|
|
47
47
|
"""
|
|
48
48
|
pass
|
|
49
49
|
|
|
50
|
-
def
|
|
51
|
-
"""Test case for
|
|
50
|
+
def test_get_signed_url_from_uri(self) -> None:
|
|
51
|
+
"""Test case for get_signed_url_from_uri
|
|
52
52
|
|
|
53
|
-
Get
|
|
53
|
+
Get Signed Url
|
|
54
54
|
"""
|
|
55
55
|
pass
|
|
56
56
|
|
|
57
|
-
def
|
|
58
|
-
"""Test case for
|
|
57
|
+
def test_list_files(self) -> None:
|
|
58
|
+
"""Test case for list_files
|
|
59
59
|
|
|
60
|
-
|
|
60
|
+
List Files
|
|
61
61
|
"""
|
|
62
62
|
pass
|
|
63
63
|
|
|
64
|
-
def
|
|
65
|
-
"""Test case for
|
|
64
|
+
def test_list_resources(self) -> None:
|
|
65
|
+
"""Test case for list_resources
|
|
66
66
|
|
|
67
|
-
|
|
67
|
+
List Resources
|
|
68
|
+
"""
|
|
69
|
+
pass
|
|
70
|
+
|
|
71
|
+
def test_remove_resource(self) -> None:
|
|
72
|
+
"""Test case for remove_resource
|
|
73
|
+
|
|
74
|
+
Remove Resource
|
|
75
|
+
"""
|
|
76
|
+
pass
|
|
77
|
+
|
|
78
|
+
def test_upload_resource(self) -> None:
|
|
79
|
+
"""Test case for upload_resource
|
|
80
|
+
|
|
81
|
+
Upload
|
|
68
82
|
"""
|
|
69
83
|
pass
|
|
70
84
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: perceptic-core-client
|
|
3
|
-
Version: 0.7.
|
|
3
|
+
Version: 0.7.3
|
|
4
4
|
Summary: Python client for Perceptic Core
|
|
5
5
|
Author-email: Your Name <you@example.com>
|
|
6
6
|
License: Proprietary
|
|
@@ -25,7 +25,7 @@ This package provides a generated Python client for interacting with the Percept
|
|
|
25
25
|
|
|
26
26
|
## Installation
|
|
27
27
|
|
|
28
|
-
Install the package from the configured package registry (ensure `pip` is configured
|
|
28
|
+
Install the package from the configured package registry (ensure `pip` is configured):
|
|
29
29
|
|
|
30
30
|
```bash
|
|
31
31
|
pip install perceptic-core-client
|
|
@@ -34,6 +34,18 @@ pip install perceptic-core-client
|
|
|
34
34
|
# pip install perceptic-core-client==<version>
|
|
35
35
|
```
|
|
36
36
|
|
|
37
|
+
### Development
|
|
38
|
+
|
|
39
|
+
`pip install -e .[dev]`
|
|
40
|
+
|
|
41
|
+
This package gets automatically published to pip when a new version is tagged in the repository. The workflow file for this is located at `.github/workflows/publish-python.yml`. It will publish the same version as the one tagged in the repository.
|
|
42
|
+
|
|
43
|
+
To generate the client code locally for testing o development, you can run:
|
|
44
|
+
```bash
|
|
45
|
+
python perceptic-core-python-client/scripts/generate_client.py --spec-path perceptic-core-server/openapi/openapi.json --version 0.5.0
|
|
46
|
+
```
|
|
47
|
+
Note that the `--version` doesn't really matter if generating locally and not publishing to pypi. It's only relevant if publishing the package to pypi, which is done automatically by the GitHub action.
|
|
48
|
+
|
|
37
49
|
## Basic Usage
|
|
38
50
|
You need the URL of your Perceptic Core API instance and a valid authentication token (e.g., a Bearer token from Keycloak) obtained separately.
|
|
39
51
|
|
|
@@ -48,10 +60,7 @@ from pprint import pprint
|
|
|
48
60
|
|
|
49
61
|
# 1. Get your API host and token (e.g., from environment variables)
|
|
50
62
|
api_host = os.environ.get("PERCEPTIC_CORE_HOST", "http://localhost:8080")
|
|
51
|
-
access_token =
|
|
52
|
-
|
|
53
|
-
if not access_token:
|
|
54
|
-
raise ValueError("Authentication token not found. Set PERCEPTIC_CORE_TOKEN environment variable.")
|
|
63
|
+
access_token = get_access_token()
|
|
55
64
|
|
|
56
65
|
# 2. Create a Configuration object
|
|
57
66
|
configuration = Configuration(host=api_host)
|
|
@@ -5,12 +5,12 @@ perceptic_core_client/configuration.py,sha256=SQSH2SmsosPzZWLBDCL__iXOYakIfsIi23
|
|
|
5
5
|
perceptic_core_client/exceptions.py,sha256=mAFFNIdOi4nl0A5oxKKACRbtA1uyMozS7dEBLGHUggs,6498
|
|
6
6
|
perceptic_core_client/rest.py,sha256=VMj2msOtIW-VbmGTbC3oBll9kNsQmI_Q-y_EadfJMio,9502
|
|
7
7
|
perceptic_core_client/api/__init__.py,sha256=9dAahFuMC5173VZ-y6QPS7cvEII3M6D7vJisprMa9PY,704
|
|
8
|
-
perceptic_core_client/api/connection_resource_api.py,sha256=
|
|
9
|
-
perceptic_core_client/api/file_system_contents_resource_api.py,sha256=
|
|
10
|
-
perceptic_core_client/api/file_system_resource_api.py,sha256=
|
|
11
|
-
perceptic_core_client/api/indexer_resource_api.py,sha256=
|
|
12
|
-
perceptic_core_client/api/indexing_task_resource_api.py,sha256=
|
|
13
|
-
perceptic_core_client/api/uri_resource_api.py,sha256=
|
|
8
|
+
perceptic_core_client/api/connection_resource_api.py,sha256=aQ5eMPTL9_3xEcb9-9B4Pcuzeg707YalDuWmGsopQP0,21745
|
|
9
|
+
perceptic_core_client/api/file_system_contents_resource_api.py,sha256=v-tY95knuCJzdQCUKssX7WIy5htXZ8UCe23vo12fb-Q,88560
|
|
10
|
+
perceptic_core_client/api/file_system_resource_api.py,sha256=7wDk7cs60UQmTaGkWNK9qdFEiGvrBUa6H21FoItf43o,42398
|
|
11
|
+
perceptic_core_client/api/indexer_resource_api.py,sha256=nNeyrB0wMOetwDO92jfkv2PtQLaW5XUrsHUhDwVBhUM,20059
|
|
12
|
+
perceptic_core_client/api/indexing_task_resource_api.py,sha256=nHDH5bEdTUzw8qsS8FvmCEErF6JTH4vGI4JC6mmylD8,44317
|
|
13
|
+
perceptic_core_client/api/uri_resource_api.py,sha256=JOx-mCJRdLtHUmdSOt01pblRjEaUK_1xhkjJvwSNkq0,81531
|
|
14
14
|
perceptic_core_client/api/user_resource_api.py,sha256=LrqvNebOhBI_EoLTZpCC7OHYPomDoctWKJkv173W2p8,10222
|
|
15
15
|
perceptic_core_client/api/worker_resource_api.py,sha256=qyzp9_qMZICVpKtEyy70Gs5ps36Cmgl9lZLllOXkNOI,66424
|
|
16
16
|
perceptic_core_client/models/__init__.py,sha256=tJ_PQCIyNwFS_it8hEA85NKCDDEhO3aAVV45GwsiFFw,5636
|
|
@@ -80,7 +80,7 @@ perceptic_core_client/test/test_action_type.py,sha256=n21J9CQEH1tHjztKC7K081mvKN
|
|
|
80
80
|
perceptic_core_client/test/test_azure_blob_connection_settings_api_dto.py,sha256=BmE-2cgApvW3VjO_HFB7fTrEdInBJRbSCeACkx2eakQ,1921
|
|
81
81
|
perceptic_core_client/test/test_azure_blob_file_system_root_metadata_api_dto.py,sha256=8cm4pO5ygeA9WaxomWsZyxpZgqSkxvrm6_AFbzXRW2Y,1734
|
|
82
82
|
perceptic_core_client/test/test_connection_api_dto.py,sha256=f2eT1U5zfFszptJrmzJxtXsCrdV4KY8KhXFLyZDT9PI,1642
|
|
83
|
-
perceptic_core_client/test/test_connection_resource_api.py,sha256=
|
|
83
|
+
perceptic_core_client/test/test_connection_resource_api.py,sha256=EXW1eO_eO95iovdVj7ZcjCHmpvChEJPuwp2QC9C3AgE,991
|
|
84
84
|
perceptic_core_client/test/test_connection_settings_api_dto.py,sha256=5WgXQh_ns5CgQZ-M_wKdo_UeQnJ2zCgKFeN4j7bc7bQ,2007
|
|
85
85
|
perceptic_core_client/test/test_create_connection_request.py,sha256=34Kp4emjSoheBrxZ1Y017JspEg1h7rx5z3S43J9N3pw,1670
|
|
86
86
|
perceptic_core_client/test/test_create_connection_response.py,sha256=FLeeBFLE1YSy6p-tAh0byRziP0aNt3WA7O5aGWXRzS0,1546
|
|
@@ -92,8 +92,8 @@ perceptic_core_client/test/test_create_indexing_task_response.py,sha256=KS4chfWN
|
|
|
92
92
|
perceptic_core_client/test/test_create_managed_file_system_request.py,sha256=xOqVlAaInFiwWQiFRnKGlcv2NE5PiUmDEqyv1UOWVj0,1644
|
|
93
93
|
perceptic_core_client/test/test_create_remote_file_system_request.py,sha256=mfyL3YgNmXCLid5QFzdxPFH9GdxD1pZs_MuQrnNr2Xc,1791
|
|
94
94
|
perceptic_core_client/test/test_file_system_api_dto.py,sha256=_c9QeVvfXgguaylNvSgTUwB_PPZiW_5lraKcG_5hch0,1687
|
|
95
|
-
perceptic_core_client/test/test_file_system_contents_resource_api.py,sha256=
|
|
96
|
-
perceptic_core_client/test/test_file_system_resource_api.py,sha256=
|
|
95
|
+
perceptic_core_client/test/test_file_system_contents_resource_api.py,sha256=d6QvcBOqyH7TxQNWdiV5FgRQNIeOXdzEmM72fLwDPEY,1818
|
|
96
|
+
perceptic_core_client/test/test_file_system_resource_api.py,sha256=44shHGsmfMwAuxBFAEjmD8Trys0ZgestGR4zajPAoK8,1342
|
|
97
97
|
perceptic_core_client/test/test_file_system_root_metadata_api_dto.py,sha256=A5LCyJL0QC7-F7baiJAayX2ZdaI1kjqYZ_Jnj8czq5o,1658
|
|
98
98
|
perceptic_core_client/test/test_get_connection_response.py,sha256=tuaHMt5AkwSykj_nI6HE-jPLxbinBi-arJZzP_CeeVU,1824
|
|
99
99
|
perceptic_core_client/test/test_get_indexer_response.py,sha256=AhkzglY8FwgMU9gZgC46eC43jFOXYV_vf0c3WS06YIE,1664
|
|
@@ -107,11 +107,11 @@ perceptic_core_client/test/test_get_worker_metadata_response.py,sha256=Yl4A7wiJc
|
|
|
107
107
|
perceptic_core_client/test/test_get_worker_status_response.py,sha256=vn-sTDmcC07YzlqkqBhgFRceNybgMvMCunjCrL9uXtM,1537
|
|
108
108
|
perceptic_core_client/test/test_get_workers_response.py,sha256=_5F2qJyemvwSH-0bapn3eNQxXzJpFeLun5v_7BvRn84,1582
|
|
109
109
|
perceptic_core_client/test/test_indexer_dto.py,sha256=mjhqidl61JrXVM6UbfXE1tzsLsEGmPk5MytkEiFdk3A,1471
|
|
110
|
-
perceptic_core_client/test/test_indexer_resource_api.py,sha256=
|
|
110
|
+
perceptic_core_client/test/test_indexer_resource_api.py,sha256=coFEZkP2tcnVg6MO_18o1USjUwBg-fS2zRjQcjbVz-A,955
|
|
111
111
|
perceptic_core_client/test/test_indexing_action_dto.py,sha256=A9jt72PZogCkDk-nG4GOp4FjOzu-hxMsmBFkodFbSv0,1751
|
|
112
112
|
perceptic_core_client/test/test_indexing_action_status.py,sha256=ZQ0bv6oEE5xzbiXR_Oq812XmUrreU1oioRx-OfR2peg,788
|
|
113
113
|
perceptic_core_client/test/test_indexing_task_dto.py,sha256=4LSPu_AoLgeAKoJnRW3dDB7z9xijuqCKhatGHOb4uGc,1897
|
|
114
|
-
perceptic_core_client/test/test_indexing_task_resource_api.py,sha256=
|
|
114
|
+
perceptic_core_client/test/test_indexing_task_resource_api.py,sha256=3pjEoxSJl7SCxFsUORUHdhDDZTdVvNXEaqiQK_7T3Lg,1310
|
|
115
115
|
perceptic_core_client/test/test_indexing_task_status.py,sha256=mM7GA47e4_PrWMjYPuph2Cne00AwM7K7a_gEH5rPIwQ,1464
|
|
116
116
|
perceptic_core_client/test/test_info_event.py,sha256=g7tdVz5LgKv_73J5ARvTbXjy7KpRHz4Yo2_wpJLMLWM,1416
|
|
117
117
|
perceptic_core_client/test/test_json_node.py,sha256=PSqWJ-4Ho-C5lVLLSiSpN8DROm0r-I0s0-R8cwGV9mU,2049
|
|
@@ -140,12 +140,12 @@ perceptic_core_client/test/test_s3_file_system_root_metadata_api_dto.py,sha256=K
|
|
|
140
140
|
perceptic_core_client/test/test_schema_location.py,sha256=lEe3E-VJLQ8UtvpImmQIq1DnsaeCQq3RTNCM1QdqbfI,1514
|
|
141
141
|
perceptic_core_client/test/test_start_execution_response.py,sha256=1dpZ3bQIXpMyG8HgCMqePY_hkHZqc_IIc4m2-z4Bg-E,2122
|
|
142
142
|
perceptic_core_client/test/test_upload_file_to_managed_file_system_response.py,sha256=Mpmwqqz0m3p6b9Ofa3nC9ar9tG8FwHYBf9QkhLA54Ho,1705
|
|
143
|
-
perceptic_core_client/test/test_uri_resource_api.py,sha256=
|
|
143
|
+
perceptic_core_client/test/test_uri_resource_api.py,sha256=GZFgsVQDxcDAhWkFmADKGA2_p4MQqfYStnbVCD-x_p4,1757
|
|
144
144
|
perceptic_core_client/test/test_user_resource_api.py,sha256=yCzM6n1J0xjbLBWW1hcE6m6epT8u8Atck7fnGoOdwBw,817
|
|
145
145
|
perceptic_core_client/test/test_worker_event.py,sha256=f8zBXEkGhya6Tu0quq9p3Mpm1exxMr9z21q72JvYNLg,1699
|
|
146
146
|
perceptic_core_client/test/test_worker_metadata_dto.py,sha256=lbvKWvnwcKEfHHh9diRevdceGEJwgv3INVphqaxiAlw,1674
|
|
147
147
|
perceptic_core_client/test/test_worker_resource_api.py,sha256=1kCAFp5_mHmrQrUKgp6hKcriNlwvtq5J8dCvAFTMKQM,1794
|
|
148
|
-
perceptic_core_client-0.7.
|
|
149
|
-
perceptic_core_client-0.7.
|
|
150
|
-
perceptic_core_client-0.7.
|
|
151
|
-
perceptic_core_client-0.7.
|
|
148
|
+
perceptic_core_client-0.7.3.dist-info/METADATA,sha256=FNEDPPWlfXkBE4bdAXqJJbkEf3oqI9x0IbOuQV2qTPo,3604
|
|
149
|
+
perceptic_core_client-0.7.3.dist-info/WHEEL,sha256=Nw36Djuh_5VDukK0H78QzOX-_FQEo6V37m3nkm96gtU,91
|
|
150
|
+
perceptic_core_client-0.7.3.dist-info/top_level.txt,sha256=wWF5_isd4ZU0SRPPhKKAxW4kJ9hYIBgLbcWn_y-c1tg,22
|
|
151
|
+
perceptic_core_client-0.7.3.dist-info/RECORD,,
|
{perceptic_core_client-0.7.1.dist-info → perceptic_core_client-0.7.3.dist-info}/top_level.txt
RENAMED
|
File without changes
|