label-studio-sdk 0.0.34__py3-none-any.whl → 1.0.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.
Potentially problematic release.
This version of label-studio-sdk might be problematic. Click here for more details.
- label_studio_sdk/__init__.py +232 -9
- label_studio_sdk/_extensions/label_studio_tools/__init__.py +0 -0
- label_studio_sdk/_extensions/label_studio_tools/core/__init__.py +0 -0
- label_studio_sdk/_extensions/label_studio_tools/core/label_config.py +163 -0
- label_studio_sdk/_extensions/label_studio_tools/core/utils/__init__.py +0 -0
- label_studio_sdk/_extensions/label_studio_tools/core/utils/exceptions.py +2 -0
- label_studio_sdk/_extensions/label_studio_tools/core/utils/io.py +228 -0
- label_studio_sdk/_extensions/label_studio_tools/core/utils/params.py +45 -0
- label_studio_sdk/_extensions/label_studio_tools/etl/__init__.py +1 -0
- label_studio_sdk/_extensions/label_studio_tools/etl/beam.py +34 -0
- label_studio_sdk/_extensions/label_studio_tools/etl/example.py +17 -0
- label_studio_sdk/_extensions/label_studio_tools/etl/registry.py +67 -0
- label_studio_sdk/_extensions/label_studio_tools/postprocessing/__init__.py +0 -0
- label_studio_sdk/_extensions/label_studio_tools/postprocessing/video.py +97 -0
- label_studio_sdk/_extensions/pager_ext.py +49 -0
- label_studio_sdk/_legacy/__init__.py +11 -0
- label_studio_sdk/_legacy/client.py +471 -0
- label_studio_sdk/_legacy/objects.py +74 -0
- label_studio_sdk/{project.py → _legacy/project.py} +2 -2
- label_studio_sdk/{schema → _legacy/schema}/label_config_schema.json +14 -14
- label_studio_sdk/actions/__init__.py +27 -0
- label_studio_sdk/actions/client.py +223 -0
- label_studio_sdk/actions/types/__init__.py +25 -0
- label_studio_sdk/actions/types/actions_create_request_filters.py +43 -0
- label_studio_sdk/actions/types/actions_create_request_filters_conjunction.py +5 -0
- label_studio_sdk/actions/types/actions_create_request_filters_items_item.py +49 -0
- label_studio_sdk/actions/types/actions_create_request_filters_items_item_filter.py +31 -0
- label_studio_sdk/actions/types/actions_create_request_filters_items_item_operator.py +23 -0
- label_studio_sdk/actions/types/actions_create_request_id.py +19 -0
- label_studio_sdk/actions/types/actions_create_request_ordering_item.py +31 -0
- label_studio_sdk/actions/types/actions_create_request_selected_items.py +10 -0
- label_studio_sdk/actions/types/actions_create_request_selected_items_excluded.py +39 -0
- label_studio_sdk/actions/types/actions_create_request_selected_items_included.py +39 -0
- label_studio_sdk/annotations/__init__.py +2 -0
- label_studio_sdk/annotations/client.py +750 -0
- label_studio_sdk/base_client.py +183 -0
- label_studio_sdk/client.py +17 -463
- label_studio_sdk/converter/__init__.py +7 -0
- label_studio_sdk/converter/audio.py +56 -0
- label_studio_sdk/converter/brush.py +452 -0
- label_studio_sdk/converter/converter.py +1175 -0
- label_studio_sdk/converter/exports/__init__.py +0 -0
- label_studio_sdk/converter/exports/csv.py +82 -0
- label_studio_sdk/converter/exports/csv2.py +103 -0
- label_studio_sdk/converter/funsd.py +85 -0
- label_studio_sdk/converter/imports/__init__.py +0 -0
- label_studio_sdk/converter/imports/coco.py +314 -0
- label_studio_sdk/converter/imports/colors.py +198 -0
- label_studio_sdk/converter/imports/label_config.py +45 -0
- label_studio_sdk/converter/imports/pathtrack.py +269 -0
- label_studio_sdk/converter/imports/yolo.py +236 -0
- label_studio_sdk/converter/main.py +202 -0
- label_studio_sdk/converter/utils.py +473 -0
- label_studio_sdk/core/__init__.py +33 -0
- label_studio_sdk/core/api_error.py +15 -0
- label_studio_sdk/core/client_wrapper.py +55 -0
- label_studio_sdk/core/datetime_utils.py +28 -0
- label_studio_sdk/core/file.py +38 -0
- label_studio_sdk/core/http_client.py +447 -0
- label_studio_sdk/core/jsonable_encoder.py +99 -0
- label_studio_sdk/core/pagination.py +87 -0
- label_studio_sdk/core/pydantic_utilities.py +28 -0
- label_studio_sdk/core/query_encoder.py +33 -0
- label_studio_sdk/core/remove_none_from_dict.py +11 -0
- label_studio_sdk/core/request_options.py +32 -0
- label_studio_sdk/environment.py +7 -0
- label_studio_sdk/errors/__init__.py +6 -0
- label_studio_sdk/errors/bad_request_error.py +8 -0
- label_studio_sdk/errors/internal_server_error.py +8 -0
- label_studio_sdk/export_storage/__init__.py +28 -0
- label_studio_sdk/export_storage/azure/__init__.py +5 -0
- label_studio_sdk/export_storage/azure/client.py +888 -0
- label_studio_sdk/export_storage/azure/types/__init__.py +6 -0
- label_studio_sdk/export_storage/azure/types/azure_create_response.py +67 -0
- label_studio_sdk/export_storage/azure/types/azure_update_response.py +67 -0
- label_studio_sdk/export_storage/client.py +107 -0
- label_studio_sdk/export_storage/gcs/__init__.py +5 -0
- label_studio_sdk/export_storage/gcs/client.py +888 -0
- label_studio_sdk/export_storage/gcs/types/__init__.py +6 -0
- label_studio_sdk/export_storage/gcs/types/gcs_create_response.py +67 -0
- label_studio_sdk/export_storage/gcs/types/gcs_update_response.py +67 -0
- label_studio_sdk/export_storage/local/__init__.py +5 -0
- label_studio_sdk/export_storage/local/client.py +834 -0
- label_studio_sdk/export_storage/local/types/__init__.py +6 -0
- label_studio_sdk/export_storage/local/types/local_create_response.py +57 -0
- label_studio_sdk/export_storage/local/types/local_update_response.py +57 -0
- label_studio_sdk/export_storage/redis/__init__.py +5 -0
- label_studio_sdk/export_storage/redis/client.py +918 -0
- label_studio_sdk/export_storage/redis/types/__init__.py +6 -0
- label_studio_sdk/export_storage/redis/types/redis_create_response.py +72 -0
- label_studio_sdk/export_storage/redis/types/redis_update_response.py +72 -0
- label_studio_sdk/export_storage/s3/__init__.py +5 -0
- label_studio_sdk/export_storage/s3/client.py +1008 -0
- label_studio_sdk/export_storage/s3/types/__init__.py +6 -0
- label_studio_sdk/export_storage/s3/types/s3create_response.py +89 -0
- label_studio_sdk/export_storage/s3/types/s3update_response.py +89 -0
- label_studio_sdk/export_storage/types/__init__.py +5 -0
- label_studio_sdk/export_storage/types/export_storage_list_types_response_item.py +30 -0
- label_studio_sdk/files/__init__.py +2 -0
- label_studio_sdk/files/client.py +556 -0
- label_studio_sdk/import_storage/__init__.py +28 -0
- label_studio_sdk/import_storage/azure/__init__.py +5 -0
- label_studio_sdk/import_storage/azure/client.py +988 -0
- label_studio_sdk/import_storage/azure/types/__init__.py +6 -0
- label_studio_sdk/import_storage/azure/types/azure_create_response.py +82 -0
- label_studio_sdk/import_storage/azure/types/azure_update_response.py +82 -0
- label_studio_sdk/import_storage/client.py +107 -0
- label_studio_sdk/import_storage/gcs/__init__.py +5 -0
- label_studio_sdk/import_storage/gcs/client.py +988 -0
- label_studio_sdk/import_storage/gcs/types/__init__.py +6 -0
- label_studio_sdk/import_storage/gcs/types/gcs_create_response.py +82 -0
- label_studio_sdk/import_storage/gcs/types/gcs_update_response.py +82 -0
- label_studio_sdk/import_storage/local/__init__.py +5 -0
- label_studio_sdk/import_storage/local/client.py +836 -0
- label_studio_sdk/import_storage/local/types/__init__.py +6 -0
- label_studio_sdk/import_storage/local/types/local_create_response.py +57 -0
- label_studio_sdk/import_storage/local/types/local_update_response.py +57 -0
- label_studio_sdk/import_storage/redis/__init__.py +5 -0
- label_studio_sdk/import_storage/redis/client.py +924 -0
- label_studio_sdk/import_storage/redis/types/__init__.py +6 -0
- label_studio_sdk/import_storage/redis/types/redis_create_response.py +72 -0
- label_studio_sdk/import_storage/redis/types/redis_update_response.py +72 -0
- label_studio_sdk/import_storage/s3/__init__.py +5 -0
- label_studio_sdk/import_storage/s3/client.py +1138 -0
- label_studio_sdk/import_storage/s3/types/__init__.py +6 -0
- label_studio_sdk/import_storage/s3/types/s3create_response.py +109 -0
- label_studio_sdk/import_storage/s3/types/s3update_response.py +109 -0
- label_studio_sdk/import_storage/types/__init__.py +5 -0
- label_studio_sdk/import_storage/types/import_storage_list_types_response_item.py +30 -0
- label_studio_sdk/label_interface/base.py +10 -0
- label_studio_sdk/label_interface/control_tags.py +109 -71
- label_studio_sdk/label_interface/data_examples.json +96 -0
- label_studio_sdk/label_interface/interface.py +102 -53
- label_studio_sdk/label_interface/object_tags.py +8 -13
- label_studio_sdk/label_interface/region.py +33 -1
- label_studio_sdk/ml/__init__.py +19 -0
- label_studio_sdk/ml/client.py +981 -0
- label_studio_sdk/ml/types/__init__.py +17 -0
- label_studio_sdk/ml/types/ml_create_request_auth_method.py +5 -0
- label_studio_sdk/ml/types/ml_create_response.py +78 -0
- label_studio_sdk/ml/types/ml_create_response_auth_method.py +5 -0
- label_studio_sdk/ml/types/ml_update_request_auth_method.py +5 -0
- label_studio_sdk/ml/types/ml_update_response.py +78 -0
- label_studio_sdk/ml/types/ml_update_response_auth_method.py +5 -0
- label_studio_sdk/predictions/__init__.py +2 -0
- label_studio_sdk/predictions/client.py +638 -0
- label_studio_sdk/projects/__init__.py +6 -0
- label_studio_sdk/projects/client.py +1055 -0
- label_studio_sdk/projects/client_ext.py +19 -0
- label_studio_sdk/projects/exports/__init__.py +2 -0
- label_studio_sdk/projects/exports/client.py +930 -0
- label_studio_sdk/projects/types/__init__.py +7 -0
- label_studio_sdk/projects/types/projects_create_response.py +96 -0
- label_studio_sdk/projects/types/projects_import_tasks_response.py +71 -0
- label_studio_sdk/projects/types/projects_list_response.py +33 -0
- label_studio_sdk/py.typed +0 -0
- label_studio_sdk/tasks/__init__.py +5 -0
- label_studio_sdk/tasks/client.py +835 -0
- label_studio_sdk/tasks/client_ext.py +18 -0
- label_studio_sdk/tasks/types/__init__.py +6 -0
- label_studio_sdk/tasks/types/tasks_list_request_fields.py +5 -0
- label_studio_sdk/tasks/types/tasks_list_response.py +48 -0
- label_studio_sdk/types/__init__.py +115 -0
- label_studio_sdk/types/annotation.py +116 -0
- label_studio_sdk/types/annotation_filter_options.py +42 -0
- label_studio_sdk/types/annotation_last_action.py +19 -0
- label_studio_sdk/types/azure_blob_export_storage.py +112 -0
- label_studio_sdk/types/azure_blob_export_storage_status.py +7 -0
- label_studio_sdk/types/azure_blob_import_storage.py +113 -0
- label_studio_sdk/types/azure_blob_import_storage_status.py +7 -0
- label_studio_sdk/types/base_task.py +113 -0
- label_studio_sdk/types/base_user.py +42 -0
- label_studio_sdk/types/converted_format.py +36 -0
- label_studio_sdk/types/converted_format_status.py +5 -0
- label_studio_sdk/types/export.py +48 -0
- label_studio_sdk/types/export_convert.py +32 -0
- label_studio_sdk/types/export_create.py +54 -0
- label_studio_sdk/types/export_create_status.py +5 -0
- label_studio_sdk/types/export_status.py +5 -0
- label_studio_sdk/types/file_upload.py +30 -0
- label_studio_sdk/types/filter.py +53 -0
- label_studio_sdk/types/filter_group.py +35 -0
- label_studio_sdk/types/gcs_export_storage.py +112 -0
- label_studio_sdk/types/gcs_export_storage_status.py +7 -0
- label_studio_sdk/types/gcs_import_storage.py +113 -0
- label_studio_sdk/types/gcs_import_storage_status.py +7 -0
- label_studio_sdk/types/local_files_export_storage.py +97 -0
- label_studio_sdk/types/local_files_export_storage_status.py +7 -0
- label_studio_sdk/types/local_files_import_storage.py +92 -0
- label_studio_sdk/types/local_files_import_storage_status.py +7 -0
- label_studio_sdk/types/ml_backend.py +89 -0
- label_studio_sdk/types/ml_backend_auth_method.py +5 -0
- label_studio_sdk/types/ml_backend_state.py +5 -0
- label_studio_sdk/types/prediction.py +78 -0
- label_studio_sdk/types/project.py +198 -0
- label_studio_sdk/types/project_import.py +63 -0
- label_studio_sdk/types/project_import_status.py +5 -0
- label_studio_sdk/types/project_label_config.py +32 -0
- label_studio_sdk/types/project_sampling.py +7 -0
- label_studio_sdk/types/project_skip_queue.py +5 -0
- label_studio_sdk/types/redis_export_storage.py +117 -0
- label_studio_sdk/types/redis_export_storage_status.py +7 -0
- label_studio_sdk/types/redis_import_storage.py +112 -0
- label_studio_sdk/types/redis_import_storage_status.py +7 -0
- label_studio_sdk/types/s3export_storage.py +134 -0
- label_studio_sdk/types/s3export_storage_status.py +7 -0
- label_studio_sdk/types/s3import_storage.py +140 -0
- label_studio_sdk/types/s3import_storage_status.py +7 -0
- label_studio_sdk/types/serialization_option.py +36 -0
- label_studio_sdk/types/serialization_options.py +45 -0
- label_studio_sdk/types/task.py +157 -0
- label_studio_sdk/types/task_filter_options.py +49 -0
- label_studio_sdk/types/user_simple.py +37 -0
- label_studio_sdk/types/view.py +55 -0
- label_studio_sdk/types/webhook.py +67 -0
- label_studio_sdk/types/webhook_actions_item.py +21 -0
- label_studio_sdk/types/webhook_serializer_for_update.py +67 -0
- label_studio_sdk/types/webhook_serializer_for_update_actions_item.py +21 -0
- label_studio_sdk/users/__init__.py +5 -0
- label_studio_sdk/users/client.py +830 -0
- label_studio_sdk/users/types/__init__.py +6 -0
- label_studio_sdk/users/types/users_get_token_response.py +36 -0
- label_studio_sdk/users/types/users_reset_token_response.py +36 -0
- label_studio_sdk/version.py +4 -0
- label_studio_sdk/views/__init__.py +35 -0
- label_studio_sdk/views/client.py +564 -0
- label_studio_sdk/views/types/__init__.py +33 -0
- label_studio_sdk/views/types/views_create_request_data.py +43 -0
- label_studio_sdk/views/types/views_create_request_data_filters.py +43 -0
- label_studio_sdk/views/types/views_create_request_data_filters_conjunction.py +5 -0
- label_studio_sdk/views/types/views_create_request_data_filters_items_item.py +49 -0
- label_studio_sdk/views/types/views_create_request_data_filters_items_item_filter.py +31 -0
- label_studio_sdk/views/types/views_create_request_data_filters_items_item_operator.py +23 -0
- label_studio_sdk/views/types/views_create_request_data_ordering_item.py +31 -0
- label_studio_sdk/views/types/views_update_request_data.py +43 -0
- label_studio_sdk/views/types/views_update_request_data_filters.py +43 -0
- label_studio_sdk/views/types/views_update_request_data_filters_conjunction.py +5 -0
- label_studio_sdk/views/types/views_update_request_data_filters_items_item.py +49 -0
- label_studio_sdk/views/types/views_update_request_data_filters_items_item_filter.py +31 -0
- label_studio_sdk/views/types/views_update_request_data_filters_items_item_operator.py +23 -0
- label_studio_sdk/views/types/views_update_request_data_ordering_item.py +31 -0
- label_studio_sdk/webhooks/__init__.py +5 -0
- label_studio_sdk/webhooks/client.py +636 -0
- label_studio_sdk/webhooks/types/__init__.py +5 -0
- label_studio_sdk/webhooks/types/webhooks_update_request_actions_item.py +21 -0
- label_studio_sdk-1.0.1.dist-info/METADATA +163 -0
- label_studio_sdk-1.0.1.dist-info/RECORD +256 -0
- {label_studio_sdk-0.0.34.dist-info → label_studio_sdk-1.0.1.dist-info}/WHEEL +1 -2
- label_studio_sdk/objects.py +0 -35
- label_studio_sdk-0.0.34.dist-info/LICENSE +0 -201
- label_studio_sdk-0.0.34.dist-info/METADATA +0 -24
- label_studio_sdk-0.0.34.dist-info/RECORD +0 -37
- label_studio_sdk-0.0.34.dist-info/top_level.txt +0 -2
- tests/test_client.py +0 -37
- tests/test_export.py +0 -105
- tests/test_interface/__init__.py +0 -1
- tests/test_interface/configs.py +0 -137
- tests/test_interface/mockups.py +0 -22
- tests/test_interface/test_compat.py +0 -64
- tests/test_interface/test_control_tags.py +0 -55
- tests/test_interface/test_data_generation.py +0 -45
- tests/test_interface/test_lpi.py +0 -15
- tests/test_interface/test_main.py +0 -196
- tests/test_interface/test_object_tags.py +0 -36
- tests/test_interface/test_region.py +0 -36
- tests/test_interface/test_validate_summary.py +0 -35
- tests/test_interface/test_validation.py +0 -59
- {tests → label_studio_sdk/_extensions}/__init__.py +0 -0
- /label_studio_sdk/{exceptions.py → _legacy/exceptions.py} +0 -0
- /label_studio_sdk/{users.py → _legacy/users.py} +0 -0
- /label_studio_sdk/{utils.py → _legacy/utils.py} +0 -0
- /label_studio_sdk/{workspaces.py → _legacy/workspaces.py} +0 -0
|
@@ -0,0 +1,163 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: label-studio-sdk
|
|
3
|
+
Version: 1.0.1
|
|
4
|
+
Summary:
|
|
5
|
+
Requires-Python: >=3.8,<4.0
|
|
6
|
+
Classifier: Intended Audience :: Developers
|
|
7
|
+
Classifier: Operating System :: MacOS
|
|
8
|
+
Classifier: Operating System :: Microsoft :: Windows
|
|
9
|
+
Classifier: Operating System :: OS Independent
|
|
10
|
+
Classifier: Operating System :: POSIX
|
|
11
|
+
Classifier: Operating System :: POSIX :: Linux
|
|
12
|
+
Classifier: Programming Language :: Python
|
|
13
|
+
Classifier: Programming Language :: Python :: 3
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
19
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
20
|
+
Classifier: Typing :: Typed
|
|
21
|
+
Requires-Dist: Pillow (>=10.0.1)
|
|
22
|
+
Requires-Dist: appdirs (>=1.4.3)
|
|
23
|
+
Requires-Dist: httpx (>=0.21.2)
|
|
24
|
+
Requires-Dist: ijson (>=3.2.3)
|
|
25
|
+
Requires-Dist: jsonschema (==3.2.0)
|
|
26
|
+
Requires-Dist: lxml (>=4.2.5)
|
|
27
|
+
Requires-Dist: nltk (==3.6.7)
|
|
28
|
+
Requires-Dist: pandas (>=0.24.0)
|
|
29
|
+
Requires-Dist: pydantic (>=1.9.2)
|
|
30
|
+
Requires-Dist: requests (>=2.22.0)
|
|
31
|
+
Requires-Dist: requests-mock (==1.12.1)
|
|
32
|
+
Requires-Dist: typing_extensions (>=4.0.0)
|
|
33
|
+
Requires-Dist: ujson (>=5.8.0)
|
|
34
|
+
Requires-Dist: xmljson (==0.2.1)
|
|
35
|
+
Description-Content-Type: text/markdown
|
|
36
|
+
|
|
37
|
+
# Label Studio Python Library
|
|
38
|
+
|
|
39
|
+
<!-- Note about deprecated version <1 -->
|
|
40
|
+
---
|
|
41
|
+
> :warning: **Note**<br/>
|
|
42
|
+
>
|
|
43
|
+
> The version of `label-studio-sdk<1` is deprecated and no longer supported. We recommend updating to the latest version.
|
|
44
|
+
> If you still want to use the old version, you can install it with `pip install "label-studio-sdk<1"`.
|
|
45
|
+
> OR You can find the branch with the old version by cloning the repository and checking out the branch as follows:
|
|
46
|
+
>
|
|
47
|
+
> ```sh
|
|
48
|
+
> git clone https://github.com/HumanSignal/label-studio-sdk.git
|
|
49
|
+
> cd label-studio-sdk
|
|
50
|
+
> git checkout previous-version
|
|
51
|
+
> ```
|
|
52
|
+
>
|
|
53
|
+
> OR you can change your import statements as follows:
|
|
54
|
+
> ```python
|
|
55
|
+
> from label_studio_sdk import Client
|
|
56
|
+
> from label_studio_sdk.data_manager import Filters, Column, Operator, Type
|
|
57
|
+
> from label_studio_sdk._legacy import Project
|
|
58
|
+
> ```
|
|
59
|
+
---
|
|
60
|
+
|
|
61
|
+
[](https://github.com/fern-api/fern)
|
|
62
|
+
|
|
63
|
+
The Label Studio Python Library provides convenient access to the Label Studio API from applications written in Python.
|
|
64
|
+
<!-- End Title -->
|
|
65
|
+
|
|
66
|
+
<!-- Outline -->
|
|
67
|
+
|
|
68
|
+
|
|
69
|
+
# Documentation
|
|
70
|
+
Explore the Label Studio API documentation [here](https://api.labelstud.io/).
|
|
71
|
+
|
|
72
|
+
|
|
73
|
+
# Installation
|
|
74
|
+
|
|
75
|
+
```sh
|
|
76
|
+
pip install --upgrade label-studio-sdk
|
|
77
|
+
```
|
|
78
|
+
|
|
79
|
+
# Usage
|
|
80
|
+
|
|
81
|
+
```python
|
|
82
|
+
from label_studio_sdk.client import LabelStudio
|
|
83
|
+
|
|
84
|
+
ls = LabelStudio(
|
|
85
|
+
base_url='YOUR_LABEL_STUDIO_URL',
|
|
86
|
+
api_key="YOUR_API_KEY",
|
|
87
|
+
)
|
|
88
|
+
```
|
|
89
|
+
|
|
90
|
+
# Examples
|
|
91
|
+
|
|
92
|
+
Check more examples [here](https://api.labelstud.io/).
|
|
93
|
+
|
|
94
|
+
## Create a new project
|
|
95
|
+
|
|
96
|
+
```python
|
|
97
|
+
project = ls.projects.create(
|
|
98
|
+
name="Project name",
|
|
99
|
+
description="Project description",
|
|
100
|
+
label_config="""
|
|
101
|
+
<View>
|
|
102
|
+
<Image name="image" value="$image" />
|
|
103
|
+
<RectangleLabels name="label" toName="image">
|
|
104
|
+
<Label value="cat" />
|
|
105
|
+
<Label value="dog" />
|
|
106
|
+
</RectangleLabels>
|
|
107
|
+
</View>
|
|
108
|
+
"""
|
|
109
|
+
)
|
|
110
|
+
```
|
|
111
|
+
|
|
112
|
+
## Create a new task
|
|
113
|
+
|
|
114
|
+
```python
|
|
115
|
+
task = ls.tasks.create(
|
|
116
|
+
project=project.id,
|
|
117
|
+
data={"image": "https://example.com/image.jpg"}
|
|
118
|
+
)
|
|
119
|
+
```
|
|
120
|
+
Now you can open the project `PROJECT_ID` in the Label Studio UI and create annotations for the task.
|
|
121
|
+
|
|
122
|
+
## Export annotations
|
|
123
|
+
|
|
124
|
+
```python
|
|
125
|
+
annotations = [
|
|
126
|
+
task.annotations
|
|
127
|
+
for task in ls.tasks.list(project=project.id, fields='all')
|
|
128
|
+
if task.annotations
|
|
129
|
+
]
|
|
130
|
+
```
|
|
131
|
+
|
|
132
|
+
|
|
133
|
+
## Async client
|
|
134
|
+
|
|
135
|
+
```python
|
|
136
|
+
from label_studio_sdk.client import AsyncLabelStudio
|
|
137
|
+
|
|
138
|
+
client = AsyncLabelStudio(
|
|
139
|
+
api_key="YOUR_API_KEY",
|
|
140
|
+
)
|
|
141
|
+
```
|
|
142
|
+
|
|
143
|
+
<!-- Begin Status, generated by Fern -->
|
|
144
|
+
# Beta Status
|
|
145
|
+
|
|
146
|
+
This SDK is in beta, and there may be breaking changes between versions without a major
|
|
147
|
+
version update. Therefore, we recommend pinning the package version to a specific version.
|
|
148
|
+
This way, you can install the same version each time without breaking changes.
|
|
149
|
+
<!-- End Status -->
|
|
150
|
+
|
|
151
|
+
<!-- Begin Contributing, generated by Fern -->
|
|
152
|
+
# Contributing
|
|
153
|
+
|
|
154
|
+
While we value open-source contributions to this SDK, this library is generated programmatically.
|
|
155
|
+
Additions made directly to this library would have to be moved over to our generation code,
|
|
156
|
+
otherwise they would be overwritten upon the next generated release. Feel free to open a PR as
|
|
157
|
+
a proof of concept, but know that we will not be able to merge it as-is. We suggest opening
|
|
158
|
+
an issue first to discuss with us!
|
|
159
|
+
|
|
160
|
+
On the other hand, contributions to the README are always very welcome!
|
|
161
|
+
<!-- End Contributing -->
|
|
162
|
+
|
|
163
|
+
|
|
@@ -0,0 +1,256 @@
|
|
|
1
|
+
label_studio_sdk/__init__.py,sha256=9xfqkZgt37ghkGUe8KwGETNgfb1hhqYGvyiaPNsKJwU,6606
|
|
2
|
+
label_studio_sdk/_extensions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
|
+
label_studio_sdk/_extensions/label_studio_tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
|
+
label_studio_sdk/_extensions/label_studio_tools/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
5
|
+
label_studio_sdk/_extensions/label_studio_tools/core/label_config.py,sha256=B2eztyLb7Zi-byqVcoQHm8kedjaxvzf3e-psG3GaOFc,5843
|
|
6
|
+
label_studio_sdk/_extensions/label_studio_tools/core/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
7
|
+
label_studio_sdk/_extensions/label_studio_tools/core/utils/exceptions.py,sha256=JxaXUMghUp1YvL--s8KFC4mCHVbV39giE3kSBHCmuFU,66
|
|
8
|
+
label_studio_sdk/_extensions/label_studio_tools/core/utils/io.py,sha256=D9CEBFf_S_wmSk8NEoOTqGsm4y9syBTlsv1-c5Fu_Kc,8311
|
|
9
|
+
label_studio_sdk/_extensions/label_studio_tools/core/utils/params.py,sha256=ZSUb-IXG5OcPQ7pJ8NDRLon-cMxnjVq6XtinxvTuJso,1244
|
|
10
|
+
label_studio_sdk/_extensions/label_studio_tools/etl/__init__.py,sha256=SdN7JGLJ1araqbx-nL2fVdhm6E6CNyru-vWVs6sMswI,31
|
|
11
|
+
label_studio_sdk/_extensions/label_studio_tools/etl/beam.py,sha256=aGWS-LgU6du2Fm0HE_3mDWeQ5dcwMWWMeuS-0xjEcVE,833
|
|
12
|
+
label_studio_sdk/_extensions/label_studio_tools/etl/example.py,sha256=s-e0ZDqhYsQxDH3rejbfMwORL0L7YXqQu0Wfgoh3TpE,381
|
|
13
|
+
label_studio_sdk/_extensions/label_studio_tools/etl/registry.py,sha256=eYQrNjfO5XVo6Hwc-EhCeUtr7dxqe1AToyJSA7WPI5M,1939
|
|
14
|
+
label_studio_sdk/_extensions/label_studio_tools/postprocessing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
15
|
+
label_studio_sdk/_extensions/label_studio_tools/postprocessing/video.py,sha256=oUNO2jrtWhbT5zI6LcHyiJ-3ZmHsEPi3Fs-KJP9Es4M,3528
|
|
16
|
+
label_studio_sdk/_extensions/pager_ext.py,sha256=l6QX3nkLwUjB6MQRR76Ry3y-HIY3FKTW3Nsdwntu7AI,1637
|
|
17
|
+
label_studio_sdk/_legacy/__init__.py,sha256=e1C8VJ0l6EKmQwvzOnkKvy5Cu6uNi2dboNno8cAKJdg,194
|
|
18
|
+
label_studio_sdk/_legacy/client.py,sha256=7lZeuQNw39C_Iqb6O-LSY8dOYbrE7hhA8qrc0SH3Qw0,14052
|
|
19
|
+
label_studio_sdk/_legacy/exceptions.py,sha256=Xpx6phdRD_dTWlA-nq0v0Feta0RVDltPUjRXSiXJ0Yk,196
|
|
20
|
+
label_studio_sdk/_legacy/objects.py,sha256=BY3IyN2fEWGABpMDNuXFQ8142J7imCvtwhecR45E9b8,1901
|
|
21
|
+
label_studio_sdk/_legacy/project.py,sha256=4sO4kZQECmDmFZRNo502PpDcRX68la0FO0WDePOyVxI,93567
|
|
22
|
+
label_studio_sdk/_legacy/schema/label_config_schema.json,sha256=RrwjX3NU4ArFA8Fexb0fbInmJUYBpmFqa3h4-1L1pqg,6063
|
|
23
|
+
label_studio_sdk/_legacy/users.py,sha256=G5wxBf7sGpZlN_0sR2NDovESIw1v2RfXWveCLHTgvN4,1402
|
|
24
|
+
label_studio_sdk/_legacy/utils.py,sha256=ZeBEwUmHyK_GdUjAEOdIqkbKRT7SviO4Db0Uj6tMNfI,4518
|
|
25
|
+
label_studio_sdk/_legacy/workspaces.py,sha256=9SrmZyWqj_0etCyTWzeC6v30jAIDnjerx4cNBlP3MGg,1913
|
|
26
|
+
label_studio_sdk/actions/__init__.py,sha256=GVyRYKOyNfY0aDhaGek3LzMu3OxkBmW5fAI0UsxY5vk,955
|
|
27
|
+
label_studio_sdk/actions/client.py,sha256=mCQ7TAthoWCleuz1TTXTC5i0SaHJWvTmZNawOw9v648,9350
|
|
28
|
+
label_studio_sdk/actions/types/__init__.py,sha256=xI3KZ0e3ZR_gzYEBV7I19lAAdOCNiqtqtCng_si3wps,1423
|
|
29
|
+
label_studio_sdk/actions/types/actions_create_request_filters.py,sha256=kuWSbU5f2drIE9ixmHVV0u80SY7I8DCKx_XqOWBs2FE,2157
|
|
30
|
+
label_studio_sdk/actions/types/actions_create_request_filters_conjunction.py,sha256=thuQnCJNFFIxmpSXp7F3anXVkp7BtQntBIVgZVlw21Y,175
|
|
31
|
+
label_studio_sdk/actions/types/actions_create_request_filters_items_item.py,sha256=kFJZtpjmw_U8kyQfZVRIDFRPLP1EgHJCguz3m6aT950,5413
|
|
32
|
+
label_studio_sdk/actions/types/actions_create_request_filters_items_item_filter.py,sha256=rwMY2ygY3Wt6hs_ecvL0ZSTyPElY03TRnzGuAHqfb4A,1035
|
|
33
|
+
label_studio_sdk/actions/types/actions_create_request_filters_items_item_operator.py,sha256=Rhy6MUwQyGZBAnKJPPk_DT1TKjQY43I3C_L5Obz8FYs,472
|
|
34
|
+
label_studio_sdk/actions/types/actions_create_request_id.py,sha256=UOgIY9tUQyBVFDETLSq3mPZ_oxSFhZHJYqjGhXY4FYw,486
|
|
35
|
+
label_studio_sdk/actions/types/actions_create_request_ordering_item.py,sha256=dE7E4WPE2GSskJ5lA1sNQwM5OK_cR6_dvxuzTFF4UjQ,871
|
|
36
|
+
label_studio_sdk/actions/types/actions_create_request_selected_items.py,sha256=9ylitQl78Mrl2ffeYoaXL0JPyFPFriRDQtgvqJOuvRY,426
|
|
37
|
+
label_studio_sdk/actions/types/actions_create_request_selected_items_excluded.py,sha256=V_UqVg8HP3REL9HxoqfadtGkK9M8q7gGXELxjLpZ2E0,1427
|
|
38
|
+
label_studio_sdk/actions/types/actions_create_request_selected_items_included.py,sha256=Pd57blUopvSWgdR9fIEbEcTXk5yQXg25R4aT0TUtPN0,1426
|
|
39
|
+
label_studio_sdk/annotations/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
40
|
+
label_studio_sdk/annotations/client.py,sha256=KDg1s4ZOjsH0xUdATzdhruSguPzUCDyq66tEJU-QfeM,27317
|
|
41
|
+
label_studio_sdk/base_client.py,sha256=dZrD0tC9aSGYfp5dm1JWq8CnJD-xks_bLBHC-lNiJSs,8343
|
|
42
|
+
label_studio_sdk/client.py,sha256=FwX1wETMKX43ra3-ePztaZA37MlmuY12PJ1mqZp5OHI,879
|
|
43
|
+
label_studio_sdk/converter/__init__.py,sha256=qppSJed16HAiZbGons0yVrPRjszuWFia025Rm477q1c,201
|
|
44
|
+
label_studio_sdk/converter/audio.py,sha256=U9oTULkeimodZhIkB16Gl3eJD8YzsbADWxW_r2tPcxw,1905
|
|
45
|
+
label_studio_sdk/converter/brush.py,sha256=jRL3fLl_J06fVEX7Uat31ru0uUZ71C4zrXnX2qOcrIo,13370
|
|
46
|
+
label_studio_sdk/converter/converter.py,sha256=Ug9uOe7lw8Jv0lpcXZLt7rcGBXlLHW21sp_tSgazV6g,47721
|
|
47
|
+
label_studio_sdk/converter/exports/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
48
|
+
label_studio_sdk/converter/exports/csv.py,sha256=F4t04tFsg5gBXTZNmkjw_NeEVsobRH_Y_vfFDi7R0Zw,2865
|
|
49
|
+
label_studio_sdk/converter/exports/csv2.py,sha256=9FxcPtIDcuztDF-y4Z7Mm0AgbYUR1oMitYT6BlcOFes,3125
|
|
50
|
+
label_studio_sdk/converter/funsd.py,sha256=QHoa8hzWQLkZQ87e9EgURit9kGGUCgDxoRONcSzmWlw,2544
|
|
51
|
+
label_studio_sdk/converter/imports/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
52
|
+
label_studio_sdk/converter/imports/coco.py,sha256=cRoD1Z1xyekSLzPrzdMdA4bQtzR6VpZCkPF6JMpE2NY,10245
|
|
53
|
+
label_studio_sdk/converter/imports/colors.py,sha256=F5_K4FIhOZl6LNEIVT2UU5L8HcmY8VwAg1tOFpjJINI,3827
|
|
54
|
+
label_studio_sdk/converter/imports/label_config.py,sha256=8RT2Jppvi1-Sl3ZNDA1uFyHr2NoU4-gM26S9iAEuQh8,1218
|
|
55
|
+
label_studio_sdk/converter/imports/pathtrack.py,sha256=Xxxbw8fLLHTR57FEjVeeitjh35YbcIh_eVzuw2e5K9w,8096
|
|
56
|
+
label_studio_sdk/converter/imports/yolo.py,sha256=iu-8ay-QF6nT8Hy1rIzPpww1Y-9HnskgDk6yJ0q7YmI,8878
|
|
57
|
+
label_studio_sdk/converter/main.py,sha256=tB1HbxV_prR67tEjk-YLk4pLJ5isxQAsyChxaktEIaQ,6004
|
|
58
|
+
label_studio_sdk/converter/utils.py,sha256=etUjYJscKsqSGuFT4iK3AJmYm4NSK9hk6bLLu4L0aWQ,16143
|
|
59
|
+
label_studio_sdk/core/__init__.py,sha256=Io96G1IY5muGWXsxPKOkzYv3We4OJlBKMkUFvEYfVEQ,1054
|
|
60
|
+
label_studio_sdk/core/api_error.py,sha256=RE8LELok2QCjABadECTvtDp7qejA1VmINCh6TbqPwSE,426
|
|
61
|
+
label_studio_sdk/core/client_wrapper.py,sha256=cekz2gsAdUE5qmekCwSKsF6bfEQx_429B9CMqAfGHdA,1819
|
|
62
|
+
label_studio_sdk/core/datetime_utils.py,sha256=nBys2IsYrhPdszxGKCNRPSOCwa-5DWOHG95FB8G9PKo,1047
|
|
63
|
+
label_studio_sdk/core/file.py,sha256=sy1RUGZ3aJYuw998bZytxxo6QdgKmlnlgBaMvwEKCGg,1480
|
|
64
|
+
label_studio_sdk/core/http_client.py,sha256=te8HUpXCsq0v4_vTU6-5tYVg9xTiG-GWESOCH19Gyqo,17924
|
|
65
|
+
label_studio_sdk/core/jsonable_encoder.py,sha256=L6G68Py6gEo8n87rXwlkLPUyzHvXftEBjJZNb2tCuOA,3742
|
|
66
|
+
label_studio_sdk/core/pagination.py,sha256=ZfASbCAP0TsN2WmKijgaE61gh0oJqBMmyqtO2wqHw7o,3200
|
|
67
|
+
label_studio_sdk/core/pydantic_utilities.py,sha256=hI3vcpSG47sVlafyPol2T2ICt8HNMIu_rM9amc2zf7w,748
|
|
68
|
+
label_studio_sdk/core/query_encoder.py,sha256=sI6XiwFby-WRIk4MVN_5wlAlm30aCHE73Uvm09fb9qQ,1266
|
|
69
|
+
label_studio_sdk/core/remove_none_from_dict.py,sha256=EU9SGgYidWq7SexuJbNs4-PZ-5Bl3Vppd864mS6vQZw,342
|
|
70
|
+
label_studio_sdk/core/request_options.py,sha256=-3QoOMMHI2exIyHH6Q2MD7rpo_6w-i6zMAy0nqWTN8c,1420
|
|
71
|
+
label_studio_sdk/data_manager.py,sha256=IzmX9qokkVE51hrtX9IuXkLr80pVWSXq8Hp51-xDuHI,8309
|
|
72
|
+
label_studio_sdk/environment.py,sha256=f1MIpndh-RpLNXkkRNvyIWcCsC3hzMZ6y9VqHdhKH1k,158
|
|
73
|
+
label_studio_sdk/errors/__init__.py,sha256=otIvsa1TyrQXYDqWJvu4mtMYgdqqfCYy1cfv6wpNVKg,221
|
|
74
|
+
label_studio_sdk/errors/bad_request_error.py,sha256=cyaU3HXnyIS--6xv5DFA01VWbOQwzz1DU9PakGrzNp8,226
|
|
75
|
+
label_studio_sdk/errors/internal_server_error.py,sha256=K8Rm2Djj0ciGE0uDq3GHL-JTk8R23U2hBiH-84A4ZWY,230
|
|
76
|
+
label_studio_sdk/export_storage/__init__.py,sha256=wW7LC_rzYYCBltCSTTcW5jFO-eVJwIqtY13Ix0xp6JM,824
|
|
77
|
+
label_studio_sdk/export_storage/azure/__init__.py,sha256=WflFc5wcr-Pgvi8vGcNCTKOPaIKxy-_RgMx2qttAHYc,183
|
|
78
|
+
label_studio_sdk/export_storage/azure/client.py,sha256=nJQI83-UMo3aGb3CYN9CnpWnyP0Y96kZoD2ePpotVQE,32674
|
|
79
|
+
label_studio_sdk/export_storage/azure/types/__init__.py,sha256=dAtXM6WHJAIlHjlDaCGVEzpx3Xfryn4aQW7GGanmhW0,233
|
|
80
|
+
label_studio_sdk/export_storage/azure/types/azure_create_response.py,sha256=Zu0riMkx0og3uBYQRVqFx3zrIsn6dOT9cMwanZTkJjY,2010
|
|
81
|
+
label_studio_sdk/export_storage/azure/types/azure_update_response.py,sha256=wiLJKEuNTtBTC6j-S6bGhnODfGCzjDmuzsbcEhC66RE,2010
|
|
82
|
+
label_studio_sdk/export_storage/client.py,sha256=2txfhRQiPSGEGzP4WnDUbBVHER63iggfiT0ZeDeiXkk,4221
|
|
83
|
+
label_studio_sdk/export_storage/gcs/__init__.py,sha256=5XkGIewR3WCezQdWaR8pRTgix5TeXCLDSXESX4j34Ic,175
|
|
84
|
+
label_studio_sdk/export_storage/gcs/client.py,sha256=U559KJz_qEZmrzbWgzblSzpUFTeA8jFRnLAnUBnePWE,33367
|
|
85
|
+
label_studio_sdk/export_storage/gcs/types/__init__.py,sha256=w2BZvAw38wQdpWXh7zHugIuPA8up1kovWrWUoSunV3o,221
|
|
86
|
+
label_studio_sdk/export_storage/gcs/types/gcs_create_response.py,sha256=8HM36AqzO-A5bmaah9UCCMwT9WhNnYUkqVZhsL7C9aY,2123
|
|
87
|
+
label_studio_sdk/export_storage/gcs/types/gcs_update_response.py,sha256=GFL_uPbMLa-GpABHospyVmhJ86LIvy_HRmQ4iY3bNWI,2123
|
|
88
|
+
label_studio_sdk/export_storage/local/__init__.py,sha256=9MhvRmMHJluQwUD9ZFVNqjLiK16xe5OPj9B3wjfAGhA,183
|
|
89
|
+
label_studio_sdk/export_storage/local/client.py,sha256=y4o-6GvOicWtSgUNmdpW5iZA4DG1QtFqItoFQlpj80U,31900
|
|
90
|
+
label_studio_sdk/export_storage/local/types/__init__.py,sha256=Wq9THgEJ9B44IFniEH5VWl_jdyD1CSp_5BBFUQZVh34,233
|
|
91
|
+
label_studio_sdk/export_storage/local/types/local_create_response.py,sha256=j_g5iPxOXz125D3B6-2eiHkvQq7893hp3K_2FNzp4NQ,1988
|
|
92
|
+
label_studio_sdk/export_storage/local/types/local_update_response.py,sha256=RN4bZPtKiJfc2SM0Z2gDJUH8Hj3owpdg4QA4OIPt2cY,1988
|
|
93
|
+
label_studio_sdk/export_storage/redis/__init__.py,sha256=XGG2TewxEfq3ihh94ngOWlv6Uq4opCCDJAuZ4ATmAv8,183
|
|
94
|
+
label_studio_sdk/export_storage/redis/client.py,sha256=YHtFHVjhyQSyoCYQALfwv52n9MVzEaJ250XpNBRW1wU,32915
|
|
95
|
+
label_studio_sdk/export_storage/redis/types/__init__.py,sha256=IfAUyLrvgMGrEX_ATDY3A1j2MaK5xbEhGkAFv01i2G8,233
|
|
96
|
+
label_studio_sdk/export_storage/redis/types/redis_create_response.py,sha256=_T0cBqrF9BVTAB-9tYLC0tvRUie3pdYgUhANPxobDVQ,2119
|
|
97
|
+
label_studio_sdk/export_storage/redis/types/redis_update_response.py,sha256=U8f_pdm0a8ta__Abx0-xobsb_T3-b23J6jgKakseRvc,2119
|
|
98
|
+
label_studio_sdk/export_storage/s3/__init__.py,sha256=rx9uoPmoHyzvS_wdV3C5Fb6ZJVeJKU5Ouk5DexADJl4,171
|
|
99
|
+
label_studio_sdk/export_storage/s3/client.py,sha256=sAip0hvwz-iUKwxeJ27-VYta7Al2IkMq0zHHFkiKmjs,36548
|
|
100
|
+
label_studio_sdk/export_storage/s3/types/__init__.py,sha256=Qiv7JBYh7srMTsdVLmsF7cg_jYumAokCUbh2jrNNE8c,213
|
|
101
|
+
label_studio_sdk/export_storage/s3/types/s3create_response.py,sha256=Hf3IfoWAOVDgqS3IHgUqZ1xHL8T3CT6aNqUE-avCzdI,2544
|
|
102
|
+
label_studio_sdk/export_storage/s3/types/s3update_response.py,sha256=L2YxK-IYnlScYO9LHkkirZfL15ztRKmMQLWttyEK4mE,2544
|
|
103
|
+
label_studio_sdk/export_storage/types/__init__.py,sha256=G7iAfiRBL1WTYsluefJV4ZFUaBmK4mMp9sAMPJ7NZbw,203
|
|
104
|
+
label_studio_sdk/export_storage/types/export_storage_list_types_response_item.py,sha256=3iRzkMqLe_ohc-XWg0h9s9jzgXx-omXsyGUZNY7R04U,1199
|
|
105
|
+
label_studio_sdk/files/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
106
|
+
label_studio_sdk/files/client.py,sha256=R62FXgbMeyRdce-YtaVS_qxWTGBpf0ur9OJg3TXDnN0,19016
|
|
107
|
+
label_studio_sdk/import_storage/__init__.py,sha256=6hqg5mP0s0Wqa0Me-I0opNQG777CiS1JWxB_pLf2Ci8,824
|
|
108
|
+
label_studio_sdk/import_storage/azure/__init__.py,sha256=WflFc5wcr-Pgvi8vGcNCTKOPaIKxy-_RgMx2qttAHYc,183
|
|
109
|
+
label_studio_sdk/import_storage/azure/client.py,sha256=61nzkleFx7O2UNcO5INLw-DAObjqgLgpA8qy2Dn1Pbc,38228
|
|
110
|
+
label_studio_sdk/import_storage/azure/types/__init__.py,sha256=dAtXM6WHJAIlHjlDaCGVEzpx3Xfryn4aQW7GGanmhW0,233
|
|
111
|
+
label_studio_sdk/import_storage/azure/types/azure_create_response.py,sha256=OHuLEtCZrL3uFcmNEIgOLBWji8GUn6sR6O-u3IQh1qg,2645
|
|
112
|
+
label_studio_sdk/import_storage/azure/types/azure_update_response.py,sha256=k7CABNhX8iNKL11RV5BElgp20uwoIHpSP3wL7HWX3bM,2645
|
|
113
|
+
label_studio_sdk/import_storage/client.py,sha256=0fg56P47iTjAvMWshMKwKyNGCJ_C5Y26ALnuJC55H9k,4207
|
|
114
|
+
label_studio_sdk/import_storage/gcs/__init__.py,sha256=5XkGIewR3WCezQdWaR8pRTgix5TeXCLDSXESX4j34Ic,175
|
|
115
|
+
label_studio_sdk/import_storage/gcs/client.py,sha256=pnCJTo38Q4Ub0no_TgQDj7_ojHNnjkKyhd9MlYJcgWU,38939
|
|
116
|
+
label_studio_sdk/import_storage/gcs/types/__init__.py,sha256=w2BZvAw38wQdpWXh7zHugIuPA8up1kovWrWUoSunV3o,221
|
|
117
|
+
label_studio_sdk/import_storage/gcs/types/gcs_create_response.py,sha256=cnIsfSPPYxNNlSyrMIjqs1r_E3lrMbYH-swSfipbmKQ,2757
|
|
118
|
+
label_studio_sdk/import_storage/gcs/types/gcs_update_response.py,sha256=HUuS3tq4ZEDzyw5xOJW9m1i21iXJh3zgffM1EYaw3UQ,2757
|
|
119
|
+
label_studio_sdk/import_storage/local/__init__.py,sha256=9MhvRmMHJluQwUD9ZFVNqjLiK16xe5OPj9B3wjfAGhA,183
|
|
120
|
+
label_studio_sdk/import_storage/local/client.py,sha256=DFmZmH3pxo-Yq4l_6L20XqDq98egF5l2ePmLWODGl_c,32532
|
|
121
|
+
label_studio_sdk/import_storage/local/types/__init__.py,sha256=Wq9THgEJ9B44IFniEH5VWl_jdyD1CSp_5BBFUQZVh34,233
|
|
122
|
+
label_studio_sdk/import_storage/local/types/local_create_response.py,sha256=j_g5iPxOXz125D3B6-2eiHkvQq7893hp3K_2FNzp4NQ,1988
|
|
123
|
+
label_studio_sdk/import_storage/local/types/local_update_response.py,sha256=RN4bZPtKiJfc2SM0Z2gDJUH8Hj3owpdg4QA4OIPt2cY,1988
|
|
124
|
+
label_studio_sdk/import_storage/redis/__init__.py,sha256=XGG2TewxEfq3ihh94ngOWlv6Uq4opCCDJAuZ4ATmAv8,183
|
|
125
|
+
label_studio_sdk/import_storage/redis/client.py,sha256=NBhw7k_6KwgPWzjQ_AGsAusVkRkchiVVfo8oI2Qf4Ak,35235
|
|
126
|
+
label_studio_sdk/import_storage/redis/types/__init__.py,sha256=IfAUyLrvgMGrEX_ATDY3A1j2MaK5xbEhGkAFv01i2G8,233
|
|
127
|
+
label_studio_sdk/import_storage/redis/types/redis_create_response.py,sha256=5GhrJWkBZJm_EHgu5Sx1UGy56fIUbI-9xU6xgkmF_yU,2399
|
|
128
|
+
label_studio_sdk/import_storage/redis/types/redis_update_response.py,sha256=Rr0z-tloLT3wuV0nOCHGivQyXTG3eNmhBfpd4sER0Gk,2399
|
|
129
|
+
label_studio_sdk/import_storage/s3/__init__.py,sha256=rx9uoPmoHyzvS_wdV3C5Fb6ZJVeJKU5Ouk5DexADJl4,171
|
|
130
|
+
label_studio_sdk/import_storage/s3/client.py,sha256=0OCk3nUZyvgMf4JbpOcpujPgHmyAjhdP-Phwgt_De14,43150
|
|
131
|
+
label_studio_sdk/import_storage/s3/types/__init__.py,sha256=Qiv7JBYh7srMTsdVLmsF7cg_jYumAokCUbh2jrNNE8c,213
|
|
132
|
+
label_studio_sdk/import_storage/s3/types/s3create_response.py,sha256=-Y0PL9zqB3Kmd-Bcwdjf3or1-Mer3d17dtbKyzW1_j8,3285
|
|
133
|
+
label_studio_sdk/import_storage/s3/types/s3update_response.py,sha256=Y6Oi6iLERXP_lvl48uF5b_A4GY-LysZJSIZ2JnwWDa0,3285
|
|
134
|
+
label_studio_sdk/import_storage/types/__init__.py,sha256=LSPRtCZ04H1CRzFC6KQnse2KDh5Weeo9IPmRoluhvoc,203
|
|
135
|
+
label_studio_sdk/import_storage/types/import_storage_list_types_response_item.py,sha256=dXfZjNrSliDu9nDP3jrNfxPOUAyILN7vJ6_uArkMiY0,1199
|
|
136
|
+
label_studio_sdk/label_interface/__init__.py,sha256=Eg6y3mAaYdKzJ5ZPhU_BTX2qoNPafthdxLD2I_rmXoU,38
|
|
137
|
+
label_studio_sdk/label_interface/base.py,sha256=KnsmCkBAGXw_2WNKg5PQ88qjqoUbFiEnvK-DDcKXcg4,2776
|
|
138
|
+
label_studio_sdk/label_interface/control_tags.py,sha256=J4kB-q1KZaOnrnRvEFhng_GsXEKiBWTw6I7ADaoLqU8,22090
|
|
139
|
+
label_studio_sdk/label_interface/data_examples.json,sha256=uCYvCtMIxPi1-jLlFhwJPh01tLyMIRwTjINeAeW-JzE,8195
|
|
140
|
+
label_studio_sdk/label_interface/interface.py,sha256=VVZ6htWBSHedK2X_48GEl0geFk03vaU6eii-s-K8gis,35042
|
|
141
|
+
label_studio_sdk/label_interface/label_tags.py,sha256=nWEo21Gd8IPzIO72UqraLrChIbvrSMCA_eEhzYGnGCc,2282
|
|
142
|
+
label_studio_sdk/label_interface/object_tags.py,sha256=jZb4OVXjgB_MyHzOyexXZvwKXe2kBw3QgThtNDDAO14,8154
|
|
143
|
+
label_studio_sdk/label_interface/region.py,sha256=fNZgPESjSQtKTwG8XLOtTttn6eU63kTGe5qMudDoTB0,1845
|
|
144
|
+
label_studio_sdk/ml/__init__.py,sha256=J4ncAcAOU_qriOx_Im9eFmXyupKM19SXMcpMcXSmw-I,455
|
|
145
|
+
label_studio_sdk/ml/client.py,sha256=PkwLvK3JO6CEwfqrVBUQJi8FaYUSRoayTqryGtt5LsI,35591
|
|
146
|
+
label_studio_sdk/ml/types/__init__.py,sha256=P6nY1akoIWZ95wDY3iQJGvp9VdM9Kifj7fTCVrdf6qw,640
|
|
147
|
+
label_studio_sdk/ml/types/ml_create_request_auth_method.py,sha256=2toHmZJAOMq_r_r-kHCscI5R73j0hvSflVFc_xS6zm8,171
|
|
148
|
+
label_studio_sdk/ml/types/ml_create_response.py,sha256=pFCJak_id-drVOiIiY7HPSMHMP5gmTdnmX-Rr1azGbc,2290
|
|
149
|
+
label_studio_sdk/ml/types/ml_create_response_auth_method.py,sha256=rvp28YgqeQY9UOPo_vpXHU3cD0A-hN4cNqS0q9ifzAs,172
|
|
150
|
+
label_studio_sdk/ml/types/ml_update_request_auth_method.py,sha256=IfZm_tgqLZ9LaRZvOm_1_SGqx0kXtkxOfCeomLF0SZk,171
|
|
151
|
+
label_studio_sdk/ml/types/ml_update_response.py,sha256=GhueuUxG0eAqBCQO0KzS2X0hBil6UdR_6-5GS-7b5sE,2290
|
|
152
|
+
label_studio_sdk/ml/types/ml_update_response_auth_method.py,sha256=1AhvSHg_qDNKx0bV_vaBdqioaSnbC6wNCIPdFbr9Czg,172
|
|
153
|
+
label_studio_sdk/predictions/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
154
|
+
label_studio_sdk/predictions/client.py,sha256=2lsZH8_WMUa6nRNJ1igA0pHHE2AdUIzcLHOn9jlgOqE,25569
|
|
155
|
+
label_studio_sdk/projects/__init__.py,sha256=XHzKx2ttQBr1tcp4xyoMiNpbfQoY71fqqEh_AWjWu1k,284
|
|
156
|
+
label_studio_sdk/projects/client.py,sha256=yddSkwzCEvMymse7eBakZ1cyuQXBrdy8vML5y_oScRE,42726
|
|
157
|
+
label_studio_sdk/projects/client_ext.py,sha256=9Wa_Jd6mDV98d5_LEgeBuWz0c04R_PvkQiwEtZTu9zU,573
|
|
158
|
+
label_studio_sdk/projects/exports/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
159
|
+
label_studio_sdk/projects/exports/client.py,sha256=l6xLfVe532YJQRrdG50-bxk2BfLaYji_5NIS-7ksloM,35783
|
|
160
|
+
label_studio_sdk/projects/types/__init__.py,sha256=Ui_c86Dq2E_2fStSNhwgxwi_3JjoO-YwCqTgiMPxu-k,348
|
|
161
|
+
label_studio_sdk/projects/types/projects_create_response.py,sha256=fgIEN2_u1EG7CH9VCPNdxRn6ekwXy5Cawf5_2VXeLGk,3391
|
|
162
|
+
label_studio_sdk/projects/types/projects_import_tasks_response.py,sha256=QleGWz6JFzesJzf8cOCwQ-RbfM5Ig8dmGJXgkkxeUgU,2233
|
|
163
|
+
label_studio_sdk/projects/types/projects_list_response.py,sha256=6iZSgnw8O5FRizmgobiVKqWJC1UjcXQLWduhJs-9CzU,1274
|
|
164
|
+
label_studio_sdk/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
165
|
+
label_studio_sdk/tasks/__init__.py,sha256=a30krVHgQie5L6dCoFHY2FinuDWikj_gQUCGalFhVa8,185
|
|
166
|
+
label_studio_sdk/tasks/client.py,sha256=lj4DCprYjpBMCL4sya_FbKhWGb173b-Ng9S7WJPT3Rk,30819
|
|
167
|
+
label_studio_sdk/tasks/client_ext.py,sha256=zOOUKUufEcB89AuwfQ6uFIUIai0k0dS23Sn0V0QQWWI,548
|
|
168
|
+
label_studio_sdk/tasks/types/__init__.py,sha256=F5n2075irgvO9TyLAXzp26Tybg_lxMC56UySZzHby8I,237
|
|
169
|
+
label_studio_sdk/tasks/types/tasks_list_request_fields.py,sha256=5YXxQgyzoaL0QjSE-aLs_fepCUuzj28iqUndh5NxGGg,166
|
|
170
|
+
label_studio_sdk/tasks/types/tasks_list_response.py,sha256=Jc-ncfOVi6b9fFVspOdosE0AKlLto6w7bcURr4F72_E,1705
|
|
171
|
+
label_studio_sdk/types/__init__.py,sha256=d-D2OV-PAhWrzrLZQ1tRFFsvG1BujJkPNib3BxK8M_4,4237
|
|
172
|
+
label_studio_sdk/types/annotation.py,sha256=EJaFw_Lo5aFNCk4hw4AfR9iobADkJjTNKzRxOdJFYS0,3649
|
|
173
|
+
label_studio_sdk/types/annotation_filter_options.py,sha256=_MjVVtTtQCb7hq7g9HnfFPktp4mb5n_ut7TL05mL7JQ,1495
|
|
174
|
+
label_studio_sdk/types/annotation_last_action.py,sha256=g1CU8ypFyneqqf_eWtNH-lC6Q_h1i_IporC-Fq6nkxs,392
|
|
175
|
+
label_studio_sdk/types/azure_blob_export_storage.py,sha256=JR3tu4ZYlKXVoVUFZYPdOvbWzcOLQfwGVAYsXDt6XUU,3343
|
|
176
|
+
label_studio_sdk/types/azure_blob_export_storage_status.py,sha256=rk2DtXXxbEwpUQPBgmwIr2Do3j3LbgwGSPk8yZeb8ow,221
|
|
177
|
+
label_studio_sdk/types/azure_blob_import_storage.py,sha256=JI9GNcFSACNxq00ngbVzoKsCmbRnOkkgNBbdhl3A4EA,3379
|
|
178
|
+
label_studio_sdk/types/azure_blob_import_storage_status.py,sha256=wc2Dqk2tVZS0a-Vc8GRs1GC24CphSjYVT_S6c--pmBI,221
|
|
179
|
+
label_studio_sdk/types/base_task.py,sha256=RJIyJO-x46pz5rs5FmTAr4dAAbGVCRUHioRsGu5GwKU,3962
|
|
180
|
+
label_studio_sdk/types/base_user.py,sha256=vpeAF07_xu5wpZRDagVilzvajzXqOH4em47PH12BuCI,1636
|
|
181
|
+
label_studio_sdk/types/converted_format.py,sha256=isfQtXCd_IQUJvefLdhAD4sXgH_hYTq3zOFILml372k,1400
|
|
182
|
+
label_studio_sdk/types/converted_format_status.py,sha256=27Ty_98TvKo1ENlvy10HH6HWXKifB2AYIb_NeTY4D7E,194
|
|
183
|
+
label_studio_sdk/types/export.py,sha256=S83GXux12agpJ-MUjI6xz6muOanoedz8GiS8FVbEuL0,1806
|
|
184
|
+
label_studio_sdk/types/export_convert.py,sha256=Y586VED5B9QMycAZKC-trEuIVfzvwzoPAis3FnGo-j0,1182
|
|
185
|
+
label_studio_sdk/types/export_create.py,sha256=vctribqAJAYhC0kG2lHWml8TiMjiSOXFDJa2ApDjIss,2219
|
|
186
|
+
label_studio_sdk/types/export_create_status.py,sha256=pr1J3ZP4XR3OK8CK5EUJro7dxy2POQOkTZ_KQrJ0Fms,191
|
|
187
|
+
label_studio_sdk/types/export_status.py,sha256=7urrGSPIpU9yQ9c2nSuxVVZa-edISEkkadPuxtmE-hc,185
|
|
188
|
+
label_studio_sdk/types/file_upload.py,sha256=OvnsEfRKuqnAvAgsgkwlUEW1YVj17mBzt4fIiRYwcV8,1170
|
|
189
|
+
label_studio_sdk/types/filter.py,sha256=N2L5iVxIEwPtajoywK0iKdlYmYRS_E4c6MkG2nI65Os,1575
|
|
190
|
+
label_studio_sdk/types/filter_group.py,sha256=gU4swTrd2YXU1y7AOoefZFzdXxsA_ftmwyz8YzMXIRs,1276
|
|
191
|
+
label_studio_sdk/types/gcs_export_storage.py,sha256=P3mSgrFaU3IEeC31WObpF-hjlC7Y0Les8EeVt4QAF0Q,3356
|
|
192
|
+
label_studio_sdk/types/gcs_export_storage_status.py,sha256=RvUZ-3_sF7GgkgsC_N48r8bELZbM_tXZvEqcNSyxZQ4,215
|
|
193
|
+
label_studio_sdk/types/gcs_import_storage.py,sha256=Dp8Kmx_OkDz24fm800WQ5coCM67N-7RZYbUA34isUEk,3392
|
|
194
|
+
label_studio_sdk/types/gcs_import_storage_status.py,sha256=5ZZBCd9tZEwbfi5pTV5t_MLndYkUlRrHK99r2SWb8oo,215
|
|
195
|
+
label_studio_sdk/types/local_files_export_storage.py,sha256=-ffbPW5-IvnlbavSEfp25rl1M1mVq-kitl0txbTR858,2973
|
|
196
|
+
label_studio_sdk/types/local_files_export_storage_status.py,sha256=zgBmQ0v7w8O061lIZoymrX-CdTR3m8ZDjEUh6XWBP8U,222
|
|
197
|
+
label_studio_sdk/types/local_files_import_storage.py,sha256=9iAyCAPSvyRmvJ0cwYnp5DppQio7UQZONUEqlPsd5wk,2842
|
|
198
|
+
label_studio_sdk/types/local_files_import_storage_status.py,sha256=eFkyIxGzPrHN_xU1sU28LuZFKZSVoOGfEUPnikb0dF0,222
|
|
199
|
+
label_studio_sdk/types/ml_backend.py,sha256=Q6VSYnG4Tq9EtA71ufP0iKjml7-G6rvmolLolH0tYNg,3043
|
|
200
|
+
label_studio_sdk/types/ml_backend_auth_method.py,sha256=T5dI6mk4xn2RnBL3rRqEf3sXFMcj1PzmQcMO_EMH_1s,165
|
|
201
|
+
label_studio_sdk/types/ml_backend_state.py,sha256=yIwkALw4EERwbjtpKXqggx-DDLuJthc84LQ_KcVmyfQ,168
|
|
202
|
+
label_studio_sdk/types/prediction.py,sha256=h75ydes7dMEtGeug6r1VE41vy2yWmvD0m8Qo5hWxliA,2624
|
|
203
|
+
label_studio_sdk/types/project.py,sha256=3oHQ9eWJy5D16zYmzD6onffPSrJA7vhsdPvLS7jSJlY,7273
|
|
204
|
+
label_studio_sdk/types/project_import.py,sha256=u-ts8lF3fykKMkWEu9Y2fbCxjkwqpEhX-B0Ex4JqhbM,2529
|
|
205
|
+
label_studio_sdk/types/project_import_status.py,sha256=FEFdU3D0_Ga9dDv-yNjcr3ATm8VhmBg5xKYm6DXP_e0,192
|
|
206
|
+
label_studio_sdk/types/project_label_config.py,sha256=46u55A8H4i9noIfwWIUQEFMoI8150mQ0GovPoA-o7bk,1231
|
|
207
|
+
label_studio_sdk/types/project_sampling.py,sha256=m5ui0EJ-KbUgyx3d92JtI8tVaRKGqP2YHrvX3yGXIFU,212
|
|
208
|
+
label_studio_sdk/types/project_skip_queue.py,sha256=9DE5IpEBmm6QCIVqG0deISOCo_vHpfaEmHXGpf17UeA,198
|
|
209
|
+
label_studio_sdk/types/redis_export_storage.py,sha256=v6rjzqJnA3cSevwgr3Q-hjF5EYnJLkX1RSTTRNxH3EA,3419
|
|
210
|
+
label_studio_sdk/types/redis_export_storage_status.py,sha256=yOqhEQ2CSOJP3mQr6bPfARVROGi9YZwnM9bBM1CZCZM,217
|
|
211
|
+
label_studio_sdk/types/redis_import_storage.py,sha256=aIVNdfD9_6yfyicgPF15v08-552pbAAYDbeZJoAY8a0,3288
|
|
212
|
+
label_studio_sdk/types/redis_import_storage_status.py,sha256=KmGl0_RWK20owkGdLZ2Tx19v7fZrSSBDhN-SScYh5hM,217
|
|
213
|
+
label_studio_sdk/types/s3export_storage.py,sha256=YdsbJuUIhy9aUtIT2ExPtjM4C4K_WDTUsCGw2563s9Y,3849
|
|
214
|
+
label_studio_sdk/types/s3export_storage_status.py,sha256=HYCH0ZH90Oi-_1WgOo6d19rFm5JJ9M7tn5tVPL71P70,214
|
|
215
|
+
label_studio_sdk/types/s3import_storage.py,sha256=ztrH-qqQnpZvgZSSE_l06ZK9GvS6vKE1W1HEUeVHwxA,4029
|
|
216
|
+
label_studio_sdk/types/s3import_storage_status.py,sha256=tufP_yMEimX4e3hzGPmKqVdDPNeaT4P178fBx3BmgIk,214
|
|
217
|
+
label_studio_sdk/types/serialization_option.py,sha256=WQqHZTqXTERA_83fkPsjxq1yTMj9DsOnfDJy76Xh3xo,1278
|
|
218
|
+
label_studio_sdk/types/serialization_options.py,sha256=FKubgrOGtD3t6Xi7N81zJxWV6WkWmu0WOrq1WD289TA,1774
|
|
219
|
+
label_studio_sdk/types/task.py,sha256=guuakI3ZRl4CdjEtZbbpM8v734Z9nR9pDkk2GrBWcGs,4637
|
|
220
|
+
label_studio_sdk/types/task_filter_options.py,sha256=ECmGUKl-lGXEr5BLkh2enPJMpnHkA3P-Niof_i6AB0A,1926
|
|
221
|
+
label_studio_sdk/types/user_simple.py,sha256=KfBGAEKWcJfoevRTCsrK1zYa81MXJcUf1IQ9p95nqVA,1333
|
|
222
|
+
label_studio_sdk/types/view.py,sha256=zIlUL8kgko-Gjdijjzz9L_zgHJfRFSSHJUQIUaX6D4Y,1797
|
|
223
|
+
label_studio_sdk/types/webhook.py,sha256=gENfSADQyunKAEZlb6sf3OqomvEkXCJlQWCVwScCGmg,2207
|
|
224
|
+
label_studio_sdk/types/webhook_actions_item.py,sha256=OoAuMbb97W5R4FtLDtegBkKuJtltFt0H4hfmFuIi9zM,503
|
|
225
|
+
label_studio_sdk/types/webhook_serializer_for_update.py,sha256=3dw35L3UXqh1T6mSpJ5vY-gTie9HWfYW8MgyumWNC3o,2286
|
|
226
|
+
label_studio_sdk/types/webhook_serializer_for_update_actions_item.py,sha256=_kTzRVAWkv1jTqXqWCS3Zx9BRfvXXzxmYRXCAeMwELc,522
|
|
227
|
+
label_studio_sdk/users/__init__.py,sha256=UKVMXjtKsr9fAtH1ipr6YPmY5tdrJjELYN4Cb3l56-I,195
|
|
228
|
+
label_studio_sdk/users/client.py,sha256=ulONDLPHNaZeUMFBwFZTYoq-igFgKHn6U7FmZ6derK0,27628
|
|
229
|
+
label_studio_sdk/users/types/__init__.py,sha256=piwIvEOYFNLlEeWae92M9zoJ-LX6-7C-agJXUtnSgNY,253
|
|
230
|
+
label_studio_sdk/users/types/users_get_token_response.py,sha256=YIejH3pLDEX-t2VvNlFIYvHgsrjh1rWzYryJQV8o6Gk,1234
|
|
231
|
+
label_studio_sdk/users/types/users_reset_token_response.py,sha256=UJ-3wToXII5gdPhvHH_NOyycAhBNq-zCKnIh0Xx2SGY,1235
|
|
232
|
+
label_studio_sdk/version.py,sha256=Eku78MTxkaZ9PVTy-mNpvYkPrxl_z3iFk0EtJr4ESTM,84
|
|
233
|
+
label_studio_sdk/views/__init__.py,sha256=Uk1XymsEilbfS_Rpg8t_iiPDAOMu0DnotdZNv_fuZTU,1311
|
|
234
|
+
label_studio_sdk/views/client.py,sha256=kmVD3MnfkVnCesncBeQsyNr07zY5PIKU3Ba14gCs9uU,18979
|
|
235
|
+
label_studio_sdk/views/types/__init__.py,sha256=hnFtg6bC-Lpbqu9Ul0akQ4XR9ogIgypC8089P392v48,1994
|
|
236
|
+
label_studio_sdk/views/types/views_create_request_data.py,sha256=6pvIRFJrvtYtaQMZP7bQ3hsEF6oSTgZE-jaR2Os-c_0,2068
|
|
237
|
+
label_studio_sdk/views/types/views_create_request_data_filters.py,sha256=09RLdykGPKS13AXM8N1RJ9QVY7Lq0Ctvtw0mOqtaxRY,2173
|
|
238
|
+
label_studio_sdk/views/types/views_create_request_data_filters_conjunction.py,sha256=oAmyia_O5bN1oYIIctlXLuW9CkAXr8uZxGGtY-O522Q,177
|
|
239
|
+
label_studio_sdk/views/types/views_create_request_data_filters_items_item.py,sha256=0SaS_ra2JIB1D5cRAS9RKnWxjcG9JR3FZ6bD9oGNcb8,5429
|
|
240
|
+
label_studio_sdk/views/types/views_create_request_data_filters_items_item_filter.py,sha256=e1118ZrVc677US1CWIyVNL-JKveP7BWgvzVQ9E5E3ak,1037
|
|
241
|
+
label_studio_sdk/views/types/views_create_request_data_filters_items_item_operator.py,sha256=t0gj-aTmFPmsd4Q7vA7GCkEY3ABX95Rq1rC9-0-So6I,474
|
|
242
|
+
label_studio_sdk/views/types/views_create_request_data_ordering_item.py,sha256=vVlxUECgxTicZ5GkoOj90Wa1HL7LqBy8gTANo6iC3XU,873
|
|
243
|
+
label_studio_sdk/views/types/views_update_request_data.py,sha256=JRZ35h6usprkIQSD-5KhC253lLLLBnO4Fx-juQ5IisI,2068
|
|
244
|
+
label_studio_sdk/views/types/views_update_request_data_filters.py,sha256=05PoW8owGbdW08o7s_pLarxmYLDGTWvEmPgDz9SF-as,2173
|
|
245
|
+
label_studio_sdk/views/types/views_update_request_data_filters_conjunction.py,sha256=ilxbjT2_JkExn6ITSsqugnAw4kw38ihq1MZLh0aw9OI,177
|
|
246
|
+
label_studio_sdk/views/types/views_update_request_data_filters_items_item.py,sha256=tj1um-plqYpKTwXSWH_hZl6wBNN5mIxwgqaS0kxTsSs,5429
|
|
247
|
+
label_studio_sdk/views/types/views_update_request_data_filters_items_item_filter.py,sha256=76A7qVzjt5wtbhX2zch4AXbwtz-734NS3Im7Y7F_p6A,1037
|
|
248
|
+
label_studio_sdk/views/types/views_update_request_data_filters_items_item_operator.py,sha256=TL_v2wADS00zfQdOvYAOksMCXKmooWP9qossf7MS44w,474
|
|
249
|
+
label_studio_sdk/views/types/views_update_request_data_ordering_item.py,sha256=6TjHuKVqsCJ2SHWncUTVue182zx8a2ADu0_JOBSFaj4,873
|
|
250
|
+
label_studio_sdk/webhooks/__init__.py,sha256=0DSbAQyqXqt6PKwuuIVD7omuduXEibruIm5h0_68EKk,165
|
|
251
|
+
label_studio_sdk/webhooks/client.py,sha256=jAAN8y1f5uS4MjHV_TRFY2syHzHliqBx83s16hJg4ow,23277
|
|
252
|
+
label_studio_sdk/webhooks/types/__init__.py,sha256=NAHGRDDJqPr2fve8K4XwAV8Dr-OfLPhGmamY_VCzSvk,196
|
|
253
|
+
label_studio_sdk/webhooks/types/webhooks_update_request_actions_item.py,sha256=qBGwoU6G5uRwDGdJCXgqjJ2TzVLcak3sNObxMCgOjJg,517
|
|
254
|
+
label_studio_sdk-1.0.1.dist-info/METADATA,sha256=GacPm9jxja9ZDJCXmnugdwPcnZm047pZhMxq2DmMrrg,4692
|
|
255
|
+
label_studio_sdk-1.0.1.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
256
|
+
label_studio_sdk-1.0.1.dist-info/RECORD,,
|
label_studio_sdk/objects.py
DELETED
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
from typing import Type, Dict, Optional, List, Tuple, Any, Union
|
|
2
|
-
from pydantic import BaseModel, confloat
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
class PredictionValue(BaseModel):
|
|
6
|
-
""" """
|
|
7
|
-
|
|
8
|
-
model_version: Optional[Any] = None
|
|
9
|
-
score: Optional[float] = 0.00
|
|
10
|
-
result: Optional[List[Any]] = []
|
|
11
|
-
# cluster: Optional[Any] = None
|
|
12
|
-
# neighbors: Optional[Any] = None
|
|
13
|
-
|
|
14
|
-
def serialize(self):
|
|
15
|
-
from label_studio_sdk.label_interface.region import Region
|
|
16
|
-
|
|
17
|
-
return {
|
|
18
|
-
"model_version": self.model_version,
|
|
19
|
-
"score": self.score,
|
|
20
|
-
"result": [r._dict() if isinstance(r, Region) else r for r in self.result],
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
class AnnotationValue(BaseModel):
|
|
25
|
-
""" """
|
|
26
|
-
|
|
27
|
-
result: Optional[List[dict]]
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
class TaskValue(BaseModel):
|
|
31
|
-
""" """
|
|
32
|
-
|
|
33
|
-
data: Optional[dict]
|
|
34
|
-
annotations: Optional[List[AnnotationValue]]
|
|
35
|
-
predictions: Optional[List[PredictionValue]]
|