You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Returns up to 1000 at a time, to get more, set offset as the starting position to fetch.
144
151
145
152
project is slug of your project. (Required)
@@ -160,6 +167,36 @@ def get_tasks(
160
167
params["limit"] =limit
161
168
returnself._getrequest(endpoint, params=params)
162
169
170
+
defget_multi_image_tasks(
171
+
self,
172
+
project: str,
173
+
status: str=None,
174
+
tags: list= [],
175
+
offset: int=None,
176
+
limit: int=100,
177
+
) ->dict:
178
+
"""
179
+
Returns a list of tasks.
180
+
Returns up to 1000 at a time, to get more, set offset as the starting position to fetch.
181
+
182
+
project is slug of your project. (Required)
183
+
status can be 'registered', 'in_progress', 'completed', 'skipped', 'in_review', 'send_backed', 'approved', 'customer_in_review', 'customer_send_backed', 'customer_approved'. (Optional)
184
+
tags is a list of tag. (Optional)
185
+
offset is the starting position number to fetch. (Optional)
name is an unique identifier of task in your project. (Required)
249
+
folder_path is a path to data folder. Files should be under the folder. Nested folder structure is not supported. Supported extensions of files are png, jpg, jpeg. (Required)
250
+
status can be 'registered', 'in_progress', 'completed', 'skipped', 'in_review', 'send_backed', 'approved', 'customer_in_review', 'customer_send_backed', 'customer_approved'. (Optional)
251
+
annotations is a list of annotation to be set in advance. (Optional)
252
+
tags is a list of tag to be set in advance. (Optional)
status can be 'registered', 'in_progress', 'completed', 'skipped', 'in_review', 'send_backed', 'approved', 'customer_in_review', 'customer_send_backed', 'customer_approved'. (Optional)
208
-
annotations is a list of annotation to be set. (Optional)
0 commit comments