|
25 | 25 | attach_document_urls_to_project, |
26 | 26 | ) |
27 | 27 | from superannotate.lib.app.interface.sdk_interface import attach_image_urls_to_project |
28 | | -from superannotate.lib.app.interface.sdk_interface import attach_items_from_integrated_storage |
| 28 | +from superannotate.lib.app.interface.sdk_interface import ( |
| 29 | + attach_items_from_integrated_storage, |
| 30 | +) |
29 | 31 | from superannotate.lib.app.interface.sdk_interface import attach_video_urls_to_project |
30 | 32 | from superannotate.lib.app.interface.sdk_interface import benchmark |
31 | 33 | from superannotate.lib.app.interface.sdk_interface import clone_project |
|
55 | 57 | from superannotate.lib.app.interface.sdk_interface import get_annotations_per_frame |
56 | 58 | from superannotate.lib.app.interface.sdk_interface import get_exports |
57 | 59 | from superannotate.lib.app.interface.sdk_interface import get_folder_metadata |
58 | | -from superannotate.lib.app.interface.sdk_interface import get_image_annotations |
59 | 60 | from superannotate.lib.app.interface.sdk_interface import get_image_metadata |
60 | 61 | from superannotate.lib.app.interface.sdk_interface import get_integrations |
| 62 | +from superannotate.lib.app.interface.sdk_interface import get_item_metadata |
61 | 63 | from superannotate.lib.app.interface.sdk_interface import ( |
62 | 64 | get_project_and_folder_metadata, |
63 | 65 | ) |
|
71 | 73 | from superannotate.lib.app.interface.sdk_interface import move_images |
72 | 74 | from superannotate.lib.app.interface.sdk_interface import pin_image |
73 | 75 | from superannotate.lib.app.interface.sdk_interface import prepare_export |
| 76 | +from superannotate.lib.app.interface.sdk_interface import query |
74 | 77 | from superannotate.lib.app.interface.sdk_interface import rename_project |
75 | 78 | from superannotate.lib.app.interface.sdk_interface import run_prediction |
76 | 79 | from superannotate.lib.app.interface.sdk_interface import search_annotation_classes |
77 | 80 | from superannotate.lib.app.interface.sdk_interface import search_folders |
78 | 81 | from superannotate.lib.app.interface.sdk_interface import search_images |
79 | 82 | from superannotate.lib.app.interface.sdk_interface import search_images_all_folders |
| 83 | +from superannotate.lib.app.interface.sdk_interface import search_items |
80 | 84 | from superannotate.lib.app.interface.sdk_interface import search_models |
81 | 85 | from superannotate.lib.app.interface.sdk_interface import search_projects |
82 | 86 | from superannotate.lib.app.interface.sdk_interface import search_team_contributors |
|
98 | 102 | from superannotate.lib.app.interface.sdk_interface import ( |
99 | 103 | upload_images_from_folder_to_project, |
100 | 104 | ) |
101 | | -from superannotate.lib.app.interface.sdk_interface import ( |
102 | | - upload_images_from_public_urls_to_project, |
103 | | -) |
104 | 105 | from superannotate.lib.app.interface.sdk_interface import upload_images_to_project |
105 | 106 | from superannotate.lib.app.interface.sdk_interface import ( |
106 | 107 | upload_preannotations_from_folder_to_project, |
107 | 108 | ) |
108 | | -from superannotate.lib.app.interface.sdk_interface import ( |
109 | | - upload_priority_scores, |
110 | | -) |
| 109 | +from superannotate.lib.app.interface.sdk_interface import upload_priority_scores |
111 | 110 | from superannotate.lib.app.interface.sdk_interface import upload_video_to_project |
112 | 111 | from superannotate.lib.app.interface.sdk_interface import ( |
113 | 112 | upload_videos_from_folder_to_project, |
|
159 | 158 | "clone_project", |
160 | 159 | "share_project", |
161 | 160 | "delete_project", |
| 161 | + "rename_project", |
162 | 162 | "upload_priority_scores", |
163 | 163 | # Images Section |
164 | 164 | "search_images", |
|
171 | 171 | "search_folders", |
172 | 172 | "assign_folder", |
173 | 173 | "unassign_folder", |
| 174 | + # Items Section |
| 175 | + "get_item_metadata", |
| 176 | + "search_items", |
| 177 | + "query", |
174 | 178 | # Image Section |
175 | 179 | "copy_images", |
176 | 180 | "move_images", |
|
186 | 190 | "delete_annotations", |
187 | 191 | "upload_image_to_project", |
188 | 192 | "upload_image_annotations", |
189 | | - "upload_images_from_public_urls_to_project", |
190 | 193 | "upload_images_from_folder_to_project", |
191 | 194 | "attach_image_urls_to_project", |
192 | 195 | "attach_video_urls_to_project", |
|
202 | 205 | "add_annotation_bbox_to_image", |
203 | 206 | "add_annotation_point_to_image", |
204 | 207 | "add_annotation_comment_to_image", |
205 | | - "get_image_annotations", |
206 | 208 | "search_annotation_classes", |
207 | 209 | "create_annotation_classes_from_classes_json", |
208 | 210 | "upload_annotations_from_folder_to_project", |
|
212 | 214 | "run_prediction", |
213 | 215 | "search_models", |
214 | 216 | "download_model", |
215 | | - "rename_project", |
216 | 217 | "set_image_annotation_status", |
217 | 218 | "benchmark", |
218 | 219 | "consensus", |
|
0 commit comments