|
3 | 3 | import sys |
4 | 4 |
|
5 | 5 | import requests |
6 | | -import superannotate.lib.core as constances |
7 | 6 | from packaging.version import parse |
| 7 | +from superannotate.lib import core as constances |
8 | 8 | from superannotate.lib import get_default_controller |
9 | 9 | from superannotate.lib.app.analytics.class_analytics import class_distribution |
10 | 10 | from superannotate.lib.app.exceptions import AppException |
|
21 | 21 | from superannotate.lib.app.interface.sdk_interface import aggregate_annotations_as_df |
22 | 22 | from superannotate.lib.app.interface.sdk_interface import assign_folder |
23 | 23 | from superannotate.lib.app.interface.sdk_interface import assign_images |
24 | | -from superannotate.lib.app.interface.sdk_interface import ( |
25 | | - attach_document_urls_to_project, |
26 | | -) |
27 | | -from superannotate.lib.app.interface.sdk_interface import attach_image_urls_to_project |
28 | 24 | from superannotate.lib.app.interface.sdk_interface import attach_items |
29 | 25 | from superannotate.lib.app.interface.sdk_interface import ( |
30 | 26 | attach_items_from_integrated_storage, |
31 | 27 | ) |
32 | | -from superannotate.lib.app.interface.sdk_interface import attach_video_urls_to_project |
33 | 28 | from superannotate.lib.app.interface.sdk_interface import benchmark |
34 | 29 | from superannotate.lib.app.interface.sdk_interface import clone_project |
35 | 30 | from superannotate.lib.app.interface.sdk_interface import consensus |
36 | 31 | from superannotate.lib.app.interface.sdk_interface import copy_image |
37 | | -from superannotate.lib.app.interface.sdk_interface import copy_images |
38 | 32 | from superannotate.lib.app.interface.sdk_interface import copy_items |
39 | 33 | from superannotate.lib.app.interface.sdk_interface import create_annotation_class |
40 | 34 | from superannotate.lib.app.interface.sdk_interface import ( |
|
51 | 45 | from superannotate.lib.app.interface.sdk_interface import ( |
52 | 46 | download_annotation_classes_json, |
53 | 47 | ) |
| 48 | +from superannotate.lib.app.interface.sdk_interface import download_annotations |
54 | 49 | from superannotate.lib.app.interface.sdk_interface import download_export |
55 | 50 | from superannotate.lib.app.interface.sdk_interface import download_image |
56 | 51 | from superannotate.lib.app.interface.sdk_interface import download_image_annotations |
|
68 | 63 | from superannotate.lib.app.interface.sdk_interface import get_team_metadata |
69 | 64 | from superannotate.lib.app.interface.sdk_interface import init |
70 | 65 | from superannotate.lib.app.interface.sdk_interface import invite_contributors_to_team |
71 | | -from superannotate.lib.app.interface.sdk_interface import move_images |
72 | 66 | from superannotate.lib.app.interface.sdk_interface import move_items |
73 | 67 | from superannotate.lib.app.interface.sdk_interface import pin_image |
74 | 68 | from superannotate.lib.app.interface.sdk_interface import prepare_export |
|
89 | 83 | set_project_default_image_quality_in_editor, |
90 | 84 | ) |
91 | 85 | from superannotate.lib.app.interface.sdk_interface import set_project_workflow |
92 | | -from superannotate.lib.app.interface.sdk_interface import share_project |
93 | 86 | from superannotate.lib.app.interface.sdk_interface import unassign_folder |
94 | 87 | from superannotate.lib.app.interface.sdk_interface import unassign_images |
95 | 88 | from superannotate.lib.app.interface.sdk_interface import ( |
|
133 | 126 | "get_exports", |
134 | 127 | # annotations |
135 | 128 | "get_annotations", |
| 129 | + "download_annotations", |
136 | 130 | "get_annotations_per_frame", |
137 | 131 | # integrations |
138 | 132 | "get_integrations", |
|
154 | 148 | "search_projects", |
155 | 149 | "create_project", |
156 | 150 | "clone_project", |
157 | | - "share_project", |
158 | 151 | "delete_project", |
159 | 152 | "rename_project", |
160 | 153 | "upload_priority_scores", |
|
176 | 169 | "move_items", |
177 | 170 | "set_annotation_statuses", |
178 | 171 | # Image Section |
179 | | - "copy_images", |
180 | | - "move_images", |
181 | 172 | "delete_images", |
182 | 173 | "download_image", |
183 | 174 | "pin_image", |
|
189 | 180 | "upload_image_to_project", |
190 | 181 | "upload_image_annotations", |
191 | 182 | "upload_images_from_folder_to_project", |
192 | | - "attach_image_urls_to_project", |
193 | | - "attach_video_urls_to_project", |
194 | | - "attach_document_urls_to_project", |
195 | 183 | # Video Section |
196 | 184 | "upload_videos_from_folder_to_project", |
197 | 185 | # Annotation Section |
|
0 commit comments