label-studio-sdk 2.0.3__py3-none-any.whl → 2.0.5__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 +18 -0
- label_studio_sdk/activity_logs/__init__.py +5 -0
- label_studio_sdk/activity_logs/client.py +246 -0
- label_studio_sdk/activity_logs/types/__init__.py +5 -0
- label_studio_sdk/activity_logs/types/activity_logs_list_request_method.py +5 -0
- label_studio_sdk/base_client.py +4 -0
- label_studio_sdk/errors/internal_server_error.py +2 -1
- label_studio_sdk/label_interface/interface.py +0 -4
- label_studio_sdk/ml/client.py +4 -4
- label_studio_sdk/projects/__init__.py +14 -2
- label_studio_sdk/projects/client.py +4 -0
- label_studio_sdk/projects/members/__init__.py +4 -0
- label_studio_sdk/projects/members/bulk/__init__.py +5 -0
- label_studio_sdk/projects/members/bulk/client.py +273 -0
- label_studio_sdk/projects/members/bulk/types/__init__.py +6 -0
- label_studio_sdk/projects/members/bulk/types/bulk_delete_response.py +19 -0
- label_studio_sdk/projects/members/bulk/types/bulk_post_response.py +19 -0
- label_studio_sdk/projects/members/client.py +4 -0
- label_studio_sdk/projects/metrics/__init__.py +6 -0
- label_studio_sdk/projects/metrics/client.py +282 -0
- label_studio_sdk/projects/metrics/custom/__init__.py +5 -0
- label_studio_sdk/projects/metrics/custom/client.py +535 -0
- label_studio_sdk/projects/metrics/custom/types/__init__.py +5 -0
- label_studio_sdk/projects/metrics/custom/types/custom_get_lambda_response.py +19 -0
- label_studio_sdk/projects/stats/__init__.py +18 -2
- label_studio_sdk/projects/stats/client.py +129 -0
- label_studio_sdk/projects/stats/types/__init__.py +12 -1
- label_studio_sdk/projects/stats/types/stats_total_agreement_response.py +7 -0
- label_studio_sdk/projects/stats/types/stats_total_agreement_response_one.py +19 -0
- label_studio_sdk/projects/stats/types/stats_total_agreement_response_zero.py +19 -0
- label_studio_sdk/types/__init__.py +14 -0
- label_studio_sdk/types/activity_log.py +49 -0
- label_studio_sdk/types/activity_log_response.py +28 -0
- label_studio_sdk/types/metric_param.py +31 -0
- label_studio_sdk/types/who_am_i_lse_fields.py +50 -0
- label_studio_sdk/types/who_am_i_lse_fields_onboarding_state.py +8 -0
- label_studio_sdk/types/who_am_i_lse_fields_trial_role.py +8 -0
- label_studio_sdk/types/who_am_i_user.py +49 -0
- label_studio_sdk/users/client.py +9 -8
- label_studio_sdk/workspaces/members/__init__.py +4 -0
- label_studio_sdk/workspaces/members/bulk/__init__.py +5 -0
- label_studio_sdk/workspaces/members/bulk/client.py +273 -0
- label_studio_sdk/workspaces/members/bulk/types/__init__.py +6 -0
- label_studio_sdk/workspaces/members/bulk/types/bulk_delete_response.py +19 -0
- label_studio_sdk/workspaces/members/bulk/types/bulk_post_response.py +19 -0
- label_studio_sdk/workspaces/members/client.py +4 -0
- {label_studio_sdk-2.0.3.dist-info → label_studio_sdk-2.0.5.dist-info}/METADATA +1 -1
- {label_studio_sdk-2.0.3.dist-info → label_studio_sdk-2.0.5.dist-info}/RECORD +50 -20
- {label_studio_sdk-2.0.3.dist-info → label_studio_sdk-2.0.5.dist-info}/LICENSE +0 -0
- {label_studio_sdk-2.0.3.dist-info → label_studio_sdk-2.0.5.dist-info}/WHEEL +0 -0
|
@@ -0,0 +1,273 @@
|
|
|
1
|
+
# This file was auto-generated by Fern from our API Definition.
|
|
2
|
+
|
|
3
|
+
import typing
|
|
4
|
+
from ....core.client_wrapper import SyncClientWrapper
|
|
5
|
+
from ....core.request_options import RequestOptions
|
|
6
|
+
from .types.bulk_post_response import BulkPostResponse
|
|
7
|
+
from ....core.jsonable_encoder import jsonable_encoder
|
|
8
|
+
from ....core.unchecked_base_model import construct_type
|
|
9
|
+
from json.decoder import JSONDecodeError
|
|
10
|
+
from ....core.api_error import ApiError
|
|
11
|
+
from .types.bulk_delete_response import BulkDeleteResponse
|
|
12
|
+
from ....core.client_wrapper import AsyncClientWrapper
|
|
13
|
+
|
|
14
|
+
# this is used as the default value for optional parameters
|
|
15
|
+
OMIT = typing.cast(typing.Any, ...)
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
class BulkClient:
|
|
19
|
+
def __init__(self, *, client_wrapper: SyncClientWrapper):
|
|
20
|
+
self._client_wrapper = client_wrapper
|
|
21
|
+
|
|
22
|
+
def post(
|
|
23
|
+
self,
|
|
24
|
+
id: int,
|
|
25
|
+
*,
|
|
26
|
+
all_: bool,
|
|
27
|
+
excluded: typing.Optional[typing.Sequence[int]] = OMIT,
|
|
28
|
+
included: typing.Optional[typing.Sequence[int]] = OMIT,
|
|
29
|
+
request_options: typing.Optional[RequestOptions] = None,
|
|
30
|
+
) -> BulkPostResponse:
|
|
31
|
+
"""
|
|
32
|
+
Assign workspace members in bulk.
|
|
33
|
+
|
|
34
|
+
Parameters
|
|
35
|
+
----------
|
|
36
|
+
id : int
|
|
37
|
+
|
|
38
|
+
all_ : bool
|
|
39
|
+
|
|
40
|
+
excluded : typing.Optional[typing.Sequence[int]]
|
|
41
|
+
|
|
42
|
+
included : typing.Optional[typing.Sequence[int]]
|
|
43
|
+
|
|
44
|
+
request_options : typing.Optional[RequestOptions]
|
|
45
|
+
Request-specific configuration.
|
|
46
|
+
|
|
47
|
+
Returns
|
|
48
|
+
-------
|
|
49
|
+
BulkPostResponse
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
Examples
|
|
53
|
+
--------
|
|
54
|
+
from label_studio_sdk import LabelStudio
|
|
55
|
+
|
|
56
|
+
client = LabelStudio(
|
|
57
|
+
api_key="YOUR_API_KEY",
|
|
58
|
+
)
|
|
59
|
+
client.workspaces.members.bulk.post(
|
|
60
|
+
id=1,
|
|
61
|
+
all_=True,
|
|
62
|
+
)
|
|
63
|
+
"""
|
|
64
|
+
_response = self._client_wrapper.httpx_client.request(
|
|
65
|
+
f"api/workspaces/{jsonable_encoder(id)}/memberships/bulk/",
|
|
66
|
+
method="POST",
|
|
67
|
+
json={
|
|
68
|
+
"all": all_,
|
|
69
|
+
"excluded": excluded,
|
|
70
|
+
"included": included,
|
|
71
|
+
},
|
|
72
|
+
headers={
|
|
73
|
+
"content-type": "application/json",
|
|
74
|
+
},
|
|
75
|
+
request_options=request_options,
|
|
76
|
+
omit=OMIT,
|
|
77
|
+
)
|
|
78
|
+
try:
|
|
79
|
+
if 200 <= _response.status_code < 300:
|
|
80
|
+
return typing.cast(
|
|
81
|
+
BulkPostResponse,
|
|
82
|
+
construct_type(
|
|
83
|
+
type_=BulkPostResponse, # type: ignore
|
|
84
|
+
object_=_response.json(),
|
|
85
|
+
),
|
|
86
|
+
)
|
|
87
|
+
_response_json = _response.json()
|
|
88
|
+
except JSONDecodeError:
|
|
89
|
+
raise ApiError(status_code=_response.status_code, body=_response.text)
|
|
90
|
+
raise ApiError(status_code=_response.status_code, body=_response_json)
|
|
91
|
+
|
|
92
|
+
def delete(self, id: int, *, request_options: typing.Optional[RequestOptions] = None) -> BulkDeleteResponse:
|
|
93
|
+
"""
|
|
94
|
+
Unassign workspace members in bulk. Allows the same request body as bulk assign.
|
|
95
|
+
|
|
96
|
+
Parameters
|
|
97
|
+
----------
|
|
98
|
+
id : int
|
|
99
|
+
|
|
100
|
+
request_options : typing.Optional[RequestOptions]
|
|
101
|
+
Request-specific configuration.
|
|
102
|
+
|
|
103
|
+
Returns
|
|
104
|
+
-------
|
|
105
|
+
BulkDeleteResponse
|
|
106
|
+
|
|
107
|
+
|
|
108
|
+
Examples
|
|
109
|
+
--------
|
|
110
|
+
from label_studio_sdk import LabelStudio
|
|
111
|
+
|
|
112
|
+
client = LabelStudio(
|
|
113
|
+
api_key="YOUR_API_KEY",
|
|
114
|
+
)
|
|
115
|
+
client.workspaces.members.bulk.delete(
|
|
116
|
+
id=1,
|
|
117
|
+
)
|
|
118
|
+
"""
|
|
119
|
+
_response = self._client_wrapper.httpx_client.request(
|
|
120
|
+
f"api/workspaces/{jsonable_encoder(id)}/memberships/bulk/",
|
|
121
|
+
method="DELETE",
|
|
122
|
+
request_options=request_options,
|
|
123
|
+
)
|
|
124
|
+
try:
|
|
125
|
+
if 200 <= _response.status_code < 300:
|
|
126
|
+
return typing.cast(
|
|
127
|
+
BulkDeleteResponse,
|
|
128
|
+
construct_type(
|
|
129
|
+
type_=BulkDeleteResponse, # type: ignore
|
|
130
|
+
object_=_response.json(),
|
|
131
|
+
),
|
|
132
|
+
)
|
|
133
|
+
_response_json = _response.json()
|
|
134
|
+
except JSONDecodeError:
|
|
135
|
+
raise ApiError(status_code=_response.status_code, body=_response.text)
|
|
136
|
+
raise ApiError(status_code=_response.status_code, body=_response_json)
|
|
137
|
+
|
|
138
|
+
|
|
139
|
+
class AsyncBulkClient:
|
|
140
|
+
def __init__(self, *, client_wrapper: AsyncClientWrapper):
|
|
141
|
+
self._client_wrapper = client_wrapper
|
|
142
|
+
|
|
143
|
+
async def post(
|
|
144
|
+
self,
|
|
145
|
+
id: int,
|
|
146
|
+
*,
|
|
147
|
+
all_: bool,
|
|
148
|
+
excluded: typing.Optional[typing.Sequence[int]] = OMIT,
|
|
149
|
+
included: typing.Optional[typing.Sequence[int]] = OMIT,
|
|
150
|
+
request_options: typing.Optional[RequestOptions] = None,
|
|
151
|
+
) -> BulkPostResponse:
|
|
152
|
+
"""
|
|
153
|
+
Assign workspace members in bulk.
|
|
154
|
+
|
|
155
|
+
Parameters
|
|
156
|
+
----------
|
|
157
|
+
id : int
|
|
158
|
+
|
|
159
|
+
all_ : bool
|
|
160
|
+
|
|
161
|
+
excluded : typing.Optional[typing.Sequence[int]]
|
|
162
|
+
|
|
163
|
+
included : typing.Optional[typing.Sequence[int]]
|
|
164
|
+
|
|
165
|
+
request_options : typing.Optional[RequestOptions]
|
|
166
|
+
Request-specific configuration.
|
|
167
|
+
|
|
168
|
+
Returns
|
|
169
|
+
-------
|
|
170
|
+
BulkPostResponse
|
|
171
|
+
|
|
172
|
+
|
|
173
|
+
Examples
|
|
174
|
+
--------
|
|
175
|
+
import asyncio
|
|
176
|
+
|
|
177
|
+
from label_studio_sdk import AsyncLabelStudio
|
|
178
|
+
|
|
179
|
+
client = AsyncLabelStudio(
|
|
180
|
+
api_key="YOUR_API_KEY",
|
|
181
|
+
)
|
|
182
|
+
|
|
183
|
+
|
|
184
|
+
async def main() -> None:
|
|
185
|
+
await client.workspaces.members.bulk.post(
|
|
186
|
+
id=1,
|
|
187
|
+
all_=True,
|
|
188
|
+
)
|
|
189
|
+
|
|
190
|
+
|
|
191
|
+
asyncio.run(main())
|
|
192
|
+
"""
|
|
193
|
+
_response = await self._client_wrapper.httpx_client.request(
|
|
194
|
+
f"api/workspaces/{jsonable_encoder(id)}/memberships/bulk/",
|
|
195
|
+
method="POST",
|
|
196
|
+
json={
|
|
197
|
+
"all": all_,
|
|
198
|
+
"excluded": excluded,
|
|
199
|
+
"included": included,
|
|
200
|
+
},
|
|
201
|
+
headers={
|
|
202
|
+
"content-type": "application/json",
|
|
203
|
+
},
|
|
204
|
+
request_options=request_options,
|
|
205
|
+
omit=OMIT,
|
|
206
|
+
)
|
|
207
|
+
try:
|
|
208
|
+
if 200 <= _response.status_code < 300:
|
|
209
|
+
return typing.cast(
|
|
210
|
+
BulkPostResponse,
|
|
211
|
+
construct_type(
|
|
212
|
+
type_=BulkPostResponse, # type: ignore
|
|
213
|
+
object_=_response.json(),
|
|
214
|
+
),
|
|
215
|
+
)
|
|
216
|
+
_response_json = _response.json()
|
|
217
|
+
except JSONDecodeError:
|
|
218
|
+
raise ApiError(status_code=_response.status_code, body=_response.text)
|
|
219
|
+
raise ApiError(status_code=_response.status_code, body=_response_json)
|
|
220
|
+
|
|
221
|
+
async def delete(self, id: int, *, request_options: typing.Optional[RequestOptions] = None) -> BulkDeleteResponse:
|
|
222
|
+
"""
|
|
223
|
+
Unassign workspace members in bulk. Allows the same request body as bulk assign.
|
|
224
|
+
|
|
225
|
+
Parameters
|
|
226
|
+
----------
|
|
227
|
+
id : int
|
|
228
|
+
|
|
229
|
+
request_options : typing.Optional[RequestOptions]
|
|
230
|
+
Request-specific configuration.
|
|
231
|
+
|
|
232
|
+
Returns
|
|
233
|
+
-------
|
|
234
|
+
BulkDeleteResponse
|
|
235
|
+
|
|
236
|
+
|
|
237
|
+
Examples
|
|
238
|
+
--------
|
|
239
|
+
import asyncio
|
|
240
|
+
|
|
241
|
+
from label_studio_sdk import AsyncLabelStudio
|
|
242
|
+
|
|
243
|
+
client = AsyncLabelStudio(
|
|
244
|
+
api_key="YOUR_API_KEY",
|
|
245
|
+
)
|
|
246
|
+
|
|
247
|
+
|
|
248
|
+
async def main() -> None:
|
|
249
|
+
await client.workspaces.members.bulk.delete(
|
|
250
|
+
id=1,
|
|
251
|
+
)
|
|
252
|
+
|
|
253
|
+
|
|
254
|
+
asyncio.run(main())
|
|
255
|
+
"""
|
|
256
|
+
_response = await self._client_wrapper.httpx_client.request(
|
|
257
|
+
f"api/workspaces/{jsonable_encoder(id)}/memberships/bulk/",
|
|
258
|
+
method="DELETE",
|
|
259
|
+
request_options=request_options,
|
|
260
|
+
)
|
|
261
|
+
try:
|
|
262
|
+
if 200 <= _response.status_code < 300:
|
|
263
|
+
return typing.cast(
|
|
264
|
+
BulkDeleteResponse,
|
|
265
|
+
construct_type(
|
|
266
|
+
type_=BulkDeleteResponse, # type: ignore
|
|
267
|
+
object_=_response.json(),
|
|
268
|
+
),
|
|
269
|
+
)
|
|
270
|
+
_response_json = _response.json()
|
|
271
|
+
except JSONDecodeError:
|
|
272
|
+
raise ApiError(status_code=_response.status_code, body=_response.text)
|
|
273
|
+
raise ApiError(status_code=_response.status_code, body=_response_json)
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# This file was auto-generated by Fern from our API Definition.
|
|
2
|
+
|
|
3
|
+
from .....core.unchecked_base_model import UncheckedBaseModel
|
|
4
|
+
import typing
|
|
5
|
+
from .....core.pydantic_utilities import IS_PYDANTIC_V2
|
|
6
|
+
import pydantic
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
class BulkDeleteResponse(UncheckedBaseModel):
|
|
10
|
+
unassignments: typing.Optional[int] = None
|
|
11
|
+
|
|
12
|
+
if IS_PYDANTIC_V2:
|
|
13
|
+
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
|
14
|
+
else:
|
|
15
|
+
|
|
16
|
+
class Config:
|
|
17
|
+
frozen = True
|
|
18
|
+
smart_union = True
|
|
19
|
+
extra = pydantic.Extra.allow
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# This file was auto-generated by Fern from our API Definition.
|
|
2
|
+
|
|
3
|
+
from .....core.unchecked_base_model import UncheckedBaseModel
|
|
4
|
+
import typing
|
|
5
|
+
from .....core.pydantic_utilities import IS_PYDANTIC_V2
|
|
6
|
+
import pydantic
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
class BulkPostResponse(UncheckedBaseModel):
|
|
10
|
+
assignments: typing.Optional[int] = None
|
|
11
|
+
|
|
12
|
+
if IS_PYDANTIC_V2:
|
|
13
|
+
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
|
|
14
|
+
else:
|
|
15
|
+
|
|
16
|
+
class Config:
|
|
17
|
+
frozen = True
|
|
18
|
+
smart_union = True
|
|
19
|
+
extra = pydantic.Extra.allow
|
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
import typing
|
|
4
4
|
from ...core.client_wrapper import SyncClientWrapper
|
|
5
|
+
from .bulk.client import BulkClient
|
|
5
6
|
from ...core.request_options import RequestOptions
|
|
6
7
|
from ...types.workspace_member_list import WorkspaceMemberList
|
|
7
8
|
from ...core.jsonable_encoder import jsonable_encoder
|
|
@@ -10,6 +11,7 @@ from json.decoder import JSONDecodeError
|
|
|
10
11
|
from ...core.api_error import ApiError
|
|
11
12
|
from ...types.workspace_member_create import WorkspaceMemberCreate
|
|
12
13
|
from ...core.client_wrapper import AsyncClientWrapper
|
|
14
|
+
from .bulk.client import AsyncBulkClient
|
|
13
15
|
|
|
14
16
|
# this is used as the default value for optional parameters
|
|
15
17
|
OMIT = typing.cast(typing.Any, ...)
|
|
@@ -18,6 +20,7 @@ OMIT = typing.cast(typing.Any, ...)
|
|
|
18
20
|
class MembersClient:
|
|
19
21
|
def __init__(self, *, client_wrapper: SyncClientWrapper):
|
|
20
22
|
self._client_wrapper = client_wrapper
|
|
23
|
+
self.bulk = BulkClient(client_wrapper=self._client_wrapper)
|
|
21
24
|
|
|
22
25
|
def list(
|
|
23
26
|
self, id: int, *, request_options: typing.Optional[RequestOptions] = None
|
|
@@ -178,6 +181,7 @@ class MembersClient:
|
|
|
178
181
|
class AsyncMembersClient:
|
|
179
182
|
def __init__(self, *, client_wrapper: AsyncClientWrapper):
|
|
180
183
|
self._client_wrapper = client_wrapper
|
|
184
|
+
self.bulk = AsyncBulkClient(client_wrapper=self._client_wrapper)
|
|
181
185
|
|
|
182
186
|
async def list(
|
|
183
187
|
self, id: int, *, request_options: typing.Optional[RequestOptions] = None
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
label_studio_sdk/__init__.py,sha256=
|
|
1
|
+
label_studio_sdk/__init__.py,sha256=tjpghfNmdA1y5d8M_wEmRmxhC-mY6sc228aY7UovE5s,17143
|
|
2
2
|
label_studio_sdk/_extensions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
3
|
label_studio_sdk/_extensions/eval/categorical.py,sha256=MxH2Jl8Mc6HS2byBnlRgABZgwMutSQdH3tgspwCkxqk,2703
|
|
4
4
|
label_studio_sdk/_extensions/label_studio_tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -40,12 +40,16 @@ label_studio_sdk/actions/types/actions_create_request_selected_items_excluded.py
|
|
|
40
40
|
label_studio_sdk/actions/types/actions_create_request_selected_items_included.py,sha256=otbwleXq06djaZr_BGJ2F5QgpdAmyRr33PaJM5rJfno,906
|
|
41
41
|
label_studio_sdk/actions/types/actions_list_response_item.py,sha256=ETwtiyW5_q-wI3PU0a5MwVS8h7o9r74_WHsU4Pc5INU,904
|
|
42
42
|
label_studio_sdk/actions/types/actions_list_response_item_dialog.py,sha256=nhaowUWkHdJ5JfUsNf4blwGezPDjYL4XwbFaFV7--zY,770
|
|
43
|
+
label_studio_sdk/activity_logs/__init__.py,sha256=AeLFtN6yzW4f6i1yUTEuMcA961RLWuP2PoTWz2xSN9M,159
|
|
44
|
+
label_studio_sdk/activity_logs/client.py,sha256=74-tpZyE9YVPZDIACHzcC8I1bTI_cYAXCQZ3n6B_jTs,8492
|
|
45
|
+
label_studio_sdk/activity_logs/types/__init__.py,sha256=jim5zgH3SbEIX92tkQzrsEkg4qNwCEDDfoyliilmasM,187
|
|
46
|
+
label_studio_sdk/activity_logs/types/activity_logs_list_request_method.py,sha256=rhB0Z5rU5cZXMtojXAYaV6pTmd0IJ2h7uwx2woObmIY,201
|
|
43
47
|
label_studio_sdk/annotations/__init__.py,sha256=u4CxVEhwQbKSWkrjkxLWcDiP6gXajpbAh9eJ2BndFR8,289
|
|
44
48
|
label_studio_sdk/annotations/client.py,sha256=5WwgsMNydsGq4hOZkw9bNgfYFqnB6e1Zc8Da7JehiiY,39894
|
|
45
49
|
label_studio_sdk/annotations/types/__init__.py,sha256=fFJUpZiJV7q7otQJVzsz9wJ1R8j_5qnm59z6ktmhWhE,409
|
|
46
50
|
label_studio_sdk/annotations/types/annotation_bulk_serializer_with_selected_items_request_last_action.py,sha256=bY82sf_78SmtUjwpSLEmL6UfSFcXjpPCc9sRDqNUEDs,273
|
|
47
51
|
label_studio_sdk/annotations/types/annotations_create_bulk_response_item.py,sha256=I-yNfeAGxx1sSeG2QQd_EHFo2m2xHOI7PEfZFWQAWMU,631
|
|
48
|
-
label_studio_sdk/base_client.py,sha256=
|
|
52
|
+
label_studio_sdk/base_client.py,sha256=6BfNLdGxCNIgNHqhdpP5Kv8m9_hcpdo6flU3bHo9VTQ,11546
|
|
49
53
|
label_studio_sdk/billing/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
50
54
|
label_studio_sdk/billing/client.py,sha256=EvXxch0d-6DRnh1fSIqOr51VQcM1EDGPUN-TVNCgdGs,3642
|
|
51
55
|
label_studio_sdk/client.py,sha256=g5YFI-U6OxGiGJ2aMqeREF1tGt-7LA5NSDl2CvW0wNA,916
|
|
@@ -90,7 +94,7 @@ label_studio_sdk/environment.py,sha256=px1pnSOFdsSv1Z5apjoVtXWjQK0aCACbVB25K3XD2
|
|
|
90
94
|
label_studio_sdk/errors/__init__.py,sha256=igIeJCPQbNde4NCXBMYbzwqlNvhiZzOq8E3mdYIHHRc,526
|
|
91
95
|
label_studio_sdk/errors/bad_request_error.py,sha256=_EbO8mWqN9kFZPvIap8qa1lL_EWkRcsZe1HKV9GDWJY,264
|
|
92
96
|
label_studio_sdk/errors/forbidden_error.py,sha256=QO1kKlhClAPES6zsEK7g9pglWnxn3KWaOCAawWOg6Aw,263
|
|
93
|
-
label_studio_sdk/errors/internal_server_error.py,sha256=
|
|
97
|
+
label_studio_sdk/errors/internal_server_error.py,sha256=8USCagXyJJ1MOm9snpcXIUt6eNXvrd_aq7Gfcu1vlOI,268
|
|
94
98
|
label_studio_sdk/errors/method_not_allowed_error.py,sha256=J58udm4lqm5DjnmtFYhVZRVAL3q2pH8TKnEZv3ZafAI,270
|
|
95
99
|
label_studio_sdk/errors/not_found_error.py,sha256=tBVCeBC8n3C811WHRj_n-hs3h8MqwR5gp0vLiobk7W8,262
|
|
96
100
|
label_studio_sdk/errors/unauthorized_error.py,sha256=1ewNCqSG1P-uogB5yCNwreq4Bf3VRor0woSOXS4NjPU,266
|
|
@@ -135,13 +139,13 @@ label_studio_sdk/label_interface/base.py,sha256=NCgY7ntk0WSc9O9iXu3g37-CxbZgCx_W
|
|
|
135
139
|
label_studio_sdk/label_interface/control_tags.py,sha256=kPQTfPnu6NqzEYxpWYAD3W3mX2uV2afV5L_kWvcbcIk,31783
|
|
136
140
|
label_studio_sdk/label_interface/create.py,sha256=c3h5_FF4u5J62_mqq1oK2mjqXL-I1559C6MfoxkgO6s,6993
|
|
137
141
|
label_studio_sdk/label_interface/data_examples.json,sha256=uCYvCtMIxPi1-jLlFhwJPh01tLyMIRwTjINeAeW-JzE,8195
|
|
138
|
-
label_studio_sdk/label_interface/interface.py,sha256=
|
|
142
|
+
label_studio_sdk/label_interface/interface.py,sha256=5u9vCi5MfEiP_ZjyulAIyJTtu16RCAy5EgpugGypPmg,55696
|
|
139
143
|
label_studio_sdk/label_interface/label_tags.py,sha256=nWEo21Gd8IPzIO72UqraLrChIbvrSMCA_eEhzYGnGCc,2282
|
|
140
144
|
label_studio_sdk/label_interface/object_tags.py,sha256=9k3DEYEh7aXSLh2JjH-SWNVupP1qgwHFte85Ix7-4dQ,8944
|
|
141
145
|
label_studio_sdk/label_interface/objects.py,sha256=V1Spp0S9qE7iA-5kPCi0QyHrJ80Du9BUuYMsQUAQqc0,1535
|
|
142
146
|
label_studio_sdk/label_interface/region.py,sha256=th39WeQk8ypi-4krEpsW0BZnoygu4XgvP4w7NkRQp2M,1755
|
|
143
147
|
label_studio_sdk/ml/__init__.py,sha256=fTUzBUIsUwvsymtq9NhvNW3MUKpzQqGfke4PBTcImQU,267
|
|
144
|
-
label_studio_sdk/ml/client.py,sha256=
|
|
148
|
+
label_studio_sdk/ml/client.py,sha256=GuF4ucUwkGqmV2ksDdLX3JrzK7cmsxkcHqAOPBWocBU,37511
|
|
145
149
|
label_studio_sdk/ml/types/__init__.py,sha256=qXv2q70PJ-xUPTaWx0W9UQTn0s_uL9__jEFuQgE7Sik,377
|
|
146
150
|
label_studio_sdk/ml/types/ml_create_request_auth_method.py,sha256=2toHmZJAOMq_r_r-kHCscI5R73j0hvSflVFc_xS6zm8,171
|
|
147
151
|
label_studio_sdk/ml/types/ml_list_model_versions_response.py,sha256=2I9n8izbtLK-TRchvzNjHq5CYH6mvRecFkWqiUR83g4,656
|
|
@@ -156,7 +160,7 @@ label_studio_sdk/organizations/members/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgK
|
|
|
156
160
|
label_studio_sdk/organizations/members/client.py,sha256=P7U1tmgOY_T1FfPQ5i4pDD8j_A3vNcwyfSZeAq2ZL8s,22677
|
|
157
161
|
label_studio_sdk/predictions/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
158
162
|
label_studio_sdk/predictions/client.py,sha256=byZeW8GKDcQybZtF7JypVSuDkAOynDZ7B3m9zOcKns0,23930
|
|
159
|
-
label_studio_sdk/projects/__init__.py,sha256=
|
|
163
|
+
label_studio_sdk/projects/__init__.py,sha256=9WbmOrY3FX98kO1C-wJwODa54_lmWhRWSGn_kOryyLE,2672
|
|
160
164
|
label_studio_sdk/projects/assignments/__init__.py,sha256=bllP6i4AeZvmw72dM7ZUC3yV6jo7T_xs6ygkFpi0BcY,1419
|
|
161
165
|
label_studio_sdk/projects/assignments/client.py,sha256=7_N3Sfok8fafM8g7XUek8quRdIi9Ryy0ZYs0VkUtewU,26692
|
|
162
166
|
label_studio_sdk/projects/assignments/types/__init__.py,sha256=0qltWGWdInAPW5mvPcOHdhNjgGSoR-bgr5gPa6Ctql8,2169
|
|
@@ -174,24 +178,38 @@ label_studio_sdk/projects/assignments/types/assignments_bulk_assign_request_type
|
|
|
174
178
|
label_studio_sdk/projects/assignments/types/assignments_bulk_assign_response.py,sha256=ufd6CtcQZa7g3qX6IYoI_iTa5XdPK_Gj3qXt0Ox0djE,783
|
|
175
179
|
label_studio_sdk/projects/assignments/types/assignments_delete_request_type.py,sha256=v8TJIzwbZMxDx4OqODX3jwlrYnAeDE5W3jJFYaTe7WE,164
|
|
176
180
|
label_studio_sdk/projects/assignments/types/assignments_update_request_type.py,sha256=bq1LYqiRIF4HQIzswN70myDCpgRWNWCzS2Y65-gtEQ8,164
|
|
177
|
-
label_studio_sdk/projects/client.py,sha256=
|
|
181
|
+
label_studio_sdk/projects/client.py,sha256=_JAQrjv5uULYB7hpnqFScKubEMHDpWINvtOSVfDPSzY,77100
|
|
178
182
|
label_studio_sdk/projects/client_ext.py,sha256=vZfH4Pk6nnBQyWSHOx-85Ld9i5BoWVZelBrzJRpcwW0,1847
|
|
179
183
|
label_studio_sdk/projects/exports/__init__.py,sha256=d-VUTRrtssGHCzxO7Hb4sUA8dcvfiQhlW1Z6x_KtvHQ,145
|
|
180
184
|
label_studio_sdk/projects/exports/client.py,sha256=fn7cWuPfgq5Qlc2fx2wevMVryviFOoLo46WjTx9D0jQ,39806
|
|
181
185
|
label_studio_sdk/projects/exports/client_ext.py,sha256=p6dvCv3VvBxX1EhtkwTwE3Px-ZCAqCH7Py1ywwYed2Q,11298
|
|
182
186
|
label_studio_sdk/projects/exports/types/__init__.py,sha256=EZglhKUTrJVx67LR9c3cjfTGBHFw0-xu-Oznzx3iEQk,164
|
|
183
187
|
label_studio_sdk/projects/exports/types/exports_convert_response.py,sha256=TIAw4XZWbNxmoTZB4xNjkEBBSdAzKx9qE-J3COAoukU,652
|
|
184
|
-
label_studio_sdk/projects/members/__init__.py,sha256=
|
|
185
|
-
label_studio_sdk/projects/members/
|
|
188
|
+
label_studio_sdk/projects/members/__init__.py,sha256=1-79X4DdgZ05DnyFyhJvW0V_0mRLqeWu0vhjlm6oJxA,201
|
|
189
|
+
label_studio_sdk/projects/members/bulk/__init__.py,sha256=a9iYfTwhgtS3l_5HLym31_5xHD4G3jWA_T-ZLvoz2Qc,175
|
|
190
|
+
label_studio_sdk/projects/members/bulk/client.py,sha256=yFZJa6Vb_vDBHRFg4w9Q6o2RTVTGThmejNkuczZvm0w,8104
|
|
191
|
+
label_studio_sdk/projects/members/bulk/types/__init__.py,sha256=mIdGHkaAbK1Mq6tVM0QA8IqefxknjU3zLZgbIaIOdhY,221
|
|
192
|
+
label_studio_sdk/projects/members/bulk/types/bulk_delete_response.py,sha256=sUNqoGRnpxGxxx1i0lYuK5F_L0RzxlQ3rPDhxqih1hA,602
|
|
193
|
+
label_studio_sdk/projects/members/bulk/types/bulk_post_response.py,sha256=LV0qxT81BaKqMdG4__k_tN3NmMCjMFIpjIsE5FJBuBk,598
|
|
194
|
+
label_studio_sdk/projects/members/client.py,sha256=cnZEUjy4sO_NHBJbMyn3Th36tTfRlweNYD_Le_hdr78,4623
|
|
195
|
+
label_studio_sdk/projects/metrics/__init__.py,sha256=m9tH0fLuScfYi_pGIPNCGE_fRvt0FzmjCGUmPyUZ1SA,179
|
|
196
|
+
label_studio_sdk/projects/metrics/client.py,sha256=2Z9xanSXc2W9znK_Xvc1AdNiR-L_nCegSz5l6rNG0_Q,9050
|
|
197
|
+
label_studio_sdk/projects/metrics/custom/__init__.py,sha256=MixEL4qUn7vOlK7SihoQXx_25y3MZAPlXFkgH1vTI4o,147
|
|
198
|
+
label_studio_sdk/projects/metrics/custom/client.py,sha256=FLXwLccyHFopfsyIFtjqScS--MFacLFiEKU-N6cz5Jw,16161
|
|
199
|
+
label_studio_sdk/projects/metrics/custom/types/__init__.py,sha256=UvVnkSwi8HUB06tvLrlomGQQ_0ysMj4LjYK7W8zn0e4,168
|
|
200
|
+
label_studio_sdk/projects/metrics/custom/types/custom_get_lambda_response.py,sha256=2j442w02YZulagDMpp6Cy1gcHuZzxy7eziRWsTg4bJ0,574
|
|
186
201
|
label_studio_sdk/projects/pauses/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
187
202
|
label_studio_sdk/projects/pauses/client.py,sha256=hVezKowiKPChc-0AZCTM2OEqdFg3-CDBCaCJCYsWJeo,20589
|
|
188
|
-
label_studio_sdk/projects/stats/__init__.py,sha256=
|
|
189
|
-
label_studio_sdk/projects/stats/client.py,sha256=
|
|
190
|
-
label_studio_sdk/projects/stats/types/__init__.py,sha256=
|
|
203
|
+
label_studio_sdk/projects/stats/__init__.py,sha256=6-Euk36IAYXNFuM7j42rD69WBc9QBcNKkzIqcmXFgEw,539
|
|
204
|
+
label_studio_sdk/projects/stats/client.py,sha256=TV2wNZ6-tlrhaePYN5A06HVigwFqTnKi5uwGWYF2MZE,9452
|
|
205
|
+
label_studio_sdk/projects/stats/types/__init__.py,sha256=LLz77Xk9j4o7Mv-6uPrdP4a2lSUxLRvUQKRr271Z-g8,771
|
|
191
206
|
label_studio_sdk/projects/stats/types/stats_iaa_response.py,sha256=IePSG_gbW-3rH7DfBOxWSDcleEip3Ra6kX8QH4b0r6s,1656
|
|
192
207
|
label_studio_sdk/projects/stats/types/stats_iaa_response_common_tasks.py,sha256=Bu7sUcrm0C5bqz9lOPJBeid8OGjRNO0d2epOEWpaO9w,213
|
|
193
208
|
label_studio_sdk/projects/stats/types/stats_iaa_response_iaa.py,sha256=xUQN36WYXt7Nh1CAIkxzGXlVt39XvYJoKfZSsWgc-Ug,199
|
|
194
209
|
label_studio_sdk/projects/stats/types/stats_iaa_response_std.py,sha256=uwjLK1PqcKAV_YE88TFCJ_ZY6YGSHUIMJzUMsDh2BXY,147
|
|
210
|
+
label_studio_sdk/projects/stats/types/stats_total_agreement_response.py,sha256=4BHA48StBh-xB3raIXug5iUwBzw1kFUafAxedw1E7j8,348
|
|
211
|
+
label_studio_sdk/projects/stats/types/stats_total_agreement_response_one.py,sha256=NxRT9FbRISJsvLd4d3MY-HN0CS-Dgurbc2V5jqaEte8,634
|
|
212
|
+
label_studio_sdk/projects/stats/types/stats_total_agreement_response_zero.py,sha256=HWpWKHL9D2lS1PhaO8ORJelNKVBb3IZjk_QO3-dycEc,617
|
|
195
213
|
label_studio_sdk/projects/types/__init__.py,sha256=6Tr0uoFAR18VyuWAzx3Y0Dmwo2ounGtDy8AFKjWiqpw,920
|
|
196
214
|
label_studio_sdk/projects/types/lse_project_create_request_sampling.py,sha256=w-HVtoVhZjRag4J0yq78c6lXODSWAgI9_fu7kaGQJrI,239
|
|
197
215
|
label_studio_sdk/projects/types/lse_project_create_request_skip_queue.py,sha256=0KAP0didzYHcbZL5h7HjMv62Hg0bp4GafyFdoKrk-SE,244
|
|
@@ -229,8 +247,10 @@ label_studio_sdk/tasks/types/tasks_list_request_fields.py,sha256=5YXxQgyzoaL0QjS
|
|
|
229
247
|
label_studio_sdk/tokens/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
|
|
230
248
|
label_studio_sdk/tokens/client.py,sha256=xcGl2ZA6Ojc9fZAbZQrqZ-yfBfllCUvvD4gzDM2HvW4,19125
|
|
231
249
|
label_studio_sdk/tokens/client_ext.py,sha256=DJ4vEslU0BKragW51LjJW-AG1uogPiCeEGB3o6qtAK4,6030
|
|
232
|
-
label_studio_sdk/types/__init__.py,sha256=
|
|
250
|
+
label_studio_sdk/types/__init__.py,sha256=YcRgyOfvqeriZUqKVqRXH-nYcIxgI4kThOLYiwOyNig,16100
|
|
233
251
|
label_studio_sdk/types/actions_enum.py,sha256=h2lpUstX459SfopuhWzpUONFhMYNkeWsddTxmTIx54k,575
|
|
252
|
+
label_studio_sdk/types/activity_log.py,sha256=nU1OMVtFgH1mrgYAFpDd9lnIr-4aAuFyo7ZhgGtXF_4,1398
|
|
253
|
+
label_studio_sdk/types/activity_log_response.py,sha256=z2Ya8wH-LD_2C34CkQXoRRMQZ8qRWv1YFysMf7YDLxk,940
|
|
234
254
|
label_studio_sdk/types/all_roles_project_list.py,sha256=7CdNKiRFrkJgCTXebB7ztmocTOHKRXf5XhOqd7O7b4g,6395
|
|
235
255
|
label_studio_sdk/types/all_roles_project_list_sampling.py,sha256=VfQKGeVtOlceTWajZu1I4JWnELn2JLOe0dKZPxlCnhg,219
|
|
236
256
|
label_studio_sdk/types/all_roles_project_list_skip_queue.py,sha256=qG46c-oIEljyv5BtHLqGYqzQVSn57JhjUzp5ws2b1wQ,224
|
|
@@ -327,6 +347,7 @@ label_studio_sdk/types/lseapi_token_create.py,sha256=IP5uO2iCQT0mi-0SAb7mzEX87Ik
|
|
|
327
347
|
label_studio_sdk/types/lseapi_token_list.py,sha256=6ARiZVlG4w_na_cTP453z10fZaSqaQioi9crlYb_0Ms,601
|
|
328
348
|
label_studio_sdk/types/lsejwt_settings.py,sha256=ovczixdnMQrR8u92I5DHSHDM5Cx7veyeGKaPx0z7gD0,1007
|
|
329
349
|
label_studio_sdk/types/maybe_expanded_comment.py,sha256=lRZwn9YoOfdz5XAVRAPPB36DqcJ2Y0kKpnd537INpBQ,274
|
|
350
|
+
label_studio_sdk/types/metric_param.py,sha256=oY4GsSXI7mrypkCBE8ohHrqpoO3PWQT-e_ACuDRadBE,991
|
|
330
351
|
label_studio_sdk/types/ml_backend.py,sha256=x7QAgUz4gmDNRnX8y0lsFHi8G0Fuwv_DXnl65kVkzPY,2222
|
|
331
352
|
label_studio_sdk/types/mode_enum.py,sha256=7kdyeqSjDvV46wBod7EAb-qzkZSCKJvCvEuFWu5CGnI,161
|
|
332
353
|
label_studio_sdk/types/model_interface.py,sha256=JMvAs9La4vC9x7UVscwUZ-bTQsym6TJ0GPCjE_qrVDY,1317
|
|
@@ -410,11 +431,15 @@ label_studio_sdk/types/version_response.py,sha256=daEcloRUKZ5jNBMkWEeSowtgZZGPq2
|
|
|
410
431
|
label_studio_sdk/types/view.py,sha256=Cc64EhaqZwEg9X-_l-tXWOBP7NpeKnt2jnZtwBmBvmI,1199
|
|
411
432
|
label_studio_sdk/types/webhook.py,sha256=iWe_6FDWlVqLEjSjFbTjN1ND2H1BkE9ri9OORFFlSqM,1453
|
|
412
433
|
label_studio_sdk/types/webhook_serializer_for_update.py,sha256=x52Tfps9jaiml5cr2TV1I-5kYFvxKjNTp5_hJQSxV94,1576
|
|
434
|
+
label_studio_sdk/types/who_am_i_lse_fields.py,sha256=mZZyQ7BeRJwxSYJvgr94fHCxgZM0wBQ9NGr7LkYN_hw,1815
|
|
435
|
+
label_studio_sdk/types/who_am_i_lse_fields_onboarding_state.py,sha256=E1v7QgVn1MEwTv9gQLXPDNlgm-1sKKYcRfe8HMGe_Ps,289
|
|
436
|
+
label_studio_sdk/types/who_am_i_lse_fields_trial_role.py,sha256=edD3Mw9CBgQM_ZxHsRn9tdqh2DzYvefsHNyCfHhrT90,265
|
|
437
|
+
label_studio_sdk/types/who_am_i_user.py,sha256=8L4yfdA2NMljewJhW9D4ky1fe_X9pqK9vhMaH3AvDgA,1616
|
|
413
438
|
label_studio_sdk/types/workspace.py,sha256=6To6WDvZWejhm1vAdIehlq6h9vpPN8UpMc92YA6g49I,1273
|
|
414
439
|
label_studio_sdk/types/workspace_member_create.py,sha256=vPsS7IC6hPz9eDgr6TN2xIP7U40Eb1Tv7Ly8Zvn44iI,714
|
|
415
440
|
label_studio_sdk/types/workspace_member_list.py,sha256=TSP6g33n3OGtMV-Uz7rmME4oR_4bb42vG9ne8I4UEJQ,698
|
|
416
441
|
label_studio_sdk/users/__init__.py,sha256=UKVMXjtKsr9fAtH1ipr6YPmY5tdrJjELYN4Cb3l56-I,195
|
|
417
|
-
label_studio_sdk/users/client.py,sha256=
|
|
442
|
+
label_studio_sdk/users/client.py,sha256=xtBtLyGzkoXPeO85qx_7MZsdmZQhoPsjsdsi0cXgBu8,46998
|
|
418
443
|
label_studio_sdk/users/types/__init__.py,sha256=piwIvEOYFNLlEeWae92M9zoJ-LX6-7C-agJXUtnSgNY,253
|
|
419
444
|
label_studio_sdk/users/types/users_get_token_response.py,sha256=HiWpBI0Xjuld7SV9STV5uSt-9Qd3lccL1N6GutiC7PI,594
|
|
420
445
|
label_studio_sdk/users/types/users_reset_token_response.py,sha256=xQf9LrnzVZF00us26FcVDB_Z0iKZIWAc33q6_i8kcdo,595
|
|
@@ -461,9 +486,14 @@ label_studio_sdk/webhooks/types/webhooks_info_response_tasks_created.py,sha256=e
|
|
|
461
486
|
label_studio_sdk/webhooks/types/webhooks_info_response_tasks_deleted.py,sha256=_J0al_hFAXG7tqqVkBSqbpl6VB4H9DYCqDY07MjGIlE,785
|
|
462
487
|
label_studio_sdk/workspaces/__init__.py,sha256=4IfkSXstAMN7sS3_Z6jV9m75h2ER0bpaX_J_TO0WTPU,110
|
|
463
488
|
label_studio_sdk/workspaces/client.py,sha256=u3-tsfOqhi222pKdkgOEkr7tblhEJQS__zVbTTx-D4k,20578
|
|
464
|
-
label_studio_sdk/workspaces/members/__init__.py,sha256=
|
|
465
|
-
label_studio_sdk/workspaces/members/
|
|
466
|
-
label_studio_sdk
|
|
467
|
-
label_studio_sdk
|
|
468
|
-
label_studio_sdk
|
|
469
|
-
label_studio_sdk
|
|
489
|
+
label_studio_sdk/workspaces/members/__init__.py,sha256=1-79X4DdgZ05DnyFyhJvW0V_0mRLqeWu0vhjlm6oJxA,201
|
|
490
|
+
label_studio_sdk/workspaces/members/bulk/__init__.py,sha256=a9iYfTwhgtS3l_5HLym31_5xHD4G3jWA_T-ZLvoz2Qc,175
|
|
491
|
+
label_studio_sdk/workspaces/members/bulk/client.py,sha256=mZXAV5GS862EhtplcT7vDpU-AJm1Y9UjzUVcsMPdlYo,8144
|
|
492
|
+
label_studio_sdk/workspaces/members/bulk/types/__init__.py,sha256=mIdGHkaAbK1Mq6tVM0QA8IqefxknjU3zLZgbIaIOdhY,221
|
|
493
|
+
label_studio_sdk/workspaces/members/bulk/types/bulk_delete_response.py,sha256=sUNqoGRnpxGxxx1i0lYuK5F_L0RzxlQ3rPDhxqih1hA,602
|
|
494
|
+
label_studio_sdk/workspaces/members/bulk/types/bulk_post_response.py,sha256=LV0qxT81BaKqMdG4__k_tN3NmMCjMFIpjIsE5FJBuBk,598
|
|
495
|
+
label_studio_sdk/workspaces/members/client.py,sha256=tiobmk92qPeD3GFtbFbjjx-24viq4y4PHDsdQvMOI34,10810
|
|
496
|
+
label_studio_sdk-2.0.5.dist-info/LICENSE,sha256=ymVrFcHiJGjHeY30NWZgdV-xzNEtfuC63oK9ZeMDjhs,11341
|
|
497
|
+
label_studio_sdk-2.0.5.dist-info/METADATA,sha256=LX-Og1TCut8zIATd2Gh5QeN3tbheRlUJxRwfxB7svfM,7650
|
|
498
|
+
label_studio_sdk-2.0.5.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
|
499
|
+
label_studio_sdk-2.0.5.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|