@@ -203,6 +203,21 @@ def copy_images(
203203 copy_annotation_status = True ,
204204 copy_pin = True
205205):
206+ """Copy images in bulk between folders in a project
207+
208+ :param source_project: project name or folder path (e.g., "project1/folder1")
209+ :type source_project: str
210+ :param destination_project: project name or folder path (e.g., "project1/folder2")
211+ :type destination_project: str
212+ :param image_names: image names. If None, all images from source project will be copied
213+ :type image: list of str
214+ :param include_annotations: enables annotations copy
215+ :type include_annotations: bool
216+ :param copy_annotation_status: enables annotations status copy
217+ :type copy_annotation_status: bool
218+ :param copy_pin: enables image pin status copy
219+ :type copy_pin: bool
220+ """
206221 source_project , source_project_folder = get_project_and_folder_metadata (
207222 source_project
208223 )
@@ -270,6 +285,21 @@ def move_images(
270285 copy_annotation_status = True ,
271286 copy_pin = True ,
272287):
288+ """Move images in bulk between folders in a project
289+
290+ :param source_project: project name or folder path (e.g., "project1/folder1")
291+ :type source_project: str
292+ :param destination_project: project name or folder path (e.g., "project1/folder2")
293+ :type destination_project: str
294+ :param image_names: image names. If None, all images from source project will be moved
295+ :type image: list of str
296+ :param include_annotations: enables annotations copy
297+ :type include_annotations: bool
298+ :param copy_annotation_status: enables annotations status copy
299+ :type copy_annotation_status: bool
300+ :param copy_pin: enables image pin status copy
301+ :type copy_pin: bool
302+ """
273303 source_project , source_project_folder = get_project_and_folder_metadata (
274304 source_project
275305 )
0 commit comments