octostar-python-client 0.1.759__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.
- octostar/__init__.py +9 -0
- octostar/api/__init__.py +1 -0
- octostar/api/apps/__init__.py +0 -0
- octostar/api/apps/deploy_app.py +210 -0
- octostar/api/apps/execute_app_job.py +188 -0
- octostar/api/apps/get_app_logs.py +210 -0
- octostar/api/apps/get_apps_url.py +188 -0
- octostar/api/apps/get_job_logs.py +210 -0
- octostar/api/apps/get_job_progress.py +162 -0
- octostar/api/apps/kill_job.py +160 -0
- octostar/api/apps/list_app_jobs.py +276 -0
- octostar/api/apps/list_apps.py +251 -0
- octostar/api/apps/set_job_progress.py +216 -0
- octostar/api/apps/undeploy_app.py +160 -0
- octostar/api/metadata/__init__.py +0 -0
- octostar/api/metadata/get_version.py +232 -0
- octostar/api/metadata/get_whoami.py +232 -0
- octostar/api/notifications/__init__.py +0 -0
- octostar/api/notifications/delete_stream.py +222 -0
- octostar/api/notifications/get_subscriptions.py +240 -0
- octostar/api/notifications/publish_notification.py +275 -0
- octostar/api/notifications/pull_events_from_stream.py +282 -0
- octostar/api/notifications/push_event_to_stream.py +265 -0
- octostar/api/notifications/toast.py +264 -0
- octostar/api/ontology/__init__.py +0 -0
- octostar/api/ontology/fetch_ontology_data.py +275 -0
- octostar/api/ontology/get_ontologies.py +237 -0
- octostar/api/ontology/multi_query.py +297 -0
- octostar/api/ontology/query.py +276 -0
- octostar/api/pipeline/__init__.py +1 -0
- octostar/api/pipeline/get_processing_status.py +185 -0
- octostar/api/pipeline/update_processing_status.py +164 -0
- octostar/api/search/__init__.py +0 -0
- octostar/api/search/get_annotations.py +153 -0
- octostar/api/workspace_data/__init__.py +0 -0
- octostar/api/workspace_data/delete_blob.py +212 -0
- octostar/api/workspace_data/delete_entities.py +326 -0
- octostar/api/workspace_data/download_blob.py +235 -0
- octostar/api/workspace_data/get_attachment.py +336 -0
- octostar/api/workspace_data/get_files_tree.py +397 -0
- octostar/api/workspace_data/upload_blob.py +235 -0
- octostar/api/workspace_data/upsert_entities.py +284 -0
- octostar/api/workspace_permissions/__init__.py +0 -0
- octostar/api/workspace_permissions/get_permissions.py +325 -0
- octostar/api/workspace_tags/__init__.py +0 -0
- octostar/api/workspace_tags/delete_tag_from_entities.py +141 -0
- octostar/api/workspace_tags/tag_entities.py +180 -0
- octostar/client.py +492 -0
- octostar/errors.py +50 -0
- octostar/models/__init__.py +249 -0
- octostar/models/acknowledgement.py +74 -0
- octostar/models/acknowledgement_with_data.py +82 -0
- octostar/models/app_status.py +239 -0
- octostar/models/app_status_annotations.py +66 -0
- octostar/models/app_status_labels.py +69 -0
- octostar/models/app_with_url.py +82 -0
- octostar/models/child_processing_status.py +118 -0
- octostar/models/delete_entities_response_401.py +74 -0
- octostar/models/delete_entities_response_409.py +82 -0
- octostar/models/delete_entities_response_500.py +82 -0
- octostar/models/delete_stream_response_401.py +74 -0
- octostar/models/delete_tag_from_entities_response_401.py +74 -0
- octostar/models/deploy_app_json_body.py +90 -0
- octostar/models/deploy_app_json_body_secrets.py +65 -0
- octostar/models/deploy_app_response_200.py +98 -0
- octostar/models/deploy_app_response_200_data.py +60 -0
- octostar/models/deploy_app_response_400.py +82 -0
- octostar/models/deploy_app_response_403.py +82 -0
- octostar/models/deploy_app_response_404.py +82 -0
- octostar/models/deploy_app_response_409.py +82 -0
- octostar/models/deploy_app_response_500.py +82 -0
- octostar/models/entity.py +80 -0
- octostar/models/entity_response.py +99 -0
- octostar/models/entity_response_s3_urls.py +93 -0
- octostar/models/entity_response_s3_urls_additional_property.py +105 -0
- octostar/models/entity_response_s3_urls_additional_property_fields.py +114 -0
- octostar/models/execute_app_job_json_body.py +151 -0
- octostar/models/execute_app_job_json_body_annotation.py +65 -0
- octostar/models/execute_app_job_response_401.py +74 -0
- octostar/models/fetch_ontology_data_response_200.py +60 -0
- octostar/models/fetch_ontology_data_response_401.py +74 -0
- octostar/models/fetch_ontology_data_response_500.py +82 -0
- octostar/models/get_app_logs_response_401.py +74 -0
- octostar/models/get_app_logs_response_404.py +74 -0
- octostar/models/get_app_logs_response_500.py +82 -0
- octostar/models/get_apps_url_json_body.py +76 -0
- octostar/models/get_apps_url_response_401.py +74 -0
- octostar/models/get_apps_url_response_500.py +82 -0
- octostar/models/get_attachment_response_200.py +74 -0
- octostar/models/get_attachment_response_401.py +74 -0
- octostar/models/get_files_tree_response_200.py +106 -0
- octostar/models/get_files_tree_response_200_status.py +8 -0
- octostar/models/get_files_tree_response_400.py +111 -0
- octostar/models/get_files_tree_response_400_data.py +60 -0
- octostar/models/get_files_tree_response_400_status.py +8 -0
- octostar/models/get_files_tree_response_401.py +74 -0
- octostar/models/get_files_tree_response_500.py +111 -0
- octostar/models/get_files_tree_response_500_data.py +60 -0
- octostar/models/get_files_tree_response_500_status.py +8 -0
- octostar/models/get_job_logs_response_401.py +74 -0
- octostar/models/get_job_logs_response_404.py +74 -0
- octostar/models/get_job_logs_response_500.py +82 -0
- octostar/models/get_job_progress_response_401.py +74 -0
- octostar/models/get_object_response_401.py +74 -0
- octostar/models/get_ontologies_response_401.py +74 -0
- octostar/models/get_ontologies_response_500.py +81 -0
- octostar/models/get_permissions_response_200.py +98 -0
- octostar/models/get_permissions_response_400.py +82 -0
- octostar/models/get_permissions_response_401.py +74 -0
- octostar/models/get_permissions_response_500.py +82 -0
- octostar/models/get_processing_status_response_200.py +104 -0
- octostar/models/get_processing_status_response_200_data.py +87 -0
- octostar/models/get_processing_status_response_400.py +82 -0
- octostar/models/get_processing_status_response_500.py +82 -0
- octostar/models/get_subscriptions_response_200_item.py +74 -0
- octostar/models/get_version_response_200.py +74 -0
- octostar/models/get_version_response_404.py +74 -0
- octostar/models/get_whoami_response_200.py +129 -0
- octostar/models/get_whoami_response_401.py +74 -0
- octostar/models/insert_entity.py +114 -0
- octostar/models/insert_entity_base.py +266 -0
- octostar/models/insert_entity_relationships_item.py +107 -0
- octostar/models/insert_entity_request.py +94 -0
- octostar/models/internal_server_error.py +82 -0
- octostar/models/job_execution_result.py +146 -0
- octostar/models/job_status.py +196 -0
- octostar/models/job_status_labels.py +60 -0
- octostar/models/job_with_url.py +82 -0
- octostar/models/kill_job_response_401.py +74 -0
- octostar/models/list_app_jobs_response_401.py +74 -0
- octostar/models/list_app_jobs_response_500.py +82 -0
- octostar/models/list_apps_response_401.py +74 -0
- octostar/models/list_apps_response_500.py +82 -0
- octostar/models/multi_query_json_body.py +100 -0
- octostar/models/multi_query_json_body_queries_item.py +80 -0
- octostar/models/multi_query_response_400.py +82 -0
- octostar/models/multi_query_response_401.py +74 -0
- octostar/models/not_found_error.py +74 -0
- octostar/models/octostar_event.py +96 -0
- octostar/models/octostar_event_octostar_payload.py +100 -0
- octostar/models/octostar_event_octostar_payload_level.py +11 -0
- octostar/models/os_notification.py +122 -0
- octostar/models/processing_status.py +262 -0
- octostar/models/processing_status_code.py +14 -0
- octostar/models/progress_request.py +73 -0
- octostar/models/publish_notification_response_401.py +74 -0
- octostar/models/pull_events_from_stream_response_401.py +74 -0
- octostar/models/push_event_to_stream_response_401.py +74 -0
- octostar/models/query_json_body.py +101 -0
- octostar/models/query_json_body_params.py +60 -0
- octostar/models/query_response_400.py +82 -0
- octostar/models/query_response_401.py +74 -0
- octostar/models/set_job_progress_response_401.py +74 -0
- octostar/models/string_to_value_label_map.py +99 -0
- octostar/models/string_to_value_label_map_data.py +89 -0
- octostar/models/string_to_value_label_map_data_additional_property.py +80 -0
- octostar/models/successful_get_tags.py +103 -0
- octostar/models/successful_insertion.py +98 -0
- octostar/models/tag_entities_response_401.py +74 -0
- octostar/models/toast_level.py +11 -0
- octostar/models/toast_response_401.py +74 -0
- octostar/models/undeploy_app_response_401.py +74 -0
- octostar/models/update_processing_status_response_200.py +82 -0
- octostar/models/update_processing_status_response_400.py +82 -0
- octostar/models/update_processing_status_response_500.py +82 -0
- octostar/models/upsert_entities_response_401.py +74 -0
- octostar/models/upsert_entity.py +114 -0
- octostar/models/upsert_entity_base.py +266 -0
- octostar/models/upsert_entity_relationships_item.py +107 -0
- octostar/py.typed +1 -0
- octostar/types.py +54 -0
- octostar/utils/__init__.py +15 -0
- octostar/utils/chat/__init__.py +0 -0
- octostar/utils/chat/chat.py +513 -0
- octostar/utils/chat/detokenize.py +105 -0
- octostar/utils/chat/get_default_model.py +50 -0
- octostar/utils/chat/list_models.py +91 -0
- octostar/utils/chat/tokenize.py +105 -0
- octostar/utils/commons.py +226 -0
- octostar/utils/exceptions.py +134 -0
- octostar/utils/jobs/__init__.py +0 -0
- octostar/utils/jobs/apps/__init__.py +0 -0
- octostar/utils/jobs/apps/deploy_app.py +81 -0
- octostar/utils/jobs/apps/execute_app_job.py +114 -0
- octostar/utils/jobs/apps/get_app_logs.py +113 -0
- octostar/utils/jobs/apps/get_app_secret.py +102 -0
- octostar/utils/jobs/apps/get_apps_url.py +73 -0
- octostar/utils/jobs/apps/list_app_jobs.py +62 -0
- octostar/utils/jobs/apps/list_apps.py +126 -0
- octostar/utils/jobs/apps/undeploy_app.py +48 -0
- octostar/utils/jobs/get_job_logs.py +113 -0
- octostar/utils/jobs/get_job_progress.py +76 -0
- octostar/utils/jobs/kill_job.py +47 -0
- octostar/utils/jobs/set_job_progress.py +67 -0
- octostar/utils/meta/__init__.py +0 -0
- octostar/utils/meta/get_version.py +30 -0
- octostar/utils/meta/get_whoami.py +30 -0
- octostar/utils/notifications/__init__.py +0 -0
- octostar/utils/notifications/delete_stream.py +58 -0
- octostar/utils/notifications/get_my_subscriptions.py +49 -0
- octostar/utils/notifications/publish_notification.py +73 -0
- octostar/utils/notifications/pull_event_from_stream.py +63 -0
- octostar/utils/notifications/pull_events_from_stream.py +64 -0
- octostar/utils/notifications/push_event_to_stream.py +109 -0
- octostar/utils/notifications/push_events_to_stream.py +137 -0
- octostar/utils/notifications/toast.py +92 -0
- octostar/utils/ontology/__init__.py +10 -0
- octostar/utils/ontology/fetch_ontology_data.py +141 -0
- octostar/utils/ontology/get_ontologies.py +55 -0
- octostar/utils/ontology/multiquery_ontology.py +287 -0
- octostar/utils/ontology/query_ontology.py +186 -0
- octostar/utils/pipeline/__init__.py +1 -0
- octostar/utils/pipeline/get_processing_status.py +230 -0
- octostar/utils/pipeline/update_processing_status.py +286 -0
- octostar/utils/search/__init__.py +11 -0
- octostar/utils/search/bulk_update.py +138 -0
- octostar/utils/search/count.py +117 -0
- octostar/utils/search/get_entity_annotations.py +304 -0
- octostar/utils/search/get_index_definition.py +111 -0
- octostar/utils/search/multi_search.py +129 -0
- octostar/utils/workspace/__init__.py +0 -0
- octostar/utils/workspace/delete_entities.py +247 -0
- octostar/utils/workspace/delete_entity.py +81 -0
- octostar/utils/workspace/delete_relationship.py +78 -0
- octostar/utils/workspace/delete_relationships.py +85 -0
- octostar/utils/workspace/delete_temporary_blob.py +85 -0
- octostar/utils/workspace/extract_entities.py +140 -0
- octostar/utils/workspace/get_filepath_from_item.py +85 -0
- octostar/utils/workspace/get_filepaths_from_items.py +100 -0
- octostar/utils/workspace/get_files_tree.py +102 -0
- octostar/utils/workspace/get_item_from_filepath.py +102 -0
- octostar/utils/workspace/get_items_from_filepaths.py +108 -0
- octostar/utils/workspace/linkcharts/__init__.py +0 -0
- octostar/utils/workspace/linkcharts/create_linkchart.py +241 -0
- octostar/utils/workspace/permissions/PermissionLevel.py +8 -0
- octostar/utils/workspace/permissions/__init__.py +1 -0
- octostar/utils/workspace/permissions/get_permissions.py +81 -0
- octostar/utils/workspace/read_attachment.py +284 -0
- octostar/utils/workspace/read_file.py +113 -0
- octostar/utils/workspace/read_temporary_blob.py +428 -0
- octostar/utils/workspace/saved_searches/__init__.py +0 -0
- octostar/utils/workspace/saved_searches/create_saved_search.py +183 -0
- octostar/utils/workspace/tags/__init__.py +0 -0
- octostar/utils/workspace/tags/delete_tag_from_entities.py +96 -0
- octostar/utils/workspace/tags/tag_entities.py +175 -0
- octostar/utils/workspace/upsert_entities.py +268 -0
- octostar/utils/workspace/upsert_entity.py +110 -0
- octostar/utils/workspace/upsert_relationship.py +128 -0
- octostar/utils/workspace/upsert_relationships.py +194 -0
- octostar/utils/workspace/write_attachment.py +263 -0
- octostar/utils/workspace/write_file.py +335 -0
- octostar/utils/workspace/write_temporary_blob.py +218 -0
- octostar_python_client-0.1.759.dist-info/METADATA +159 -0
- octostar_python_client-0.1.759.dist-info/RECORD +257 -0
- octostar_python_client-0.1.759.dist-info/WHEEL +5 -0
- octostar_python_client-0.1.759.dist-info/licenses/LICENSE +21 -0
- octostar_python_client-0.1.759.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,159 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: octostar-python-client
|
|
3
|
+
Version: 0.1.759
|
|
4
|
+
Summary: A client library for accessing Octostar API
|
|
5
|
+
Author-email: Octostar <systems@octostar.com>
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Project-URL: Homepage, https://octostar.com
|
|
8
|
+
Project-URL: Repository, https://github.com/Octostarco/octostar-api
|
|
9
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
10
|
+
Classifier: Intended Audience :: Developers
|
|
11
|
+
Classifier: Natural Language :: English
|
|
12
|
+
Classifier: Operating System :: OS Independent
|
|
13
|
+
Classifier: Programming Language :: Python :: 3
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
19
|
+
Classifier: Topic :: Software Development :: Libraries
|
|
20
|
+
Requires-Python: >=3.9
|
|
21
|
+
Description-Content-Type: text/markdown
|
|
22
|
+
License-File: LICENSE
|
|
23
|
+
Requires-Dist: httpx<0.28.0,>=0.20.0
|
|
24
|
+
Requires-Dist: attrs>=21.3.0
|
|
25
|
+
Requires-Dist: python-dateutil<3,>=2.8.0
|
|
26
|
+
Requires-Dist: PyJWT<3,>=2.0.0
|
|
27
|
+
Requires-Dist: python-dotenv<2,>=1.0.0
|
|
28
|
+
Requires-Dist: tenacity<9,>=8.3.0
|
|
29
|
+
Requires-Dist: aiofiles>=22.0.0
|
|
30
|
+
Requires-Dist: pytimeparse<2,>=1.1.0
|
|
31
|
+
Provides-Extra: streamlit
|
|
32
|
+
Requires-Dist: octostar-streamlit<1,>=0.1.26; extra == "streamlit"
|
|
33
|
+
Provides-Extra: test
|
|
34
|
+
Requires-Dist: pytest>=7.0; extra == "test"
|
|
35
|
+
Requires-Dist: pytest-asyncio>=0.21; extra == "test"
|
|
36
|
+
Dynamic: license-file
|
|
37
|
+
|
|
38
|
+
# octostar-python-client
|
|
39
|
+
A client library for accessing Octostar API
|
|
40
|
+
|
|
41
|
+
## Usage
|
|
42
|
+
First, create a client:
|
|
43
|
+
|
|
44
|
+
```python
|
|
45
|
+
from octostar import Client
|
|
46
|
+
|
|
47
|
+
client = Client(base_url="https://api.example.com")
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
If the endpoints you're going to hit require authentication, use `AuthenticatedClient` instead:
|
|
51
|
+
|
|
52
|
+
```python
|
|
53
|
+
from octostar import AuthenticatedClient
|
|
54
|
+
|
|
55
|
+
client = AuthenticatedClient(base_url="https://api.example.com", token="SuperSecretToken")
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
Now call your endpoint and use your models:
|
|
59
|
+
|
|
60
|
+
```python
|
|
61
|
+
from octostar.models import MyDataModel
|
|
62
|
+
from octostar.api.my_tag import get_my_data_model
|
|
63
|
+
from octostar.types import Response
|
|
64
|
+
|
|
65
|
+
my_data: MyDataModel = get_my_data_model.sync(client=client)
|
|
66
|
+
# or if you need more info (e.g. status_code)
|
|
67
|
+
response: Response[MyDataModel] = get_my_data_model.sync_detailed(client=client)
|
|
68
|
+
```
|
|
69
|
+
|
|
70
|
+
Or do the same thing with an async version:
|
|
71
|
+
|
|
72
|
+
```python
|
|
73
|
+
from octostar.models import MyDataModel
|
|
74
|
+
from octostar.api.my_tag import get_my_data_model
|
|
75
|
+
from octostar.types import Response
|
|
76
|
+
|
|
77
|
+
my_data: MyDataModel = await get_my_data_model.asyncio(client=client)
|
|
78
|
+
response: Response[MyDataModel] = await get_my_data_model.asyncio_detailed(client=client)
|
|
79
|
+
```
|
|
80
|
+
|
|
81
|
+
By default, when you're calling an HTTPS API it will attempt to verify that SSL is working correctly. Using certificate verification is highly recommended most of the time, but sometimes you may need to authenticate to a server (especially an internal server) using a custom certificate bundle.
|
|
82
|
+
|
|
83
|
+
```python
|
|
84
|
+
client = AuthenticatedClient(
|
|
85
|
+
base_url="https://internal_api.example.com",
|
|
86
|
+
token="SuperSecretToken",
|
|
87
|
+
verify_ssl="/path/to/certificate_bundle.pem",
|
|
88
|
+
)
|
|
89
|
+
```
|
|
90
|
+
|
|
91
|
+
You can also disable certificate validation altogether, but beware that **this is a security risk**.
|
|
92
|
+
|
|
93
|
+
```python
|
|
94
|
+
client = AuthenticatedClient(
|
|
95
|
+
base_url="https://internal_api.example.com",
|
|
96
|
+
token="SuperSecretToken",
|
|
97
|
+
verify_ssl=False
|
|
98
|
+
)
|
|
99
|
+
```
|
|
100
|
+
|
|
101
|
+
There are more settings on the generated `Client` class which let you control more runtime behavior, check out the docstring on that class for more info.
|
|
102
|
+
|
|
103
|
+
Things to know:
|
|
104
|
+
1. Every path/method combo becomes a Python module with four functions:
|
|
105
|
+
1. `sync`: Blocking request that returns parsed data (if successful) or `None`
|
|
106
|
+
1. `sync_detailed`: Blocking request that always returns a `Request`, optionally with `parsed` set if the request was successful.
|
|
107
|
+
1. `asyncio`: Like `sync` but async instead of blocking
|
|
108
|
+
1. `asyncio_detailed`: Like `sync_detailed` but async instead of blocking
|
|
109
|
+
|
|
110
|
+
1. All path/query params, and bodies become method arguments.
|
|
111
|
+
1. If your endpoint had any tags on it, the first tag will be used as a module name for the function (my_tag above)
|
|
112
|
+
1. Any endpoint which did not have a tag will be in `octostar.api.default`
|
|
113
|
+
|
|
114
|
+
## Installing
|
|
115
|
+
|
|
116
|
+
```bash
|
|
117
|
+
pip install octostar-python-client
|
|
118
|
+
```
|
|
119
|
+
|
|
120
|
+
### Testing a PR build (TestPyPI)
|
|
121
|
+
|
|
122
|
+
Every pull request that touches the SDK publishes a pre-release to
|
|
123
|
+
[TestPyPI](https://test.pypi.org/project/octostar-python-client/) versioned
|
|
124
|
+
`0.0.<pr>.dev<run_number>` (e.g. `0.0.898.dev1319`) — the `<pr>` segment is the
|
|
125
|
+
PR number, so you can find the build for your PR. Use it to test SDK changes
|
|
126
|
+
before they merge.
|
|
127
|
+
|
|
128
|
+
TestPyPI does not host third-party dependencies (`httpx`, `tenacity`, …), so
|
|
129
|
+
point the resolver at PyPI as an extra index for them:
|
|
130
|
+
|
|
131
|
+
```bash
|
|
132
|
+
# pip
|
|
133
|
+
pip install \
|
|
134
|
+
--index-url https://test.pypi.org/simple/ \
|
|
135
|
+
--extra-index-url https://pypi.org/simple/ \
|
|
136
|
+
octostar-python-client==0.0.<pr>.dev<N>
|
|
137
|
+
```
|
|
138
|
+
|
|
139
|
+
```bash
|
|
140
|
+
# uv (--index-strategy so uv considers both indexes per-package)
|
|
141
|
+
uv pip install \
|
|
142
|
+
--index-url https://test.pypi.org/simple/ \
|
|
143
|
+
--extra-index-url https://pypi.org/simple/ \
|
|
144
|
+
--index-strategy unsafe-best-match \
|
|
145
|
+
octostar-python-client==0.0.<pr>.dev<N>
|
|
146
|
+
```
|
|
147
|
+
|
|
148
|
+
## Releasing
|
|
149
|
+
|
|
150
|
+
Releases are automated. On every merge to `main`, the octostar-api release
|
|
151
|
+
pipeline builds this package and publishes it to PyPI, stamped with the
|
|
152
|
+
octostar-api version. There is no manual publish step.
|
|
153
|
+
|
|
154
|
+
To build the package locally for development:
|
|
155
|
+
|
|
156
|
+
```bash
|
|
157
|
+
./scripts/sdk/build.sh # writes octostar_python_client/dist/*.whl and *.tar.gz
|
|
158
|
+
pip install octostar_python_client/dist/*.whl
|
|
159
|
+
```
|
|
@@ -0,0 +1,257 @@
|
|
|
1
|
+
octostar/__init__.py,sha256=gvCTg2NVTfkEGf-tp1WWGd552dyNSPJfTPgLtGNxuXQ,187
|
|
2
|
+
octostar/client.py,sha256=DlJUkcGK6WE4XWQvmrJPXxj917BisJxAzp8TjPXebSw,16271
|
|
3
|
+
octostar/errors.py,sha256=-HLCEeXKC-uvjHBtoBTKD7Z271csI2gJ86ylGMM1VxY,1926
|
|
4
|
+
octostar/py.typed,sha256=8ZJUsxZiuOy1oJeVhsTWQhTG_6pTVHVXk5hJL79ebTk,25
|
|
5
|
+
octostar/types.py,sha256=ocDxlnipFINbKQspGW91J1FSDsGSBTOUhIahn1vm-vY,1034
|
|
6
|
+
octostar/api/__init__.py,sha256=zTSiG_ujSjAqWPyc435YXaX9XTlpMjiJWBbV-f-YtdA,45
|
|
7
|
+
octostar/api/apps/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
8
|
+
octostar/api/apps/deploy_app.py,sha256=30BJCSSTxDUHQE9Ry-T--Z2Mnfg732kQuHV01s9iKiQ,6092
|
|
9
|
+
octostar/api/apps/execute_app_job.py,sha256=iCJY9K4xUPkfdCMIx2atBfdhhye0As1j_wAbIheKpJw,5588
|
|
10
|
+
octostar/api/apps/get_app_logs.py,sha256=2h_tMQB1xcyBVGDccpo3uA76tWZCI09gPvfh9GiMMC4,6105
|
|
11
|
+
octostar/api/apps/get_apps_url.py,sha256=T7c98EOVUGOtDYGOT8pYKdJdKNdkwHOZ_bfMwolqumQ,5463
|
|
12
|
+
octostar/api/apps/get_job_logs.py,sha256=rzJ47KvKr9W4GDQk_ucTIy-GJvq46AKHKr09CWgiIj8,6074
|
|
13
|
+
octostar/api/apps/get_job_progress.py,sha256=3dfTPlVeMR_4KMyyDWKgQjIHqYhmXunrexikfJE5hGI,4462
|
|
14
|
+
octostar/api/apps/kill_job.py,sha256=2J7Hinwj900qChr19Wk2Jm5RXMCkzBYFjTVa1-4Y9ak,4319
|
|
15
|
+
octostar/api/apps/list_app_jobs.py,sha256=Biy1iiO-hLaeWHXHEzTutKiQb7WiapPvJz9uutcAoi0,9759
|
|
16
|
+
octostar/api/apps/list_apps.py,sha256=fyGFiVpE-mOKqaQA7T9QY4xQQJskRyYf6R-22bBqywk,8394
|
|
17
|
+
octostar/api/apps/set_job_progress.py,sha256=L7scm1S_5fjC9uEGuloD-8MFJdpyWTGi5mzmg-wwWVk,6315
|
|
18
|
+
octostar/api/apps/undeploy_app.py,sha256=kkqIUMhxJ5RZLUT_nWgg1YqqicQ3ikDLZ6BChYP66kk,4379
|
|
19
|
+
octostar/api/metadata/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
20
|
+
octostar/api/metadata/get_version.py,sha256=3tcqyKJfSpnK-xq7k0KeBg1tW6gw3WKI8A6OIJcfAGY,7373
|
|
21
|
+
octostar/api/metadata/get_whoami.py,sha256=LCSyCPp6c4pHGw48iYAvLgO2ZAFF9wXVQ_cB8nYAncI,7323
|
|
22
|
+
octostar/api/notifications/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
23
|
+
octostar/api/notifications/delete_stream.py,sha256=WRl-GtZhY5MF8CY9H3A_HrLSSymJhof6skAO8o9rTdc,6890
|
|
24
|
+
octostar/api/notifications/get_subscriptions.py,sha256=kTn6o9NWGuEilY_4M6WvTAMORUNlscyyk1dJV1XOJaM,7664
|
|
25
|
+
octostar/api/notifications/publish_notification.py,sha256=Fx4kC5GxmIf_oUjfDhQuvOVMsI-KmPobWBedQvh94rg,9024
|
|
26
|
+
octostar/api/notifications/pull_events_from_stream.py,sha256=uqkBWLa3plCX8qnbLjAna8xTkSBb5LXmY0m1vWkN8-g,9216
|
|
27
|
+
octostar/api/notifications/push_event_to_stream.py,sha256=iczAfsHXQLJaGSgWDkhlJmRw2SSkBzCLWur3T0HWLsM,8562
|
|
28
|
+
octostar/api/notifications/toast.py,sha256=AZadpPnaTXdEwAa2xcVBnI3zdWDjFRbKLj2bIl45m2w,9061
|
|
29
|
+
octostar/api/ontology/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
30
|
+
octostar/api/ontology/fetch_ontology_data.py,sha256=FSVdB-ilMCD0063D-laHujwCqDSwjrxDbwYOVJsFw6k,8344
|
|
31
|
+
octostar/api/ontology/get_ontologies.py,sha256=ozu1GsS7ujno5dIr7mG51IalxK87oAZk2sjwIiNs7fU,7604
|
|
32
|
+
octostar/api/ontology/multi_query.py,sha256=FfEp_cjaXRURYaS7WyjHVR_8G-365kiabBcLu1FWpz0,9536
|
|
33
|
+
octostar/api/ontology/query.py,sha256=zhJGHdCug8aXyGVLxacsQVlA9NfCJDSQvI0DzdnyAz4,9097
|
|
34
|
+
octostar/api/pipeline/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
35
|
+
octostar/api/pipeline/get_processing_status.py,sha256=ywx7MSrue4XsMvWxjPmAiwHNecXnxLVXh2oVpotDW3g,5941
|
|
36
|
+
octostar/api/pipeline/update_processing_status.py,sha256=_EFNcnGQqli1lc7kJqRy1tELqZ7qJldwKunWuzfjWYo,5121
|
|
37
|
+
octostar/api/search/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
38
|
+
octostar/api/search/get_annotations.py,sha256=zdAX5pDcAejeFuk-Lto4_vqs4nektBS8ZOeXc3-DIE0,4292
|
|
39
|
+
octostar/api/workspace_data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
40
|
+
octostar/api/workspace_data/delete_blob.py,sha256=n3lsGJgwhcUi_jUVl8QjnIaJjRMVUbqhwSP0dGC9yWc,6601
|
|
41
|
+
octostar/api/workspace_data/delete_entities.py,sha256=2LJbFf_Dw_Q4tgr9HQnJRQx7Dfi0fVKThZ2MvUjGIU8,10314
|
|
42
|
+
octostar/api/workspace_data/download_blob.py,sha256=vc59lcWsaBrWqdH2p-Bx_1uXElwMwUt9og5JVfA32NY,8076
|
|
43
|
+
octostar/api/workspace_data/get_attachment.py,sha256=yftPxifTF95qeLU18VOLcgpAb1EAFpCzJlT1TRZgirE,12160
|
|
44
|
+
octostar/api/workspace_data/get_files_tree.py,sha256=zK369_pWNMCFbBY2AVxjOeikAZR59DDsV5N0u318-7I,13233
|
|
45
|
+
octostar/api/workspace_data/upload_blob.py,sha256=8QNcch15EIvdrIcavYSCZR2Z52Bo4MfA2Oe8O5V5ZyE,8102
|
|
46
|
+
octostar/api/workspace_data/upsert_entities.py,sha256=dqdiLP7sG24GBToDBFe5-fQzWCVEczRepHrBua7o6cI,9365
|
|
47
|
+
octostar/api/workspace_permissions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
48
|
+
octostar/api/workspace_permissions/get_permissions.py,sha256=2jaTA-Fxg531hum87BHTHYwJVAlgEaedN5zfslL3VPM,10856
|
|
49
|
+
octostar/api/workspace_tags/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
50
|
+
octostar/api/workspace_tags/delete_tag_from_entities.py,sha256=rtT6GdB3n6vZgKJmgMY9JN60nYDpXJgfmuo2Wyka5b8,4095
|
|
51
|
+
octostar/api/workspace_tags/tag_entities.py,sha256=67IzsqbDricvBbydPVfeEdRvsLqGH3XVQ_t27DAAG4M,5061
|
|
52
|
+
octostar/models/__init__.py,sha256=LrTz-Ui5qdJtAL-g72t1HDlYdmExfXvxW6Kv5jsV4d0,11161
|
|
53
|
+
octostar/models/acknowledgement.py,sha256=CIiyZPn8ZzU2nI7juaGPBMkW0t_sSiMleKfWBpS9zrE,1678
|
|
54
|
+
octostar/models/acknowledgement_with_data.py,sha256=r84oKovMiea6CWpNNvOR2dD7vIICpELiRk8TAcKS31I,1956
|
|
55
|
+
octostar/models/app_status.py,sha256=pY_epiohibJVWZWIMpNIp3ylbAjTPnd281K5Hjn2oz8,9178
|
|
56
|
+
octostar/models/app_status_annotations.py,sha256=wWtWRsneSBz_OuGBGrnO_y1Ge7HC3-aIT3IX0YQGWIM,1588
|
|
57
|
+
octostar/models/app_status_labels.py,sha256=tziOWrSsMqRdIYBL7DQqTW39YvbD39z3xzgaIpcZpLM,1881
|
|
58
|
+
octostar/models/app_with_url.py,sha256=_LDTK7zMC15aQROqTHtV00wGhdFVhmNeIFXBanE9lnI,1895
|
|
59
|
+
octostar/models/child_processing_status.py,sha256=zOb8b8w_UkhZC-VURyG8OsXF2CiGDto8nCQ5DhdzavE,3862
|
|
60
|
+
octostar/models/delete_entities_response_401.py,sha256=qvQGHEaPprQppaszQo9GTOuCy6KuGCDkm1NdAdb46Ek,1723
|
|
61
|
+
octostar/models/delete_entities_response_409.py,sha256=GZNm9NurBxoh4Z5IG0VMF9DknXlEH5SLa4spnylA3F0,1973
|
|
62
|
+
octostar/models/delete_entities_response_500.py,sha256=BFPgnzbii-AnEErD91po4NUBIVopI6XMZFK4YLzOITY,1973
|
|
63
|
+
octostar/models/delete_stream_response_401.py,sha256=2PR7IQLEqNu9nuB6O69ElvPErvM_9BDZgrT2s1gq5jA,1713
|
|
64
|
+
octostar/models/delete_tag_from_entities_response_401.py,sha256=_BvxcSpmGQKIej7UOuLX_CDbKVdOowCypejhzuMwM9I,1764
|
|
65
|
+
octostar/models/deploy_app_json_body.py,sha256=SHnIKXOCcv2Sb4rkgGPt6rfcO7-KvsDhk5UUkjunp6k,2443
|
|
66
|
+
octostar/models/deploy_app_json_body_secrets.py,sha256=3rL4ECLHTUSUab0fUtq8pYDIx35Y7ziVvRypwuD206k,1471
|
|
67
|
+
octostar/models/deploy_app_response_200.py,sha256=34cfI-a0xwXXrLPaqjZj8g6vAxlUJOlSqfFKtGZ1H3w,2569
|
|
68
|
+
octostar/models/deploy_app_response_200_data.py,sha256=CCBmBrvl-NVScgbd4OxtfEK1wCGoyH_OaIUMLBKihxk,1368
|
|
69
|
+
octostar/models/deploy_app_response_400.py,sha256=LgBZgrEAW-3iYEwQyJCYtsQYtV0FNtF1CKrxkxB4Ec4,1948
|
|
70
|
+
octostar/models/deploy_app_response_403.py,sha256=Oe5jYSe0viQfX-tgV8aPhF2fPLeLmLufDB5bgmRm-h0,1948
|
|
71
|
+
octostar/models/deploy_app_response_404.py,sha256=xw8VLjCCtQ5A09uz3Xl3uQukqLEAbQP55XSRETGWpkk,1948
|
|
72
|
+
octostar/models/deploy_app_response_409.py,sha256=GXHVrK7wROgCCm2nlYYQxbielt-h78eZAeFCOPxCDC4,1948
|
|
73
|
+
octostar/models/deploy_app_response_500.py,sha256=SDmIdNMd311gbqiaxzV-e6Q3Ifdg1C7bXndiQ6Vaq4Y,1948
|
|
74
|
+
octostar/models/entity.py,sha256=1sTAFjdXqEScvtS3WjGsl4bQdmAOjBS0EB4lfiQQeDU,1778
|
|
75
|
+
octostar/models/entity_response.py,sha256=0la1Tq6lE2PNNKtTpOiedq_RO1-6_UcSEhTZbA3OSHE,2545
|
|
76
|
+
octostar/models/entity_response_s3_urls.py,sha256=v0efWY29Fd0HGpxs_sWjn4wM8OkWShE4LqN4MJUXvyU,2465
|
|
77
|
+
octostar/models/entity_response_s3_urls_additional_property.py,sha256=OXyM9m5Ua_w3R4kcv71HmntQ1-7Akgp_HxC5VhlQ7YM,2942
|
|
78
|
+
octostar/models/entity_response_s3_urls_additional_property_fields.py,sha256=xRiHNeogJAPuDgkMLZs-zE_X_Arc8z1lrmThRgeOgK4,3385
|
|
79
|
+
octostar/models/execute_app_job_json_body.py,sha256=q7mAACZy6rQLwh9NEtVqbOwIsPqMkYy-ciGeglKCUwA,5110
|
|
80
|
+
octostar/models/execute_app_job_json_body_annotation.py,sha256=72o5P6O_MfkpU-V4oFWswvzy5QC-GbaV0lgqojDtj_s,1575
|
|
81
|
+
octostar/models/execute_app_job_response_401.py,sha256=Z-FAdorW1wzxucNlTsyjBHeQC7uYKm-1-E3iswTfKxc,1721
|
|
82
|
+
octostar/models/fetch_ontology_data_response_200.py,sha256=PFvXq_tjVu3CGpIGlPIjCFHo8PyOJDWrPailPr4XKI4,1388
|
|
83
|
+
octostar/models/fetch_ontology_data_response_401.py,sha256=9Dc6ad-cK8LxdeU-UPmilcszjPC1cDzfGQ4V8_Z9ruU,1741
|
|
84
|
+
octostar/models/fetch_ontology_data_response_500.py,sha256=Cvot-WahyilFeaVxX4ac11D5YPMQhYupRwz7BfA6RK4,2002
|
|
85
|
+
octostar/models/get_app_logs_response_401.py,sha256=68yM49VEZbdn7oZOgiNnPCWaqMolQ0gFdIKB2YSZFyc,1706
|
|
86
|
+
octostar/models/get_app_logs_response_404.py,sha256=PKt-o_mZ1QGD0x72skbdEu9KYii-V1tTRosB-ovXYlo,1684
|
|
87
|
+
octostar/models/get_app_logs_response_500.py,sha256=thqpZexmbC947f8fWpp1SHUv_m6UOS5xrS9bI31LmMc,1967
|
|
88
|
+
octostar/models/get_apps_url_json_body.py,sha256=dCEsvHfRI8dzXXE7pZU6z8XAb8uppgGWqRmjKdnb4n8,1676
|
|
89
|
+
octostar/models/get_apps_url_response_401.py,sha256=JuH3AMYyORk2FldzmXTcKaTm9kp9ENfRVCGs-yNS96Q,1706
|
|
90
|
+
octostar/models/get_apps_url_response_500.py,sha256=UfbSl1QF65W1WXAoKIlycWopIznQs0hpQsgzvU2apog,1967
|
|
91
|
+
octostar/models/get_attachment_response_200.py,sha256=tNZqwCyNlVuOolOZOVQfzr3lMn9roZA6d_evgLOxETw,1674
|
|
92
|
+
octostar/models/get_attachment_response_401.py,sha256=iv5XEm5HSYFopup1iTKVAGJL2MAb4Fci0EdeZJrYvJM,1718
|
|
93
|
+
octostar/models/get_files_tree_response_200.py,sha256=qRYbkX0VVhJp_RXJqHyQsKTKd9G17E2En0keH_zMe7Q,2935
|
|
94
|
+
octostar/models/get_files_tree_response_200_status.py,sha256=uJ5k7JDlMZVhaOjG7jFBaVftSdoTWQKNk9f4wsvGmOk,158
|
|
95
|
+
octostar/models/get_files_tree_response_400.py,sha256=ytfW8DoUJETcbtnxblzyzWX9KCOcD8Us1_GdeP20xs0,3109
|
|
96
|
+
octostar/models/get_files_tree_response_400_data.py,sha256=uhuNkZIL2Rz-xHnF29X0deR14w5L1zZZIjma4hwcCTM,1386
|
|
97
|
+
octostar/models/get_files_tree_response_400_status.py,sha256=Cgv0pEkDCQjEC4tXoPmt4GmyZYn8urEshhut41GgSKE,158
|
|
98
|
+
octostar/models/get_files_tree_response_401.py,sha256=wOvS4bLvNXMLZrU4pcTzRu1_GHL8lHX_vSOTL-Dc78s,1716
|
|
99
|
+
octostar/models/get_files_tree_response_500.py,sha256=qWac8NdNA0_3g9xLselfAATPFq2kpSupDQjjpdqP1EI,3109
|
|
100
|
+
octostar/models/get_files_tree_response_500_data.py,sha256=dTLy2H-LfrL8i1AxzRls574YR4s4msxJ0bZx4n5f_Pk,1386
|
|
101
|
+
octostar/models/get_files_tree_response_500_status.py,sha256=-9MD5Nn00-LZvuT4UtoiSrbNsDUPkCkrzJrCwuY8xrk,158
|
|
102
|
+
octostar/models/get_job_logs_response_401.py,sha256=iEWe2DdAfflooTFj_bjuCZ4L-3UE4KNCSRFS8vArPvA,1706
|
|
103
|
+
octostar/models/get_job_logs_response_404.py,sha256=5va1a_LsyBLq_5aEESX1JcoZ1PSWuas0inMapara9nQ,1684
|
|
104
|
+
octostar/models/get_job_logs_response_500.py,sha256=HaQ7d0qXzn2dSqdt8EQi0DWf2L67bsp1lpssHVNvA0c,1967
|
|
105
|
+
octostar/models/get_job_progress_response_401.py,sha256=KrUOa-sTpwrqj8jxhRZ8L1DIuOpHuHln1Lw_GCdXxT0,1726
|
|
106
|
+
octostar/models/get_object_response_401.py,sha256=pTb8gQd67GCEq5ZNB2aB8V2VihlmBEitQiczJax2sNI,1698
|
|
107
|
+
octostar/models/get_ontologies_response_401.py,sha256=-ByDzSsoHtwVfAxlH-YNQBUqdqeu88HF6Dt_l1z2ePA,1718
|
|
108
|
+
octostar/models/get_ontologies_response_500.py,sha256=JPUgzvd1d1GKa4KMvTwUUMXgwgZe-XV9g_ISRAGfyHo,1946
|
|
109
|
+
octostar/models/get_permissions_response_200.py,sha256=hhtu6pCHaaoD8gFKfhY-Ft8Nu9bJ282KdcyGj1XXK5w,2564
|
|
110
|
+
octostar/models/get_permissions_response_400.py,sha256=sy1L65OacPmfqqPw7XaTITZV6ykmSgMg9DomxzzduO8,1973
|
|
111
|
+
octostar/models/get_permissions_response_401.py,sha256=jbQ0z33gB7Hlcf6VWDPa9XgNKFFsKX2y50dSL-UBB4k,1723
|
|
112
|
+
octostar/models/get_permissions_response_500.py,sha256=rOtMReuITLY7rLstjiiN2cpgpUY-1I9Lku_fNxTRqSg,1973
|
|
113
|
+
octostar/models/get_processing_status_response_200.py,sha256=xts1JFE5ttHKPqFA2OsW9QEATy08q9KL7By3eBKyKeo,2870
|
|
114
|
+
octostar/models/get_processing_status_response_200_data.py,sha256=wQlEss-ivUb2bM9ljwa4SWakgTCTuDmd53DyHrFvYVk,2430
|
|
115
|
+
octostar/models/get_processing_status_response_400.py,sha256=IHCHoVyxth7ZkIe5xeN615g9mD4KwXvpLa1-ryLZQSE,2048
|
|
116
|
+
octostar/models/get_processing_status_response_500.py,sha256=r7EXZElogb3Qk1ZMWjGIzjmMpJaMjDIdJbKdM1S1zw8,2064
|
|
117
|
+
octostar/models/get_subscriptions_response_200_item.py,sha256=MBYfBBjbzCsbp_LZ0WU6tye-wbeKSWC15yfUStzOm3E,1834
|
|
118
|
+
octostar/models/get_version_response_200.py,sha256=yCWgRgmbJMoe06037OJHUUyikIUJtluon7cAUlCPPiA,1703
|
|
119
|
+
octostar/models/get_version_response_404.py,sha256=ZRdNLNvq2dTHjp3-K-ECzhgsBVXenJubR8wAyGmLuy8,1681
|
|
120
|
+
octostar/models/get_whoami_response_200.py,sha256=bRAYIkhRKRw4QkzsXZvV7ljnWuA6Nt9ngKZVYvA6g3c,4759
|
|
121
|
+
octostar/models/get_whoami_response_401.py,sha256=0h4Hu4COm7dV_BPZplJus35U4X1nTbt8NwSb9Y4PvWo,1698
|
|
122
|
+
octostar/models/insert_entity.py,sha256=C2w81W_HhfnQuWDzaNG_6RCSUZuiWBol_NH4IQeFmi0,3410
|
|
123
|
+
octostar/models/insert_entity_base.py,sha256=3x4x8RDyNJEa4YaC_CL0_EUBbOVvKJ6aSWJq6sIvC4M,9655
|
|
124
|
+
octostar/models/insert_entity_relationships_item.py,sha256=uYTaPipEU5g-BYkeA7qJILERkB44VyR9tSHs7xAlTf0,3046
|
|
125
|
+
octostar/models/insert_entity_request.py,sha256=w-KHQWZ3hphsh6AsVkXxZX1pHv502m2kZOP-2__5ZqI,2232
|
|
126
|
+
octostar/models/internal_server_error.py,sha256=ut-gMcMdKlJNFdAMAOeKjfiGES0pHiZclUJ4JpvaEms,1951
|
|
127
|
+
octostar/models/job_execution_result.py,sha256=ChBHXjVKTr6LJ9BMx-RFeOeFo5_CK5_1hg1-ghN3msc,4456
|
|
128
|
+
octostar/models/job_status.py,sha256=JARIrTYxig9Af91yxy4j6vOBGfOQ9vzuXfwjpD_gO8o,6381
|
|
129
|
+
octostar/models/job_status_labels.py,sha256=yyrIBoWJE4swBsDCZPcJxV8pbnlSDxQXUKDlZUm-0Z0,1342
|
|
130
|
+
octostar/models/job_with_url.py,sha256=2c1JrJ2phqn89bv8-u8j4cPO8BC_uIHMtZ-MZD5xKHk,1895
|
|
131
|
+
octostar/models/kill_job_response_401.py,sha256=6pQTWoahMzxv6Gb8sX1YSKLJ8ex5d6-pVvl_Fox8D4M,1688
|
|
132
|
+
octostar/models/list_app_jobs_response_401.py,sha256=Vl5-ZrTaHGYIiKEBe8nDIKdvR6XAVqCstqgGQ4KoxaE,1711
|
|
133
|
+
octostar/models/list_app_jobs_response_500.py,sha256=uMxC9qVXjdKRaLrY7rnqOWfzGJ7R8Zr4LuSji0ovWjE,1972
|
|
134
|
+
octostar/models/list_apps_response_401.py,sha256=1FR1mb6rkj-gqjCtz5zMyIIInu0BZwSOddt1H7-J8Fg,1693
|
|
135
|
+
octostar/models/list_apps_response_500.py,sha256=yUJ0aGVJFx1RJ9MgK9it3mI8Z26Ivg4C6H_u0v6u-sA,1954
|
|
136
|
+
octostar/models/multi_query_json_body.py,sha256=F7BPacC6JEoO-v9QTwiGkVkIuuDBFXigvbSMCa7WrkU,2451
|
|
137
|
+
octostar/models/multi_query_json_body_queries_item.py,sha256=AhctYZ3TVqQ87L1FUJOodW43OfNKrkPTDuvw-pxPR7A,1788
|
|
138
|
+
octostar/models/multi_query_response_400.py,sha256=zGlRIBzp1pPA5NG8dc92M9tPgXPh5hpJGpn8o8JDTd4,1920
|
|
139
|
+
octostar/models/multi_query_response_401.py,sha256=nSqtirgclcYNitYewu_TpWjgX5ORMSU0tfVIVuCDOjE,1703
|
|
140
|
+
octostar/models/not_found_error.py,sha256=7AIVz7dzgEPagcEqptP6kcR5G6PIU3Cfz0shWYbIPaY,1638
|
|
141
|
+
octostar/models/octostar_event.py,sha256=91TsLU9uuGdazmyu_CJbmNwtwkaiE1TgALuqOjIeWcQ,2443
|
|
142
|
+
octostar/models/octostar_event_octostar_payload.py,sha256=wG7bw1VBcjYs3RPUP8ATOVljV-tsJIWv-XJDb5JS7aw,2807
|
|
143
|
+
octostar/models/octostar_event_octostar_payload_level.py,sha256=5px_inhmjRsXcAgEtx-4Cfm8SC-C7qsBBpf6taSWBhc,220
|
|
144
|
+
octostar/models/os_notification.py,sha256=g5oBmeaWNHTgZaOvAa2KdbdDNlvVKRznxsYlF7coO1A,3261
|
|
145
|
+
octostar/models/processing_status.py,sha256=Jk_5u3gDyemFlpWVKR8SELGi36p4Tbp3IUjOgWlSHSQ,10678
|
|
146
|
+
octostar/models/processing_status_code.py,sha256=CUuAt8S3_xx2Ma-KH5hgkDnRy8BnhO95vW4iHDvLk78,297
|
|
147
|
+
octostar/models/progress_request.py,sha256=PmCGkWYfGaoDQt3pJYVY1-r8nuScQ9tb60rmdnbsEXE,1610
|
|
148
|
+
octostar/models/publish_notification_response_401.py,sha256=74s8Y9lWwLAgvcWSLqxDNGRSYMA3CWepq_0t2ERyx1o,1748
|
|
149
|
+
octostar/models/pull_events_from_stream_response_401.py,sha256=hWwYk31nR2VUUDMdPgwswcu6UmVQC5V5c6kgHyWAyFQ,1759
|
|
150
|
+
octostar/models/push_event_to_stream_response_401.py,sha256=Y_-K0mLjzDvalzAt1aOul4KCbZxWPZOYH47LVe-KPx4,1744
|
|
151
|
+
octostar/models/query_json_body.py,sha256=P-89GZFif0aW8Ly7TfrfruUYgzkvMWATl9MNqcgWiO0,2485
|
|
152
|
+
octostar/models/query_json_body_params.py,sha256=BBIroFqubwoGoXOHjvbcpDmU6IYqKV3IwX-XIgCQLNY,1340
|
|
153
|
+
octostar/models/query_response_400.py,sha256=QxTvMxtSjsbHQQwp1FvxPBPrG_hu0-gZmF1JjZ6vueE,1892
|
|
154
|
+
octostar/models/query_response_401.py,sha256=G17QLr3sU0PGL9I36lFTOUWi4_0M5oLIHNjdfwIe8bk,1675
|
|
155
|
+
octostar/models/set_job_progress_response_401.py,sha256=ZjSCMJIokDoU_dgrM0Zbk0qPppETvUBS_eD6uhWlYR0,1726
|
|
156
|
+
octostar/models/string_to_value_label_map.py,sha256=PYO_G8UZbkawI6AtWsXYjRQshaEywVOH9QzDh3EgMBY,2591
|
|
157
|
+
octostar/models/string_to_value_label_map_data.py,sha256=gHyexZ3RLXgLIqsuSYPcYKC319tX7wYaZE5sebFiWG8,2401
|
|
158
|
+
octostar/models/string_to_value_label_map_data_additional_property.py,sha256=g7srbESbsrFkz0W7IWYHYO2uvaurFeYEi0rWrp3c1nE,1858
|
|
159
|
+
octostar/models/successful_get_tags.py,sha256=4Ir3EQI-NhX3Xdo98R_HQ9dXeWifzgX6COOb07bXqP4,2609
|
|
160
|
+
octostar/models/successful_insertion.py,sha256=TSmsKVCqSPbFPfcUJaZ1Mkypv9doa5FikOlLGnjGrJE,2765
|
|
161
|
+
octostar/models/tag_entities_response_401.py,sha256=con1DT4XUp-6J4IsWDp_RLWLUnWR6NRp4rN_RTnUeCs,1708
|
|
162
|
+
octostar/models/toast_level.py,sha256=efoYs_x6hdpJC0jhqHPP_SIij9liNncl9XYDp4bgoI8,197
|
|
163
|
+
octostar/models/toast_response_401.py,sha256=w_z8HhOGA3SqBmH4vb1H4_JA_46t0tguQgTY8Qgi2R0,1675
|
|
164
|
+
octostar/models/undeploy_app_response_401.py,sha256=xlPUM6wYYT5lwr50NCfC_gY8BYEzCHSYed2I7e8lvSs,1708
|
|
165
|
+
octostar/models/update_processing_status_response_200.py,sha256=OBjUT6t9dMuqBRQDEQn_h4CMz_IattcYAd2QlOJFhb0,2081
|
|
166
|
+
octostar/models/update_processing_status_response_400.py,sha256=V6boURq--2mBiEeostdBq_EGCkqieTWhbsQOgFi9lVc,2063
|
|
167
|
+
octostar/models/update_processing_status_response_500.py,sha256=d8ib0XTuf6cxE0xoY9cuBFRU-f0a3rb-eaJeQZD0nvc,2077
|
|
168
|
+
octostar/models/upsert_entities_response_401.py,sha256=yG2-lSQKoE9spqIxZqE4wh624qRaT98kzeykpU7x5jc,1723
|
|
169
|
+
octostar/models/upsert_entity.py,sha256=QBu3vxCkHJuGzKiMl0nVIKymNX5fi2mnjlU4jg8RKGU,3410
|
|
170
|
+
octostar/models/upsert_entity_base.py,sha256=sgGhFjMD-a1HZ5v5TFlhV75tW0Imfain5UUisS4Lsoc,9655
|
|
171
|
+
octostar/models/upsert_entity_relationships_item.py,sha256=A5Ew-gSCY20IFOjdDH5cIO0TRnkKYKleafPTWZjN8CQ,3046
|
|
172
|
+
octostar/utils/__init__.py,sha256=Kqy77VTrrSMIp9sABhAzZcl5qpzuGOwEw5F5LvD-kc8,559
|
|
173
|
+
octostar/utils/commons.py,sha256=cQWNiylt5sVQraKe71nM9u17Y_awEX94hUHZN3qYTas,7276
|
|
174
|
+
octostar/utils/exceptions.py,sha256=Hyu8_Ud_EylDXEke-oUJ3ASnJ9_1SWvmgjCoRaZCzYU,5521
|
|
175
|
+
octostar/utils/chat/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
176
|
+
octostar/utils/chat/chat.py,sha256=oVBWV6G6zxwYv3G5YPyHaKtK-zQMTtOowZrZ2lIl5bk,21088
|
|
177
|
+
octostar/utils/chat/detokenize.py,sha256=vjqbMswe14Z3SqIXe_sV5e9r7KBP7shgH2eocQ-zyYU,3394
|
|
178
|
+
octostar/utils/chat/get_default_model.py,sha256=ZOwoDqGoieFbyZ2Uj01yr3qpBnzT0MHJPXh8D2HrkvI,1424
|
|
179
|
+
octostar/utils/chat/list_models.py,sha256=yLnPv3e0GxA2b8KNMowfBG8ncdaxduXjXqXjB9I-GoE,2843
|
|
180
|
+
octostar/utils/chat/tokenize.py,sha256=AqFCUCnNWGJTDUn9iiWQJwwv3AkV2bsB-ZnuxKv8DGY,3356
|
|
181
|
+
octostar/utils/jobs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
182
|
+
octostar/utils/jobs/get_job_logs.py,sha256=5K6jZSNtrFB_0R5g1xNYOwIG9VvHIcwzmyVZ2CY6fug,3237
|
|
183
|
+
octostar/utils/jobs/get_job_progress.py,sha256=jJSADCbbH_pA-IlW3ysrtFinWA1jdKTntbMPcrWEGwY,2753
|
|
184
|
+
octostar/utils/jobs/kill_job.py,sha256=nsD3DuZFRPAUZH6x-3BZTkJKvOPyTaqxBtkx7-O0T4U,1357
|
|
185
|
+
octostar/utils/jobs/set_job_progress.py,sha256=OM6W6CLdIzbF2cL7g_HP-doDyVC_4Ud_lZhMt50GIF4,1968
|
|
186
|
+
octostar/utils/jobs/apps/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
187
|
+
octostar/utils/jobs/apps/deploy_app.py,sha256=-hQXQJUxC5Trxhxz5bp5jYHCoARna-AF086XfZ7s5UQ,2577
|
|
188
|
+
octostar/utils/jobs/apps/execute_app_job.py,sha256=35VC44Dr0wVG2ojLJNMj0RJWdAnit9mwSkbHQRb8QQw,4203
|
|
189
|
+
octostar/utils/jobs/apps/get_app_logs.py,sha256=XbcfgYS6QlguHjdydLOZm8ahOLAV8shPlv-TxWB5-tU,3160
|
|
190
|
+
octostar/utils/jobs/apps/get_app_secret.py,sha256=zoOG-a4F-WZgCqxyNae6KZS1ttUvpXM2_xisWqCU1C4,2991
|
|
191
|
+
octostar/utils/jobs/apps/get_apps_url.py,sha256=e6YnqjhQSYAmMS_374-ATPqFlv8p8elweGSkxa-GQWA,2138
|
|
192
|
+
octostar/utils/jobs/apps/list_app_jobs.py,sha256=0R5Hc19jgqN-d5PrBhpwtFOPXgJAz1s9KTmTxIWANL8,2065
|
|
193
|
+
octostar/utils/jobs/apps/list_apps.py,sha256=Tvoc-xTyZPWIqT4tDxyDRUg-r85S97oIskX8r1hxxZg,4456
|
|
194
|
+
octostar/utils/jobs/apps/undeploy_app.py,sha256=GAA9ZhTTPbHARJ0D-up8ldyBF__o_McXKTYzPWVZllA,1350
|
|
195
|
+
octostar/utils/meta/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
196
|
+
octostar/utils/meta/get_version.py,sha256=9k5KISqs3bR0O0dAqHy19de2wlrzeqnNuatjIywnObo,745
|
|
197
|
+
octostar/utils/meta/get_whoami.py,sha256=j8mEeHs0KmnvVjKMj5zI6SzTXX5-3AJ7PV1dFIBieWc,779
|
|
198
|
+
octostar/utils/notifications/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
199
|
+
octostar/utils/notifications/delete_stream.py,sha256=M-n-EwEQLAONaOq34LffT6SukaascbI4ZxN07_wtIjY,1835
|
|
200
|
+
octostar/utils/notifications/get_my_subscriptions.py,sha256=mAnUjYHkBShfWkDMIR8N9CSjviSBVPpzFzX-sVt0Thg,1409
|
|
201
|
+
octostar/utils/notifications/publish_notification.py,sha256=Sg1o8wrFyZFyk81bVM_rBKhOQopXzKq1QMxEd7OT49k,3170
|
|
202
|
+
octostar/utils/notifications/pull_event_from_stream.py,sha256=Evy7ODnvA9y53dNVl0wfNHKorvi2VSGCwnylOwY9-sY,1875
|
|
203
|
+
octostar/utils/notifications/pull_events_from_stream.py,sha256=cOqSVS62BC9TJhGmPxTSlm6HXuzh1gC3sNDmRXuUvAc,2117
|
|
204
|
+
octostar/utils/notifications/push_event_to_stream.py,sha256=55kq7x19kjBbD0TO8Fy_RY-THDcDU1rVL_NyUqw4icY,3963
|
|
205
|
+
octostar/utils/notifications/push_events_to_stream.py,sha256=YGoZa2-RDpHfeMydsetE1M0ftpOsjFqkSXqdnNbO1gM,5144
|
|
206
|
+
octostar/utils/notifications/toast.py,sha256=A-9wn-wJ6tJ2ovRaSjNgQ0IWZuKEOgVEncN4PY3JaI4,3194
|
|
207
|
+
octostar/utils/ontology/__init__.py,sha256=1EAB_FwO7s40RcoQu-ngAtOYO92IPqcgAGe62CAKbQc,288
|
|
208
|
+
octostar/utils/ontology/fetch_ontology_data.py,sha256=Pxes9xof5ZI860XvgQbQRPbmmWZykvPcrEIKKgDYclg,5618
|
|
209
|
+
octostar/utils/ontology/get_ontologies.py,sha256=OaxKGDpwxTbT5wa1JVlmcRIwICs5px3QUoHvO9xua5I,1685
|
|
210
|
+
octostar/utils/ontology/multiquery_ontology.py,sha256=foBkvimG8NcQUwL6Aux-qvcGWnQRsK9zqxck0yJ3n-8,11845
|
|
211
|
+
octostar/utils/ontology/query_ontology.py,sha256=JPmtMqgemElqWgAGL2es0wrod_d904tPfF9dYTXX6o0,6513
|
|
212
|
+
octostar/utils/pipeline/__init__.py,sha256=frcCV1k9oG9oKj3dpUqdJg1PxRT2RSN_XKdLCPjaYaY,2
|
|
213
|
+
octostar/utils/pipeline/get_processing_status.py,sha256=dR1SDTW4F7HdsJPV5rADyKGOvOs0H02XCvGjC5uCNtc,11088
|
|
214
|
+
octostar/utils/pipeline/update_processing_status.py,sha256=RMrrYJrYNRdBvKAQZVA_gENqAxISpEwnEb30l2x_n7E,11450
|
|
215
|
+
octostar/utils/search/__init__.py,sha256=53HuEpv6ZHGS9wR2yokydgOrUfXh8UVro3D_sYg-4Yg,397
|
|
216
|
+
octostar/utils/search/bulk_update.py,sha256=0_hOl-PDXF7Luc1rF9y6Y3BwRFweRDnsTQcl5a1QtjM,4835
|
|
217
|
+
octostar/utils/search/count.py,sha256=bGvzkSTvG21DkMNRr7W5cBxZ_o7WZqC5qDv-lJVS2Dg,4892
|
|
218
|
+
octostar/utils/search/get_entity_annotations.py,sha256=d9RFOn7wKKugJHlagX5ULrXqYzm-zekviri7rqzmxcw,12779
|
|
219
|
+
octostar/utils/search/get_index_definition.py,sha256=CUFNRGaizPqyNt_ptPGlg-3xZ_O0ooBLPWFivHm-CSs,4680
|
|
220
|
+
octostar/utils/search/multi_search.py,sha256=bFdn2L03pXdWxV8XOtON_mODYncD6mJ706sQ9wFAxVg,5106
|
|
221
|
+
octostar/utils/workspace/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
222
|
+
octostar/utils/workspace/delete_entities.py,sha256=9Q5tXkMtfy9IwGcHhOSqTP8PKkS72AZ2SiVnWl1VI8M,9380
|
|
223
|
+
octostar/utils/workspace/delete_entity.py,sha256=KK4ewdXbFYpnZLgbAPU4d9--MQ_b7X9vFq-eUQLjZiI,2868
|
|
224
|
+
octostar/utils/workspace/delete_relationship.py,sha256=nCoRPFUYXmoNx0ZF2NELizoelUm3t106dIuR_FKQZrc,2739
|
|
225
|
+
octostar/utils/workspace/delete_relationships.py,sha256=0Lrvy2cdUk_T_wvL37YnJ-zedLrQZMz_dL4_kUhUttw,3005
|
|
226
|
+
octostar/utils/workspace/delete_temporary_blob.py,sha256=xvnRXnXsAmeYBVwHqdyd4tjYRAANoNO_LP8DHGpcrn4,2733
|
|
227
|
+
octostar/utils/workspace/extract_entities.py,sha256=evFE76wWiPHXpd035rgEcrPsNrGCyrjjxgtN28baVYc,3947
|
|
228
|
+
octostar/utils/workspace/get_filepath_from_item.py,sha256=zv7P6O4mwkFGmecbpiqpnSJYxJO0if4n4dIXCVHyHeY,2902
|
|
229
|
+
octostar/utils/workspace/get_filepaths_from_items.py,sha256=NbG9LScXzlBCQl8A53ulSzYmxTW2KEOT3Ny0CgBJ_jo,3925
|
|
230
|
+
octostar/utils/workspace/get_files_tree.py,sha256=j0aC1DVI0fS8JVatZEZf9_m9QUYXSiGqMh2c5kXcsNI,3942
|
|
231
|
+
octostar/utils/workspace/get_item_from_filepath.py,sha256=zrJL4Z-VXLiuHpg9Bv3T16algGLd6Eix0JpIjrS7BE0,3872
|
|
232
|
+
octostar/utils/workspace/get_items_from_filepaths.py,sha256=XAEDOLnVthE9TQua4DiKUSn2Wb451KUPCt94OqRKs7U,4090
|
|
233
|
+
octostar/utils/workspace/read_attachment.py,sha256=PAZbwGrl8tTlLx52YiYJcpflnmbqxgTfZthvP_m8ba4,10599
|
|
234
|
+
octostar/utils/workspace/read_file.py,sha256=UT2PU8R3cmlmMpMqZw6052-P6BzloY45GDHcHAR774s,4626
|
|
235
|
+
octostar/utils/workspace/read_temporary_blob.py,sha256=fXeqIQYwf7xKDTyZjFV5LPVuhoAGQm3quDWUQ3yQWRY,15646
|
|
236
|
+
octostar/utils/workspace/upsert_entities.py,sha256=_aChYmwB7KGOePMReD0qYMZlKiUrlB5j4ujrgJSPAXE,10540
|
|
237
|
+
octostar/utils/workspace/upsert_entity.py,sha256=mFBiNHSgEIawIYTXBAvNU-vtiQicxaZjUXJx9XgUPXk,3943
|
|
238
|
+
octostar/utils/workspace/upsert_relationship.py,sha256=D5NPrlFC0BD4Ih2TORk-aARu-IF6JDCNoyFh8NgxfPg,5151
|
|
239
|
+
octostar/utils/workspace/upsert_relationships.py,sha256=LYRnCvCJYvL1VSN3yYbk8KClduRIS1SMpBZrt9u2Bto,8676
|
|
240
|
+
octostar/utils/workspace/write_attachment.py,sha256=hra38oZxZ7DvVLdlQZQhdn0RuJqga56c__a8UQX5Kmc,8940
|
|
241
|
+
octostar/utils/workspace/write_file.py,sha256=A5Oc3BiS6BunTRsUYFaxlJbjtS4nIPJQEuyvzrZ8P9w,12918
|
|
242
|
+
octostar/utils/workspace/write_temporary_blob.py,sha256=FSysg4ZWN0n0zMQzfnyERxVDK_3AtJJ_xS5NgVkRRMo,7463
|
|
243
|
+
octostar/utils/workspace/linkcharts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
244
|
+
octostar/utils/workspace/linkcharts/create_linkchart.py,sha256=YfQUSvwb3P4pMVh0qYSX5-ndG65YyWmMkj4ll4_x09w,7868
|
|
245
|
+
octostar/utils/workspace/permissions/PermissionLevel.py,sha256=8Fclyt-ZTyOwiu71Ar5mEFR_CQjjF_jOAyrc-4uE-vQ,113
|
|
246
|
+
octostar/utils/workspace/permissions/__init__.py,sha256=TcWe8whKd8vYdA-9m02vQ4ZIjUPRo0dtdfLPUavSbWo,45
|
|
247
|
+
octostar/utils/workspace/permissions/get_permissions.py,sha256=Nq0RSJqTozEWlJUNHsCQDjm0do8mdUc3GhLZ4MYKGl4,2853
|
|
248
|
+
octostar/utils/workspace/saved_searches/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
249
|
+
octostar/utils/workspace/saved_searches/create_saved_search.py,sha256=fzCZfM2-HBgd_7BP__8aj_57dbe_mpFreQS5f17OwKk,5749
|
|
250
|
+
octostar/utils/workspace/tags/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
251
|
+
octostar/utils/workspace/tags/delete_tag_from_entities.py,sha256=qzEKv0x0M9C0kHFggwTM3ZluVwTCQ_CljqqIkSqvS3k,3134
|
|
252
|
+
octostar/utils/workspace/tags/tag_entities.py,sha256=PC3bXztwgrHsNlD6gzdBkwBxL20UyatLiCPjrMt_QWg,6903
|
|
253
|
+
octostar_python_client-0.1.759.dist-info/licenses/LICENSE,sha256=wT7pmbnemTYYUg1-9s1_vHiqPOyrv5rztz1s8ZryTg4,1065
|
|
254
|
+
octostar_python_client-0.1.759.dist-info/METADATA,sha256=B5OBde6HeEsQUg0BdzTUoQEOpKnBNKySINTVs0CXdGY,5592
|
|
255
|
+
octostar_python_client-0.1.759.dist-info/WHEEL,sha256=aeYiig01lYGDzBgS8HxWXOg3uV61G9ijOsup-k9o1sk,91
|
|
256
|
+
octostar_python_client-0.1.759.dist-info/top_level.txt,sha256=ZTFbqYuX43Q0UrUGXqnIkb9T-1h-aB6C5Pq_jGsrs1g,9
|
|
257
|
+
octostar_python_client-0.1.759.dist-info/RECORD,,
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Octostar
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
octostar
|