label-studio-sdk 0.0.34__py3-none-any.whl → 1.0.0__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.
- label_studio_sdk/__init__.py +206 -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/_legacy/__init__.py +11 -0
- label_studio_sdk/_legacy/client.py +471 -0
- label_studio_sdk/_legacy/label_interface/data_examples.json +96 -0
- label_studio_sdk/{label_interface → _legacy/label_interface}/interface.py +9 -6
- label_studio_sdk/{project.py → _legacy/project.py} +2 -2
- label_studio_sdk/actions/__init__.py +2 -0
- label_studio_sdk/actions/client.py +150 -0
- label_studio_sdk/annotations/__init__.py +2 -0
- label_studio_sdk/annotations/client.py +750 -0
- label_studio_sdk/client.py +162 -450
- 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 +443 -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 +722 -0
- label_studio_sdk/export_storage/azure/types/__init__.py +6 -0
- label_studio_sdk/export_storage/azure/types/azure_create_response.py +52 -0
- label_studio_sdk/export_storage/azure/types/azure_update_response.py +52 -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 +722 -0
- label_studio_sdk/export_storage/gcs/types/__init__.py +6 -0
- label_studio_sdk/export_storage/gcs/types/gcs_create_response.py +52 -0
- label_studio_sdk/export_storage/gcs/types/gcs_update_response.py +52 -0
- label_studio_sdk/export_storage/local/__init__.py +5 -0
- label_studio_sdk/export_storage/local/client.py +688 -0
- label_studio_sdk/export_storage/local/types/__init__.py +6 -0
- label_studio_sdk/export_storage/local/types/local_create_response.py +47 -0
- label_studio_sdk/export_storage/local/types/local_update_response.py +47 -0
- label_studio_sdk/export_storage/redis/__init__.py +5 -0
- label_studio_sdk/export_storage/redis/client.py +714 -0
- label_studio_sdk/export_storage/redis/types/__init__.py +6 -0
- label_studio_sdk/export_storage/redis/types/redis_create_response.py +57 -0
- label_studio_sdk/export_storage/redis/types/redis_update_response.py +57 -0
- label_studio_sdk/export_storage/s3/__init__.py +5 -0
- label_studio_sdk/export_storage/s3/client.py +820 -0
- label_studio_sdk/export_storage/s3/types/__init__.py +6 -0
- label_studio_sdk/export_storage/s3/types/s3create_response.py +74 -0
- label_studio_sdk/export_storage/s3/types/s3update_response.py +74 -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 +812 -0
- label_studio_sdk/import_storage/azure/types/__init__.py +6 -0
- label_studio_sdk/import_storage/azure/types/azure_create_response.py +72 -0
- label_studio_sdk/import_storage/azure/types/azure_update_response.py +72 -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 +812 -0
- label_studio_sdk/import_storage/gcs/types/__init__.py +6 -0
- label_studio_sdk/import_storage/gcs/types/gcs_create_response.py +72 -0
- label_studio_sdk/import_storage/gcs/types/gcs_update_response.py +72 -0
- label_studio_sdk/import_storage/local/__init__.py +5 -0
- label_studio_sdk/import_storage/local/client.py +690 -0
- label_studio_sdk/import_storage/local/types/__init__.py +6 -0
- label_studio_sdk/import_storage/local/types/local_create_response.py +47 -0
- label_studio_sdk/import_storage/local/types/local_update_response.py +47 -0
- label_studio_sdk/import_storage/redis/__init__.py +5 -0
- label_studio_sdk/import_storage/redis/client.py +768 -0
- label_studio_sdk/import_storage/redis/types/__init__.py +6 -0
- label_studio_sdk/import_storage/redis/types/redis_create_response.py +62 -0
- label_studio_sdk/import_storage/redis/types/redis_update_response.py +62 -0
- label_studio_sdk/import_storage/s3/__init__.py +5 -0
- label_studio_sdk/import_storage/s3/client.py +912 -0
- label_studio_sdk/import_storage/s3/types/__init__.py +6 -0
- label_studio_sdk/import_storage/s3/types/s3create_response.py +99 -0
- label_studio_sdk/import_storage/s3/types/s3update_response.py +99 -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/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 +1053 -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 +811 -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 +31 -0
- label_studio_sdk/views/client.py +564 -0
- label_studio_sdk/views/types/__init__.py +29 -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 +47 -0
- label_studio_sdk/views/types/views_create_request_data_ordering_item.py +38 -0
- label_studio_sdk/views/types/views_create_request_data_ordering_item_direction.py +5 -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 +47 -0
- label_studio_sdk/views/types/views_update_request_data_ordering_item.py +38 -0
- label_studio_sdk/views/types/views_update_request_data_ordering_item_direction.py +5 -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.0.dist-info/METADATA +307 -0
- label_studio_sdk-1.0.0.dist-info/RECORD +239 -0
- {label_studio_sdk-0.0.34.dist-info → label_studio_sdk-1.0.0.dist-info}/WHEEL +1 -2
- 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/{label_interface → _legacy/label_interface}/__init__.py +0 -0
- /label_studio_sdk/{label_interface → _legacy/label_interface}/base.py +0 -0
- /label_studio_sdk/{label_interface → _legacy/label_interface}/control_tags.py +0 -0
- /label_studio_sdk/{label_interface → _legacy/label_interface}/label_tags.py +0 -0
- /label_studio_sdk/{label_interface → _legacy/label_interface}/object_tags.py +0 -0
- /label_studio_sdk/{label_interface → _legacy/label_interface}/region.py +0 -0
- /label_studio_sdk/{objects.py → _legacy/objects.py} +0 -0
- /label_studio_sdk/{schema → _legacy/schema}/label_config_schema.json +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,307 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: label-studio-sdk
|
|
3
|
+
Version: 1.0.0
|
|
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
|
+
- [Installation](#installation)
|
|
69
|
+
- [Usage](#usage)
|
|
70
|
+
- [Examples](#examples)
|
|
71
|
+
- [Get all projects](#get-all-projects)
|
|
72
|
+
- [Create a new project](#create-a-new-project)
|
|
73
|
+
- [Get project by ID](#get-project-by-id)
|
|
74
|
+
- [Update project](#update-project)
|
|
75
|
+
- [Delete project](#delete-project)
|
|
76
|
+
- [Get tasks with annotations and predictions](#get-tasks-with-annotations-and-predictions)
|
|
77
|
+
- [Get task by ID](#get-task-by-id)
|
|
78
|
+
- [Get all annotations for a task](#get-all-annotations-for-a-task)
|
|
79
|
+
- [Create a new task](#create-a-new-task)
|
|
80
|
+
- [Import batch tasks](#import-batch-tasks)
|
|
81
|
+
- [Update task](#update-task)
|
|
82
|
+
- [Delete task](#delete-task)
|
|
83
|
+
- [Create prediction](#create-prediction)
|
|
84
|
+
- [Update prediction](#update-prediction)
|
|
85
|
+
- [Delete prediction](#delete-prediction)
|
|
86
|
+
- [Async client](#async-client)
|
|
87
|
+
|
|
88
|
+
|
|
89
|
+
# Documentation
|
|
90
|
+
Explore the Label Studio API documentation [here](https://label-studio.docs.buildwithfern.com/).
|
|
91
|
+
|
|
92
|
+
|
|
93
|
+
<!-- Begin Installation, generated by Fern -->
|
|
94
|
+
# Installation
|
|
95
|
+
|
|
96
|
+
```sh
|
|
97
|
+
pip install --upgrade label-studio-sdk
|
|
98
|
+
```
|
|
99
|
+
<!-- End Installation -->
|
|
100
|
+
|
|
101
|
+
<!-- Begin Usage, generated by Fern -->
|
|
102
|
+
# Usage
|
|
103
|
+
|
|
104
|
+
```python
|
|
105
|
+
from label_studio_sdk.client import LabelStudio
|
|
106
|
+
|
|
107
|
+
client = LabelStudio(
|
|
108
|
+
api_key="YOUR_API_KEY",
|
|
109
|
+
)
|
|
110
|
+
```
|
|
111
|
+
<!-- End Usage -->
|
|
112
|
+
|
|
113
|
+
# Examples
|
|
114
|
+
|
|
115
|
+
## Get all projects
|
|
116
|
+
|
|
117
|
+
```python
|
|
118
|
+
projects = client.projects.list()
|
|
119
|
+
```
|
|
120
|
+
|
|
121
|
+
## Create a new project
|
|
122
|
+
|
|
123
|
+
```python
|
|
124
|
+
project = client.projects.create(
|
|
125
|
+
name="Project name",
|
|
126
|
+
description="Project description",
|
|
127
|
+
label_config="""
|
|
128
|
+
<View>
|
|
129
|
+
<Image name="image" value="$image" />
|
|
130
|
+
<RectangleLabels name="label" toName="image">
|
|
131
|
+
<Label value="cat" />
|
|
132
|
+
<Label value="dog" />
|
|
133
|
+
</RectangleLabels>
|
|
134
|
+
</View>
|
|
135
|
+
"""
|
|
136
|
+
)
|
|
137
|
+
```
|
|
138
|
+
|
|
139
|
+
## Get project by ID
|
|
140
|
+
|
|
141
|
+
```python
|
|
142
|
+
project = client.projects.get("PROJECT_ID")
|
|
143
|
+
```
|
|
144
|
+
|
|
145
|
+
## Update project
|
|
146
|
+
|
|
147
|
+
```python
|
|
148
|
+
project = client.projects.update(
|
|
149
|
+
project="PROJECT_ID",
|
|
150
|
+
description="New project description",
|
|
151
|
+
)
|
|
152
|
+
```
|
|
153
|
+
|
|
154
|
+
## Delete project
|
|
155
|
+
|
|
156
|
+
```python
|
|
157
|
+
client.projects.delete("PROJECT_ID")
|
|
158
|
+
```
|
|
159
|
+
|
|
160
|
+
## Get tasks with annotations and predictions
|
|
161
|
+
|
|
162
|
+
```python
|
|
163
|
+
tasks = client.tasks.list(project="PROJECT_ID")
|
|
164
|
+
```
|
|
165
|
+
|
|
166
|
+
## Get task by ID
|
|
167
|
+
|
|
168
|
+
```python
|
|
169
|
+
task = client.tasks.get("TASK_ID")
|
|
170
|
+
print(task)
|
|
171
|
+
```
|
|
172
|
+
Task data, annotations and predictions in [Label Studio tasks format](https://labelstud.io/guide/task_format#Label-Studio-JSON-format-of-annotated-tasks):
|
|
173
|
+
```json
|
|
174
|
+
{
|
|
175
|
+
"id": "TASK_ID",
|
|
176
|
+
"data": {
|
|
177
|
+
"image": "https://example.com/image.jpg",
|
|
178
|
+
"label": "cat"
|
|
179
|
+
},
|
|
180
|
+
"annotations": [],
|
|
181
|
+
"predictions": []
|
|
182
|
+
}
|
|
183
|
+
```
|
|
184
|
+
|
|
185
|
+
## Get all annotations for a task
|
|
186
|
+
|
|
187
|
+
```python
|
|
188
|
+
annotations = client.annotations.list(task="TASK_ID")
|
|
189
|
+
```
|
|
190
|
+
|
|
191
|
+
## Create a new task
|
|
192
|
+
|
|
193
|
+
```python
|
|
194
|
+
task = client.tasks.create(
|
|
195
|
+
project="PROJECT_ID",
|
|
196
|
+
data={
|
|
197
|
+
"data": {
|
|
198
|
+
"image": "https://example.com/image.jpg",
|
|
199
|
+
"label": "cat"
|
|
200
|
+
}
|
|
201
|
+
}
|
|
202
|
+
)
|
|
203
|
+
```
|
|
204
|
+
|
|
205
|
+
## Import batch tasks
|
|
206
|
+
|
|
207
|
+
```python
|
|
208
|
+
tasks = client.projects.import_tasks(
|
|
209
|
+
project="PROJECT_ID",
|
|
210
|
+
data=[
|
|
211
|
+
{
|
|
212
|
+
"data": {
|
|
213
|
+
"image": "https://example.com/image1.jpg",
|
|
214
|
+
"label": "cat"
|
|
215
|
+
}
|
|
216
|
+
},
|
|
217
|
+
{
|
|
218
|
+
"data": {
|
|
219
|
+
"image": "https://example.com/image2.jpg",
|
|
220
|
+
"label": "dog"
|
|
221
|
+
}
|
|
222
|
+
}
|
|
223
|
+
]
|
|
224
|
+
)
|
|
225
|
+
```
|
|
226
|
+
|
|
227
|
+
## Update task
|
|
228
|
+
|
|
229
|
+
```python
|
|
230
|
+
task = client.tasks.update(
|
|
231
|
+
project="PROJECT_ID",
|
|
232
|
+
task="TASK_ID",
|
|
233
|
+
data={
|
|
234
|
+
"data": {
|
|
235
|
+
"image": "https://example.com/image.jpg",
|
|
236
|
+
"label": "dog"
|
|
237
|
+
}
|
|
238
|
+
}
|
|
239
|
+
)
|
|
240
|
+
```
|
|
241
|
+
|
|
242
|
+
## Delete task
|
|
243
|
+
|
|
244
|
+
```python
|
|
245
|
+
client.tasks.delete(project="PROJECT_ID", task="TASK_ID")
|
|
246
|
+
```
|
|
247
|
+
|
|
248
|
+
## Create prediction
|
|
249
|
+
|
|
250
|
+
```python
|
|
251
|
+
prediction = client.predictions.create(
|
|
252
|
+
task="TASK_ID",
|
|
253
|
+
result=[{'from_name': 'bbox', 'to_name': 'image', 'type': 'labels', 'value': {'rectanglelabels': [{'x': 10, 'y': 20, 'width': 30, 'height': 40, 'rectanglelabels': ['cat']}]}}],
|
|
254
|
+
score=0.9,
|
|
255
|
+
model_version='yolov8',
|
|
256
|
+
)
|
|
257
|
+
```
|
|
258
|
+
|
|
259
|
+
## Update prediction
|
|
260
|
+
|
|
261
|
+
```python
|
|
262
|
+
prediction = client.predictions.update(
|
|
263
|
+
task="TASK_ID",
|
|
264
|
+
prediction="PREDICTION_ID",
|
|
265
|
+
result=[{'from_name': 'bbox', 'to_name': 'image', 'type': 'labels', 'value': {'rectanglelabels': [{'x': 10, 'y': 20, 'width': 30, 'height': 40, 'rectanglelabels': ['dog']}]}}],
|
|
266
|
+
score=0.8,
|
|
267
|
+
model_version='yolov8',
|
|
268
|
+
)
|
|
269
|
+
```
|
|
270
|
+
|
|
271
|
+
## Delete prediction
|
|
272
|
+
|
|
273
|
+
```python
|
|
274
|
+
client.predictions.delete(task="TASK_ID", prediction="PREDICTION_ID")
|
|
275
|
+
```
|
|
276
|
+
|
|
277
|
+
## Async client
|
|
278
|
+
|
|
279
|
+
```python
|
|
280
|
+
from label_studio_sdk.client import AsyncLabelStudio
|
|
281
|
+
|
|
282
|
+
client = AsyncLabelStudio(
|
|
283
|
+
api_key="YOUR_API_KEY",
|
|
284
|
+
)
|
|
285
|
+
```
|
|
286
|
+
|
|
287
|
+
<!-- Begin Status, generated by Fern -->
|
|
288
|
+
# Beta Status
|
|
289
|
+
|
|
290
|
+
This SDK is in beta, and there may be breaking changes between versions without a major
|
|
291
|
+
version update. Therefore, we recommend pinning the package version to a specific version.
|
|
292
|
+
This way, you can install the same version each time without breaking changes.
|
|
293
|
+
<!-- End Status -->
|
|
294
|
+
|
|
295
|
+
<!-- Begin Contributing, generated by Fern -->
|
|
296
|
+
# Contributing
|
|
297
|
+
|
|
298
|
+
While we value open-source contributions to this SDK, this library is generated programmatically.
|
|
299
|
+
Additions made directly to this library would have to be moved over to our generation code,
|
|
300
|
+
otherwise they would be overwritten upon the next generated release. Feel free to open a PR as
|
|
301
|
+
a proof of concept, but know that we will not be able to merge it as-is. We suggest opening
|
|
302
|
+
an issue first to discuss with us!
|
|
303
|
+
|
|
304
|
+
On the other hand, contributions to the README are always very welcome!
|
|
305
|
+
<!-- End Contributing -->
|
|
306
|
+
|
|
307
|
+
|
|
@@ -0,0 +1,239 @@
|
|
|
1
|
+
label_studio_sdk/__init__.py,sha256=S17DHfJ2sELJwH6x6WFXzapC4fTSeKwH42YAhnhMBPc,5513
|
|
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/_legacy/__init__.py,sha256=e1C8VJ0l6EKmQwvzOnkKvy5Cu6uNi2dboNno8cAKJdg,194
|
|
17
|
+
label_studio_sdk/_legacy/client.py,sha256=7lZeuQNw39C_Iqb6O-LSY8dOYbrE7hhA8qrc0SH3Qw0,14052
|
|
18
|
+
label_studio_sdk/_legacy/exceptions.py,sha256=Xpx6phdRD_dTWlA-nq0v0Feta0RVDltPUjRXSiXJ0Yk,196
|
|
19
|
+
label_studio_sdk/_legacy/label_interface/__init__.py,sha256=Eg6y3mAaYdKzJ5ZPhU_BTX2qoNPafthdxLD2I_rmXoU,38
|
|
20
|
+
label_studio_sdk/_legacy/label_interface/base.py,sha256=bI8pifudG4vI9MfvP-HIdHNJYDqg1pQimLQJGPUwnZk,2501
|
|
21
|
+
label_studio_sdk/_legacy/label_interface/control_tags.py,sha256=Cq9MTgtd23AZBx9zT_iXeV6905tzGL5_jOGZaBw7lE0,20247
|
|
22
|
+
label_studio_sdk/_legacy/label_interface/data_examples.json,sha256=uCYvCtMIxPi1-jLlFhwJPh01tLyMIRwTjINeAeW-JzE,8195
|
|
23
|
+
label_studio_sdk/_legacy/label_interface/interface.py,sha256=NxhS69rd_uBuXjrqAtcr0X7HZ-yP4OeGUWr8QmmlZlQ,33375
|
|
24
|
+
label_studio_sdk/_legacy/label_interface/label_tags.py,sha256=nWEo21Gd8IPzIO72UqraLrChIbvrSMCA_eEhzYGnGCc,2282
|
|
25
|
+
label_studio_sdk/_legacy/label_interface/object_tags.py,sha256=CKNLYemwlvQ98NWUp4Nes0jklO28kE853KF-SML2f8Q,8181
|
|
26
|
+
label_studio_sdk/_legacy/label_interface/region.py,sha256=rlJDOVAoFtk4gcg1y2L_Pd8Rjl2cwNGuUUGsqf2YDbg,823
|
|
27
|
+
label_studio_sdk/_legacy/objects.py,sha256=fn0w3i7V-Y4SEP6v5bpz4vztCgzEW0kCInZBVP5-rCY,879
|
|
28
|
+
label_studio_sdk/_legacy/project.py,sha256=4sO4kZQECmDmFZRNo502PpDcRX68la0FO0WDePOyVxI,93567
|
|
29
|
+
label_studio_sdk/_legacy/schema/label_config_schema.json,sha256=TIUgx4ft9lv4Yhj0ANjLy2YoChhPI7NyT3rH8rYFLA8,6101
|
|
30
|
+
label_studio_sdk/_legacy/users.py,sha256=G5wxBf7sGpZlN_0sR2NDovESIw1v2RfXWveCLHTgvN4,1402
|
|
31
|
+
label_studio_sdk/_legacy/utils.py,sha256=ZeBEwUmHyK_GdUjAEOdIqkbKRT7SviO4Db0Uj6tMNfI,4518
|
|
32
|
+
label_studio_sdk/_legacy/workspaces.py,sha256=9SrmZyWqj_0etCyTWzeC6v30jAIDnjerx4cNBlP3MGg,1913
|
|
33
|
+
label_studio_sdk/actions/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
34
|
+
label_studio_sdk/actions/client.py,sha256=NjEmYsHdaTWHepAWaBgShX6_SjgR1bZ66cp0P_A8R94,4805
|
|
35
|
+
label_studio_sdk/annotations/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
36
|
+
label_studio_sdk/annotations/client.py,sha256=KDg1s4ZOjsH0xUdATzdhruSguPzUCDyq66tEJU-QfeM,27317
|
|
37
|
+
label_studio_sdk/client.py,sha256=vzMUwzr4Vc6N-Y7x0NaUTiVRtPO4VHeMdacfZDneotY,8335
|
|
38
|
+
label_studio_sdk/converter/__init__.py,sha256=qppSJed16HAiZbGons0yVrPRjszuWFia025Rm477q1c,201
|
|
39
|
+
label_studio_sdk/converter/audio.py,sha256=U9oTULkeimodZhIkB16Gl3eJD8YzsbADWxW_r2tPcxw,1905
|
|
40
|
+
label_studio_sdk/converter/brush.py,sha256=jRL3fLl_J06fVEX7Uat31ru0uUZ71C4zrXnX2qOcrIo,13370
|
|
41
|
+
label_studio_sdk/converter/converter.py,sha256=Ug9uOe7lw8Jv0lpcXZLt7rcGBXlLHW21sp_tSgazV6g,47721
|
|
42
|
+
label_studio_sdk/converter/exports/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
43
|
+
label_studio_sdk/converter/exports/csv.py,sha256=F4t04tFsg5gBXTZNmkjw_NeEVsobRH_Y_vfFDi7R0Zw,2865
|
|
44
|
+
label_studio_sdk/converter/exports/csv2.py,sha256=9FxcPtIDcuztDF-y4Z7Mm0AgbYUR1oMitYT6BlcOFes,3125
|
|
45
|
+
label_studio_sdk/converter/funsd.py,sha256=QHoa8hzWQLkZQ87e9EgURit9kGGUCgDxoRONcSzmWlw,2544
|
|
46
|
+
label_studio_sdk/converter/imports/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
47
|
+
label_studio_sdk/converter/imports/coco.py,sha256=cRoD1Z1xyekSLzPrzdMdA4bQtzR6VpZCkPF6JMpE2NY,10245
|
|
48
|
+
label_studio_sdk/converter/imports/colors.py,sha256=F5_K4FIhOZl6LNEIVT2UU5L8HcmY8VwAg1tOFpjJINI,3827
|
|
49
|
+
label_studio_sdk/converter/imports/label_config.py,sha256=8RT2Jppvi1-Sl3ZNDA1uFyHr2NoU4-gM26S9iAEuQh8,1218
|
|
50
|
+
label_studio_sdk/converter/imports/pathtrack.py,sha256=Xxxbw8fLLHTR57FEjVeeitjh35YbcIh_eVzuw2e5K9w,8096
|
|
51
|
+
label_studio_sdk/converter/imports/yolo.py,sha256=iu-8ay-QF6nT8Hy1rIzPpww1Y-9HnskgDk6yJ0q7YmI,8878
|
|
52
|
+
label_studio_sdk/converter/main.py,sha256=tB1HbxV_prR67tEjk-YLk4pLJ5isxQAsyChxaktEIaQ,6004
|
|
53
|
+
label_studio_sdk/converter/utils.py,sha256=etUjYJscKsqSGuFT4iK3AJmYm4NSK9hk6bLLu4L0aWQ,16143
|
|
54
|
+
label_studio_sdk/core/__init__.py,sha256=Io96G1IY5muGWXsxPKOkzYv3We4OJlBKMkUFvEYfVEQ,1054
|
|
55
|
+
label_studio_sdk/core/api_error.py,sha256=RE8LELok2QCjABadECTvtDp7qejA1VmINCh6TbqPwSE,426
|
|
56
|
+
label_studio_sdk/core/client_wrapper.py,sha256=PJ1U9gZ8wDhLV4CWimadRHfrm1zn6fBUMEFZEDTooUM,1818
|
|
57
|
+
label_studio_sdk/core/datetime_utils.py,sha256=nBys2IsYrhPdszxGKCNRPSOCwa-5DWOHG95FB8G9PKo,1047
|
|
58
|
+
label_studio_sdk/core/file.py,sha256=sy1RUGZ3aJYuw998bZytxxo6QdgKmlnlgBaMvwEKCGg,1480
|
|
59
|
+
label_studio_sdk/core/http_client.py,sha256=Z4NuAsJD-51yqmoME17O5sxwx5orSp1wsnd6bPyKcgA,17768
|
|
60
|
+
label_studio_sdk/core/jsonable_encoder.py,sha256=L6G68Py6gEo8n87rXwlkLPUyzHvXftEBjJZNb2tCuOA,3742
|
|
61
|
+
label_studio_sdk/core/pagination.py,sha256=ZfASbCAP0TsN2WmKijgaE61gh0oJqBMmyqtO2wqHw7o,3200
|
|
62
|
+
label_studio_sdk/core/pydantic_utilities.py,sha256=hI3vcpSG47sVlafyPol2T2ICt8HNMIu_rM9amc2zf7w,748
|
|
63
|
+
label_studio_sdk/core/query_encoder.py,sha256=sI6XiwFby-WRIk4MVN_5wlAlm30aCHE73Uvm09fb9qQ,1266
|
|
64
|
+
label_studio_sdk/core/remove_none_from_dict.py,sha256=EU9SGgYidWq7SexuJbNs4-PZ-5Bl3Vppd864mS6vQZw,342
|
|
65
|
+
label_studio_sdk/core/request_options.py,sha256=-3QoOMMHI2exIyHH6Q2MD7rpo_6w-i6zMAy0nqWTN8c,1420
|
|
66
|
+
label_studio_sdk/data_manager.py,sha256=IzmX9qokkVE51hrtX9IuXkLr80pVWSXq8Hp51-xDuHI,8309
|
|
67
|
+
label_studio_sdk/environment.py,sha256=f1MIpndh-RpLNXkkRNvyIWcCsC3hzMZ6y9VqHdhKH1k,158
|
|
68
|
+
label_studio_sdk/errors/__init__.py,sha256=otIvsa1TyrQXYDqWJvu4mtMYgdqqfCYy1cfv6wpNVKg,221
|
|
69
|
+
label_studio_sdk/errors/bad_request_error.py,sha256=cyaU3HXnyIS--6xv5DFA01VWbOQwzz1DU9PakGrzNp8,226
|
|
70
|
+
label_studio_sdk/errors/internal_server_error.py,sha256=K8Rm2Djj0ciGE0uDq3GHL-JTk8R23U2hBiH-84A4ZWY,230
|
|
71
|
+
label_studio_sdk/export_storage/__init__.py,sha256=wW7LC_rzYYCBltCSTTcW5jFO-eVJwIqtY13Ix0xp6JM,824
|
|
72
|
+
label_studio_sdk/export_storage/azure/__init__.py,sha256=WflFc5wcr-Pgvi8vGcNCTKOPaIKxy-_RgMx2qttAHYc,183
|
|
73
|
+
label_studio_sdk/export_storage/azure/client.py,sha256=dF4a2_YKEt0RkEvbAFOx8St5fpighTNFBJaV838Gg4E,27592
|
|
74
|
+
label_studio_sdk/export_storage/azure/types/__init__.py,sha256=dAtXM6WHJAIlHjlDaCGVEzpx3Xfryn4aQW7GGanmhW0,233
|
|
75
|
+
label_studio_sdk/export_storage/azure/types/azure_create_response.py,sha256=_qnzY-8UMVzj024OVVBljmBLDuoVz4MY-ikyQKO_Cl8,1665
|
|
76
|
+
label_studio_sdk/export_storage/azure/types/azure_update_response.py,sha256=Ba1hn08gyOLyUkpzZgLlbVh98yaiM4hD9DDxz_JO_rM,1665
|
|
77
|
+
label_studio_sdk/export_storage/client.py,sha256=2txfhRQiPSGEGzP4WnDUbBVHER63iggfiT0ZeDeiXkk,4221
|
|
78
|
+
label_studio_sdk/export_storage/gcs/__init__.py,sha256=5XkGIewR3WCezQdWaR8pRTgix5TeXCLDSXESX4j34Ic,175
|
|
79
|
+
label_studio_sdk/export_storage/gcs/client.py,sha256=oqoeOj2wkv4fIJC0BIbSRpgXR2IaeNGfZFg07YyVt2U,27585
|
|
80
|
+
label_studio_sdk/export_storage/gcs/types/__init__.py,sha256=w2BZvAw38wQdpWXh7zHugIuPA8up1kovWrWUoSunV3o,221
|
|
81
|
+
label_studio_sdk/export_storage/gcs/types/gcs_create_response.py,sha256=wlgwuvi3t-SaqrTEpwW5AjVk8D0Lf5-aKwXe6jNvpsk,1701
|
|
82
|
+
label_studio_sdk/export_storage/gcs/types/gcs_update_response.py,sha256=L9YU9iwaSlGpW4iMpAdju2iEykLaeRRX2jEowdMnI60,1701
|
|
83
|
+
label_studio_sdk/export_storage/local/__init__.py,sha256=9MhvRmMHJluQwUD9ZFVNqjLiK16xe5OPj9B3wjfAGhA,183
|
|
84
|
+
label_studio_sdk/export_storage/local/client.py,sha256=K6LrdROa6vvnQD3wFc5w-7J58m3VX1-8p9LUYc2ENjg,26826
|
|
85
|
+
label_studio_sdk/export_storage/local/types/__init__.py,sha256=Wq9THgEJ9B44IFniEH5VWl_jdyD1CSp_5BBFUQZVh34,233
|
|
86
|
+
label_studio_sdk/export_storage/local/types/local_create_response.py,sha256=IUmwEPR4Oj_8YDe6qpfolFJmSwo4kzHFVpuMEwk45gA,1568
|
|
87
|
+
label_studio_sdk/export_storage/local/types/local_update_response.py,sha256=GtoANqmt_wG-kuenP7hNROLwo_daSDmiWadR5GMAU90,1568
|
|
88
|
+
label_studio_sdk/export_storage/redis/__init__.py,sha256=XGG2TewxEfq3ihh94ngOWlv6Uq4opCCDJAuZ4ATmAv8,183
|
|
89
|
+
label_studio_sdk/export_storage/redis/client.py,sha256=3cII1w43xERd0OwdxXo3yLtQhL_BwVCUG93QmxmKyJM,27191
|
|
90
|
+
label_studio_sdk/export_storage/redis/types/__init__.py,sha256=IfAUyLrvgMGrEX_ATDY3A1j2MaK5xbEhGkAFv01i2G8,233
|
|
91
|
+
label_studio_sdk/export_storage/redis/types/redis_create_response.py,sha256=VkNRQS_615tJ1p8LJ93ItpVAaPpc9wlTUh5UYydA84s,1773
|
|
92
|
+
label_studio_sdk/export_storage/redis/types/redis_update_response.py,sha256=gmCfB0zMPrBVCNnpILxTuqINk0UisWBz3KGZoJYd1lI,1773
|
|
93
|
+
label_studio_sdk/export_storage/s3/__init__.py,sha256=rx9uoPmoHyzvS_wdV3C5Fb6ZJVeJKU5Ouk5DexADJl4,171
|
|
94
|
+
label_studio_sdk/export_storage/s3/client.py,sha256=dD8mUb3vPWSlUvNcxxnCBdKPnpD3PCQDNrZzx7L28JQ,30424
|
|
95
|
+
label_studio_sdk/export_storage/s3/types/__init__.py,sha256=Qiv7JBYh7srMTsdVLmsF7cg_jYumAokCUbh2jrNNE8c,213
|
|
96
|
+
label_studio_sdk/export_storage/s3/types/s3create_response.py,sha256=XvuW7hjNKKj9LdSCP88Bg69d_ZIVPKmuCxJSwT9dfoU,2198
|
|
97
|
+
label_studio_sdk/export_storage/s3/types/s3update_response.py,sha256=1SAUI6HLIZSz4QkY3sJhDWpHbTDJtamWaFi859nJLgI,2198
|
|
98
|
+
label_studio_sdk/export_storage/types/__init__.py,sha256=G7iAfiRBL1WTYsluefJV4ZFUaBmK4mMp9sAMPJ7NZbw,203
|
|
99
|
+
label_studio_sdk/export_storage/types/export_storage_list_types_response_item.py,sha256=3iRzkMqLe_ohc-XWg0h9s9jzgXx-omXsyGUZNY7R04U,1199
|
|
100
|
+
label_studio_sdk/files/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
101
|
+
label_studio_sdk/files/client.py,sha256=R62FXgbMeyRdce-YtaVS_qxWTGBpf0ur9OJg3TXDnN0,19016
|
|
102
|
+
label_studio_sdk/import_storage/__init__.py,sha256=6hqg5mP0s0Wqa0Me-I0opNQG777CiS1JWxB_pLf2Ci8,824
|
|
103
|
+
label_studio_sdk/import_storage/azure/__init__.py,sha256=WflFc5wcr-Pgvi8vGcNCTKOPaIKxy-_RgMx2qttAHYc,183
|
|
104
|
+
label_studio_sdk/import_storage/azure/client.py,sha256=lr2vJgSB9zCB_EStAlQxO211ant0ngiHuFUGz2AK9Os,31420
|
|
105
|
+
label_studio_sdk/import_storage/azure/types/__init__.py,sha256=dAtXM6WHJAIlHjlDaCGVEzpx3Xfryn4aQW7GGanmhW0,233
|
|
106
|
+
label_studio_sdk/import_storage/azure/types/azure_create_response.py,sha256=TCsnriiFruoYNy-phOMOrwHu9gs40ySi8CZx9u21vQs,2181
|
|
107
|
+
label_studio_sdk/import_storage/azure/types/azure_update_response.py,sha256=8Q4imU6gukFGqrWBMMBUFBgyC8ofNbefWJx04bHaOt8,2181
|
|
108
|
+
label_studio_sdk/import_storage/client.py,sha256=0fg56P47iTjAvMWshMKwKyNGCJ_C5Y26ALnuJC55H9k,4207
|
|
109
|
+
label_studio_sdk/import_storage/gcs/__init__.py,sha256=5XkGIewR3WCezQdWaR8pRTgix5TeXCLDSXESX4j34Ic,175
|
|
110
|
+
label_studio_sdk/import_storage/gcs/client.py,sha256=y667ZbWo-bKq-QAfXYsv2B8B8jy3D5E7FBVawr4Um9w,31437
|
|
111
|
+
label_studio_sdk/import_storage/gcs/types/__init__.py,sha256=w2BZvAw38wQdpWXh7zHugIuPA8up1kovWrWUoSunV3o,221
|
|
112
|
+
label_studio_sdk/import_storage/gcs/types/gcs_create_response.py,sha256=3oEfTtQaVTaFr4z3KHNVjB6WWOcH1HkoD-8vX1XKYsY,2217
|
|
113
|
+
label_studio_sdk/import_storage/gcs/types/gcs_update_response.py,sha256=hd66yqQVLOb1lAjGXP7USS8_VRISJifCtpL6aDDxeCY,2217
|
|
114
|
+
label_studio_sdk/import_storage/local/__init__.py,sha256=9MhvRmMHJluQwUD9ZFVNqjLiK16xe5OPj9B3wjfAGhA,183
|
|
115
|
+
label_studio_sdk/import_storage/local/client.py,sha256=fq5abpfAXqFmYsmOQTsrl92XjgEjPl6LHKIHmor2V1U,27458
|
|
116
|
+
label_studio_sdk/import_storage/local/types/__init__.py,sha256=Wq9THgEJ9B44IFniEH5VWl_jdyD1CSp_5BBFUQZVh34,233
|
|
117
|
+
label_studio_sdk/import_storage/local/types/local_create_response.py,sha256=IUmwEPR4Oj_8YDe6qpfolFJmSwo4kzHFVpuMEwk45gA,1568
|
|
118
|
+
label_studio_sdk/import_storage/local/types/local_update_response.py,sha256=GtoANqmt_wG-kuenP7hNROLwo_daSDmiWadR5GMAU90,1568
|
|
119
|
+
label_studio_sdk/import_storage/redis/__init__.py,sha256=XGG2TewxEfq3ihh94ngOWlv6Uq4opCCDJAuZ4ATmAv8,183
|
|
120
|
+
label_studio_sdk/import_storage/redis/client.py,sha256=szTs9mVjKBiSnq1YY1ip60AsAQK-h-NXbOZOAtRu69o,29209
|
|
121
|
+
label_studio_sdk/import_storage/redis/types/__init__.py,sha256=IfAUyLrvgMGrEX_ATDY3A1j2MaK5xbEhGkAFv01i2G8,233
|
|
122
|
+
label_studio_sdk/import_storage/redis/types/redis_create_response.py,sha256=oVi7kB7hFj2nn6IoZ4XHnh_I-flg4cabK5LZEtjTbtw,1935
|
|
123
|
+
label_studio_sdk/import_storage/redis/types/redis_update_response.py,sha256=aZf6peNe11CZTEcyvRbpZOav86RVBsqEXJiWk4DKziI,1935
|
|
124
|
+
label_studio_sdk/import_storage/s3/__init__.py,sha256=rx9uoPmoHyzvS_wdV3C5Fb6ZJVeJKU5Ouk5DexADJl4,171
|
|
125
|
+
label_studio_sdk/import_storage/s3/client.py,sha256=2ibJQfG65Sp14WNQkTeLKV3bnJ7oggp92kVT47Hiyeo,34476
|
|
126
|
+
label_studio_sdk/import_storage/s3/types/__init__.py,sha256=Qiv7JBYh7srMTsdVLmsF7cg_jYumAokCUbh2jrNNE8c,213
|
|
127
|
+
label_studio_sdk/import_storage/s3/types/s3create_response.py,sha256=9UXu-_VawRA0UskzY879NaaFtY8OxSE7Ff7Rx2YgVTQ,2821
|
|
128
|
+
label_studio_sdk/import_storage/s3/types/s3update_response.py,sha256=HicWtYFbKXUveOSon3O2jSGB_ongPmNOALWnxFdDwsI,2821
|
|
129
|
+
label_studio_sdk/import_storage/types/__init__.py,sha256=LSPRtCZ04H1CRzFC6KQnse2KDh5Weeo9IPmRoluhvoc,203
|
|
130
|
+
label_studio_sdk/import_storage/types/import_storage_list_types_response_item.py,sha256=dXfZjNrSliDu9nDP3jrNfxPOUAyILN7vJ6_uArkMiY0,1199
|
|
131
|
+
label_studio_sdk/ml/__init__.py,sha256=J4ncAcAOU_qriOx_Im9eFmXyupKM19SXMcpMcXSmw-I,455
|
|
132
|
+
label_studio_sdk/ml/client.py,sha256=PkwLvK3JO6CEwfqrVBUQJi8FaYUSRoayTqryGtt5LsI,35591
|
|
133
|
+
label_studio_sdk/ml/types/__init__.py,sha256=P6nY1akoIWZ95wDY3iQJGvp9VdM9Kifj7fTCVrdf6qw,640
|
|
134
|
+
label_studio_sdk/ml/types/ml_create_request_auth_method.py,sha256=2toHmZJAOMq_r_r-kHCscI5R73j0hvSflVFc_xS6zm8,171
|
|
135
|
+
label_studio_sdk/ml/types/ml_create_response.py,sha256=pFCJak_id-drVOiIiY7HPSMHMP5gmTdnmX-Rr1azGbc,2290
|
|
136
|
+
label_studio_sdk/ml/types/ml_create_response_auth_method.py,sha256=rvp28YgqeQY9UOPo_vpXHU3cD0A-hN4cNqS0q9ifzAs,172
|
|
137
|
+
label_studio_sdk/ml/types/ml_update_request_auth_method.py,sha256=IfZm_tgqLZ9LaRZvOm_1_SGqx0kXtkxOfCeomLF0SZk,171
|
|
138
|
+
label_studio_sdk/ml/types/ml_update_response.py,sha256=GhueuUxG0eAqBCQO0KzS2X0hBil6UdR_6-5GS-7b5sE,2290
|
|
139
|
+
label_studio_sdk/ml/types/ml_update_response_auth_method.py,sha256=1AhvSHg_qDNKx0bV_vaBdqioaSnbC6wNCIPdFbr9Czg,172
|
|
140
|
+
label_studio_sdk/predictions/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
141
|
+
label_studio_sdk/predictions/client.py,sha256=2lsZH8_WMUa6nRNJ1igA0pHHE2AdUIzcLHOn9jlgOqE,25569
|
|
142
|
+
label_studio_sdk/projects/__init__.py,sha256=XHzKx2ttQBr1tcp4xyoMiNpbfQoY71fqqEh_AWjWu1k,284
|
|
143
|
+
label_studio_sdk/projects/client.py,sha256=5OkWfBNhog9tXyzFqSz5gGv-gmrqiK-59QWmnaiR4ms,42730
|
|
144
|
+
label_studio_sdk/projects/exports/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
145
|
+
label_studio_sdk/projects/exports/client.py,sha256=l6xLfVe532YJQRrdG50-bxk2BfLaYji_5NIS-7ksloM,35783
|
|
146
|
+
label_studio_sdk/projects/types/__init__.py,sha256=Ui_c86Dq2E_2fStSNhwgxwi_3JjoO-YwCqTgiMPxu-k,348
|
|
147
|
+
label_studio_sdk/projects/types/projects_create_response.py,sha256=fgIEN2_u1EG7CH9VCPNdxRn6ekwXy5Cawf5_2VXeLGk,3391
|
|
148
|
+
label_studio_sdk/projects/types/projects_import_tasks_response.py,sha256=QleGWz6JFzesJzf8cOCwQ-RbfM5Ig8dmGJXgkkxeUgU,2233
|
|
149
|
+
label_studio_sdk/projects/types/projects_list_response.py,sha256=6iZSgnw8O5FRizmgobiVKqWJC1UjcXQLWduhJs-9CzU,1274
|
|
150
|
+
label_studio_sdk/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
151
|
+
label_studio_sdk/tasks/__init__.py,sha256=a30krVHgQie5L6dCoFHY2FinuDWikj_gQUCGalFhVa8,185
|
|
152
|
+
label_studio_sdk/tasks/client.py,sha256=Fu6Raqpw0_QckXKqYPwYqqDl5IQFpdnXTBDi-8RW9VI,28179
|
|
153
|
+
label_studio_sdk/tasks/types/__init__.py,sha256=F5n2075irgvO9TyLAXzp26Tybg_lxMC56UySZzHby8I,237
|
|
154
|
+
label_studio_sdk/tasks/types/tasks_list_request_fields.py,sha256=5YXxQgyzoaL0QjSE-aLs_fepCUuzj28iqUndh5NxGGg,166
|
|
155
|
+
label_studio_sdk/tasks/types/tasks_list_response.py,sha256=Jc-ncfOVi6b9fFVspOdosE0AKlLto6w7bcURr4F72_E,1705
|
|
156
|
+
label_studio_sdk/types/__init__.py,sha256=d-D2OV-PAhWrzrLZQ1tRFFsvG1BujJkPNib3BxK8M_4,4237
|
|
157
|
+
label_studio_sdk/types/annotation.py,sha256=NVPcv3miNBNhJkfcrnfHIbby5rRhh_pKa3jRn-VM-rU,3662
|
|
158
|
+
label_studio_sdk/types/annotation_filter_options.py,sha256=_MjVVtTtQCb7hq7g9HnfFPktp4mb5n_ut7TL05mL7JQ,1495
|
|
159
|
+
label_studio_sdk/types/annotation_last_action.py,sha256=g1CU8ypFyneqqf_eWtNH-lC6Q_h1i_IporC-Fq6nkxs,392
|
|
160
|
+
label_studio_sdk/types/azure_blob_export_storage.py,sha256=JR3tu4ZYlKXVoVUFZYPdOvbWzcOLQfwGVAYsXDt6XUU,3343
|
|
161
|
+
label_studio_sdk/types/azure_blob_export_storage_status.py,sha256=rk2DtXXxbEwpUQPBgmwIr2Do3j3LbgwGSPk8yZeb8ow,221
|
|
162
|
+
label_studio_sdk/types/azure_blob_import_storage.py,sha256=JI9GNcFSACNxq00ngbVzoKsCmbRnOkkgNBbdhl3A4EA,3379
|
|
163
|
+
label_studio_sdk/types/azure_blob_import_storage_status.py,sha256=wc2Dqk2tVZS0a-Vc8GRs1GC24CphSjYVT_S6c--pmBI,221
|
|
164
|
+
label_studio_sdk/types/base_task.py,sha256=RJIyJO-x46pz5rs5FmTAr4dAAbGVCRUHioRsGu5GwKU,3962
|
|
165
|
+
label_studio_sdk/types/base_user.py,sha256=vpeAF07_xu5wpZRDagVilzvajzXqOH4em47PH12BuCI,1636
|
|
166
|
+
label_studio_sdk/types/converted_format.py,sha256=isfQtXCd_IQUJvefLdhAD4sXgH_hYTq3zOFILml372k,1400
|
|
167
|
+
label_studio_sdk/types/converted_format_status.py,sha256=27Ty_98TvKo1ENlvy10HH6HWXKifB2AYIb_NeTY4D7E,194
|
|
168
|
+
label_studio_sdk/types/export.py,sha256=S83GXux12agpJ-MUjI6xz6muOanoedz8GiS8FVbEuL0,1806
|
|
169
|
+
label_studio_sdk/types/export_convert.py,sha256=Y586VED5B9QMycAZKC-trEuIVfzvwzoPAis3FnGo-j0,1182
|
|
170
|
+
label_studio_sdk/types/export_create.py,sha256=vctribqAJAYhC0kG2lHWml8TiMjiSOXFDJa2ApDjIss,2219
|
|
171
|
+
label_studio_sdk/types/export_create_status.py,sha256=pr1J3ZP4XR3OK8CK5EUJro7dxy2POQOkTZ_KQrJ0Fms,191
|
|
172
|
+
label_studio_sdk/types/export_status.py,sha256=7urrGSPIpU9yQ9c2nSuxVVZa-edISEkkadPuxtmE-hc,185
|
|
173
|
+
label_studio_sdk/types/file_upload.py,sha256=OvnsEfRKuqnAvAgsgkwlUEW1YVj17mBzt4fIiRYwcV8,1170
|
|
174
|
+
label_studio_sdk/types/filter.py,sha256=N2L5iVxIEwPtajoywK0iKdlYmYRS_E4c6MkG2nI65Os,1575
|
|
175
|
+
label_studio_sdk/types/filter_group.py,sha256=gU4swTrd2YXU1y7AOoefZFzdXxsA_ftmwyz8YzMXIRs,1276
|
|
176
|
+
label_studio_sdk/types/gcs_export_storage.py,sha256=P3mSgrFaU3IEeC31WObpF-hjlC7Y0Les8EeVt4QAF0Q,3356
|
|
177
|
+
label_studio_sdk/types/gcs_export_storage_status.py,sha256=RvUZ-3_sF7GgkgsC_N48r8bELZbM_tXZvEqcNSyxZQ4,215
|
|
178
|
+
label_studio_sdk/types/gcs_import_storage.py,sha256=Dp8Kmx_OkDz24fm800WQ5coCM67N-7RZYbUA34isUEk,3392
|
|
179
|
+
label_studio_sdk/types/gcs_import_storage_status.py,sha256=5ZZBCd9tZEwbfi5pTV5t_MLndYkUlRrHK99r2SWb8oo,215
|
|
180
|
+
label_studio_sdk/types/local_files_export_storage.py,sha256=-ffbPW5-IvnlbavSEfp25rl1M1mVq-kitl0txbTR858,2973
|
|
181
|
+
label_studio_sdk/types/local_files_export_storage_status.py,sha256=zgBmQ0v7w8O061lIZoymrX-CdTR3m8ZDjEUh6XWBP8U,222
|
|
182
|
+
label_studio_sdk/types/local_files_import_storage.py,sha256=9iAyCAPSvyRmvJ0cwYnp5DppQio7UQZONUEqlPsd5wk,2842
|
|
183
|
+
label_studio_sdk/types/local_files_import_storage_status.py,sha256=eFkyIxGzPrHN_xU1sU28LuZFKZSVoOGfEUPnikb0dF0,222
|
|
184
|
+
label_studio_sdk/types/ml_backend.py,sha256=Q6VSYnG4Tq9EtA71ufP0iKjml7-G6rvmolLolH0tYNg,3043
|
|
185
|
+
label_studio_sdk/types/ml_backend_auth_method.py,sha256=T5dI6mk4xn2RnBL3rRqEf3sXFMcj1PzmQcMO_EMH_1s,165
|
|
186
|
+
label_studio_sdk/types/ml_backend_state.py,sha256=yIwkALw4EERwbjtpKXqggx-DDLuJthc84LQ_KcVmyfQ,168
|
|
187
|
+
label_studio_sdk/types/prediction.py,sha256=h75ydes7dMEtGeug6r1VE41vy2yWmvD0m8Qo5hWxliA,2624
|
|
188
|
+
label_studio_sdk/types/project.py,sha256=3oHQ9eWJy5D16zYmzD6onffPSrJA7vhsdPvLS7jSJlY,7273
|
|
189
|
+
label_studio_sdk/types/project_import.py,sha256=u-ts8lF3fykKMkWEu9Y2fbCxjkwqpEhX-B0Ex4JqhbM,2529
|
|
190
|
+
label_studio_sdk/types/project_import_status.py,sha256=FEFdU3D0_Ga9dDv-yNjcr3ATm8VhmBg5xKYm6DXP_e0,192
|
|
191
|
+
label_studio_sdk/types/project_label_config.py,sha256=46u55A8H4i9noIfwWIUQEFMoI8150mQ0GovPoA-o7bk,1231
|
|
192
|
+
label_studio_sdk/types/project_sampling.py,sha256=m5ui0EJ-KbUgyx3d92JtI8tVaRKGqP2YHrvX3yGXIFU,212
|
|
193
|
+
label_studio_sdk/types/project_skip_queue.py,sha256=9DE5IpEBmm6QCIVqG0deISOCo_vHpfaEmHXGpf17UeA,198
|
|
194
|
+
label_studio_sdk/types/redis_export_storage.py,sha256=v6rjzqJnA3cSevwgr3Q-hjF5EYnJLkX1RSTTRNxH3EA,3419
|
|
195
|
+
label_studio_sdk/types/redis_export_storage_status.py,sha256=yOqhEQ2CSOJP3mQr6bPfARVROGi9YZwnM9bBM1CZCZM,217
|
|
196
|
+
label_studio_sdk/types/redis_import_storage.py,sha256=aIVNdfD9_6yfyicgPF15v08-552pbAAYDbeZJoAY8a0,3288
|
|
197
|
+
label_studio_sdk/types/redis_import_storage_status.py,sha256=KmGl0_RWK20owkGdLZ2Tx19v7fZrSSBDhN-SScYh5hM,217
|
|
198
|
+
label_studio_sdk/types/s3export_storage.py,sha256=YdsbJuUIhy9aUtIT2ExPtjM4C4K_WDTUsCGw2563s9Y,3849
|
|
199
|
+
label_studio_sdk/types/s3export_storage_status.py,sha256=HYCH0ZH90Oi-_1WgOo6d19rFm5JJ9M7tn5tVPL71P70,214
|
|
200
|
+
label_studio_sdk/types/s3import_storage.py,sha256=ztrH-qqQnpZvgZSSE_l06ZK9GvS6vKE1W1HEUeVHwxA,4029
|
|
201
|
+
label_studio_sdk/types/s3import_storage_status.py,sha256=tufP_yMEimX4e3hzGPmKqVdDPNeaT4P178fBx3BmgIk,214
|
|
202
|
+
label_studio_sdk/types/serialization_option.py,sha256=WQqHZTqXTERA_83fkPsjxq1yTMj9DsOnfDJy76Xh3xo,1278
|
|
203
|
+
label_studio_sdk/types/serialization_options.py,sha256=FKubgrOGtD3t6Xi7N81zJxWV6WkWmu0WOrq1WD289TA,1774
|
|
204
|
+
label_studio_sdk/types/task.py,sha256=efnUT9T6OlfG6gAhdGwKLUMEXvjxka859WaIZ9I3_QE,4637
|
|
205
|
+
label_studio_sdk/types/task_filter_options.py,sha256=ECmGUKl-lGXEr5BLkh2enPJMpnHkA3P-Niof_i6AB0A,1926
|
|
206
|
+
label_studio_sdk/types/user_simple.py,sha256=KfBGAEKWcJfoevRTCsrK1zYa81MXJcUf1IQ9p95nqVA,1333
|
|
207
|
+
label_studio_sdk/types/view.py,sha256=zIlUL8kgko-Gjdijjzz9L_zgHJfRFSSHJUQIUaX6D4Y,1797
|
|
208
|
+
label_studio_sdk/types/webhook.py,sha256=gENfSADQyunKAEZlb6sf3OqomvEkXCJlQWCVwScCGmg,2207
|
|
209
|
+
label_studio_sdk/types/webhook_actions_item.py,sha256=OoAuMbb97W5R4FtLDtegBkKuJtltFt0H4hfmFuIi9zM,503
|
|
210
|
+
label_studio_sdk/types/webhook_serializer_for_update.py,sha256=3dw35L3UXqh1T6mSpJ5vY-gTie9HWfYW8MgyumWNC3o,2286
|
|
211
|
+
label_studio_sdk/types/webhook_serializer_for_update_actions_item.py,sha256=_kTzRVAWkv1jTqXqWCS3Zx9BRfvXXzxmYRXCAeMwELc,522
|
|
212
|
+
label_studio_sdk/users/__init__.py,sha256=UKVMXjtKsr9fAtH1ipr6YPmY5tdrJjELYN4Cb3l56-I,195
|
|
213
|
+
label_studio_sdk/users/client.py,sha256=ulONDLPHNaZeUMFBwFZTYoq-igFgKHn6U7FmZ6derK0,27628
|
|
214
|
+
label_studio_sdk/users/types/__init__.py,sha256=piwIvEOYFNLlEeWae92M9zoJ-LX6-7C-agJXUtnSgNY,253
|
|
215
|
+
label_studio_sdk/users/types/users_get_token_response.py,sha256=YIejH3pLDEX-t2VvNlFIYvHgsrjh1rWzYryJQV8o6Gk,1234
|
|
216
|
+
label_studio_sdk/users/types/users_reset_token_response.py,sha256=UJ-3wToXII5gdPhvHH_NOyycAhBNq-zCKnIh0Xx2SGY,1235
|
|
217
|
+
label_studio_sdk/version.py,sha256=Eku78MTxkaZ9PVTy-mNpvYkPrxl_z3iFk0EtJr4ESTM,84
|
|
218
|
+
label_studio_sdk/views/__init__.py,sha256=lAVPbGFPP4ylSqepZ_oz8LhoAQDpzY3qFcgfffYUL1k,1095
|
|
219
|
+
label_studio_sdk/views/client.py,sha256=kmVD3MnfkVnCesncBeQsyNr07zY5PIKU3Ba14gCs9uU,18979
|
|
220
|
+
label_studio_sdk/views/types/__init__.py,sha256=2aq1mG_TLkpsWUot2EwkhteXbVcwuTO2qfBjCYx9iJI,1650
|
|
221
|
+
label_studio_sdk/views/types/views_create_request_data.py,sha256=2SlkStP4ti22GqGuIyZLDW58HstYL2YlUFXxzYwU2d4,1604
|
|
222
|
+
label_studio_sdk/views/types/views_create_request_data_filters.py,sha256=EKxd_E32EFg1aEutkzlHtbW8Lv6Xh__naR3lAYMcaBc,1653
|
|
223
|
+
label_studio_sdk/views/types/views_create_request_data_filters_conjunction.py,sha256=p4hC065TgpuN2mfh0q-jvAvcLSNFO1lEJ9fJeYxo9Ak,177
|
|
224
|
+
label_studio_sdk/views/types/views_create_request_data_filters_items_item.py,sha256=VDG4tlE85H27zbrLiUhDxMGrkWhLgSby7lkLHlkJDDA,1527
|
|
225
|
+
label_studio_sdk/views/types/views_create_request_data_ordering_item.py,sha256=6wXegoiDScpGfC-ms0sGhJYQ1xSx-wdz3o0R8hD_8Cc,1474
|
|
226
|
+
label_studio_sdk/views/types/views_create_request_data_ordering_item_direction.py,sha256=DFO4dhJKeugvNq0S4I2_M9c3Ee27sFxn_5y79avDIPc,182
|
|
227
|
+
label_studio_sdk/views/types/views_update_request_data.py,sha256=Ryp8k9tLcFH4IJdDL-9LwmjetQ1lJs8icR79zxD-Y04,1604
|
|
228
|
+
label_studio_sdk/views/types/views_update_request_data_filters.py,sha256=eJQXCiYpe_0g_fteumjntSr7Yp8nSf5NPYZjRo8k1sE,1653
|
|
229
|
+
label_studio_sdk/views/types/views_update_request_data_filters_conjunction.py,sha256=PgbfM47ECsiLceA3M3cFmJSYoT5tdcf_9uSGG1ot-4A,177
|
|
230
|
+
label_studio_sdk/views/types/views_update_request_data_filters_items_item.py,sha256=JYV3nALmLSgJUFhjHbK4X5PWNnbSGctkReIhjAcWNR8,1527
|
|
231
|
+
label_studio_sdk/views/types/views_update_request_data_ordering_item.py,sha256=RYdiHZLjwrlJDE6Z0r0lXFL3IU1wjsf78zyL_qwwykU,1474
|
|
232
|
+
label_studio_sdk/views/types/views_update_request_data_ordering_item_direction.py,sha256=D82o0KGx8EqUnRayuRrlsKVj9yKazqlruED-pl6QKrk,182
|
|
233
|
+
label_studio_sdk/webhooks/__init__.py,sha256=0DSbAQyqXqt6PKwuuIVD7omuduXEibruIm5h0_68EKk,165
|
|
234
|
+
label_studio_sdk/webhooks/client.py,sha256=jAAN8y1f5uS4MjHV_TRFY2syHzHliqBx83s16hJg4ow,23277
|
|
235
|
+
label_studio_sdk/webhooks/types/__init__.py,sha256=NAHGRDDJqPr2fve8K4XwAV8Dr-OfLPhGmamY_VCzSvk,196
|
|
236
|
+
label_studio_sdk/webhooks/types/webhooks_update_request_actions_item.py,sha256=qBGwoU6G5uRwDGdJCXgqjJ2TzVLcak3sNObxMCgOjJg,517
|
|
237
|
+
label_studio_sdk-1.0.0.dist-info/METADATA,sha256=UsUIafU1v-7DhS2nwGuNWODCWqqO41DDUqavrUYYPHk,7884
|
|
238
|
+
label_studio_sdk-1.0.0.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
239
|
+
label_studio_sdk-1.0.0.dist-info/RECORD,,
|