|
1 | | -from file_automation.local.dir.dir_process import copy_dir, rename_dir, create_dir, remove_dir_tree |
2 | | -from file_automation.local.file.file_process import copy_file, remove_file, rename_file, copy_specify_extension_file, \ |
| 1 | +from automation_file.local.dir.dir_process import copy_dir, rename_dir, create_dir, remove_dir_tree |
| 2 | +from automation_file.local.file.file_process import copy_file, remove_file, rename_file, copy_specify_extension_file, \ |
3 | 3 | copy_all_file_to_dir |
4 | | -from file_automation.local.zip.zip_process import zip_dir, zip_file, zip_info, zip_file_info, set_zip_password, \ |
| 4 | +from automation_file.local.zip.zip_process import zip_dir, zip_file, zip_info, zip_file_info, set_zip_password, \ |
5 | 5 | read_zip_file, unzip_file, unzip_all |
6 | | -from file_automation.remote.google_drive.delete.delete_manager import drive_delete_file |
7 | | -from file_automation.remote.google_drive.dir.folder_manager import drive_add_folder |
8 | | -from file_automation.remote.google_drive.download.download_file import drive_download_file, \ |
| 6 | +from automation_file.remote.google_drive.delete.delete_manager import drive_delete_file |
| 7 | +from automation_file.remote.google_drive.dir.folder_manager import drive_add_folder |
| 8 | +from automation_file.remote.google_drive.download.download_file import drive_download_file, \ |
9 | 9 | drive_download_file_from_folder |
10 | | -from file_automation.remote.google_drive.driver_instance import driver_instance |
11 | | -from file_automation.remote.google_drive.search.search_drive import \ |
| 10 | +from automation_file.remote.google_drive.driver_instance import driver_instance |
| 11 | +from automation_file.remote.google_drive.search.search_drive import \ |
12 | 12 | drive_search_all_file, drive_search_field, drive_search_file_mimetype |
13 | | -from file_automation.remote.google_drive.share.share_file import \ |
| 13 | +from automation_file.remote.google_drive.share.share_file import \ |
14 | 14 | drive_share_file_to_anyone, drive_share_file_to_domain, drive_share_file_to_user |
15 | | -from file_automation.remote.google_drive.upload.upload_to_driver import \ |
| 15 | +from automation_file.remote.google_drive.upload.upload_to_driver import \ |
16 | 16 | drive_upload_dir_to_folder, drive_upload_to_folder, drive_upload_dir_to_drive, drive_upload_to_drive |
17 | | -from file_automation.utils.executor.action_executor import execute_action, execute_files, add_command_to_executor |
18 | | -from file_automation.utils.file_process.get_dir_file_list import get_dir_files_as_list |
19 | | -from file_automation.utils.json.json_file import read_action_json |
20 | | -from file_automation.utils.project.create_project_structure import create_project_dir |
| 17 | +from automation_file.utils.executor.action_executor import execute_action, execute_files, add_command_to_executor |
| 18 | +from automation_file.utils.file_process.get_dir_file_list import get_dir_files_as_list |
| 19 | +from automation_file.utils.json.json_file import read_action_json |
| 20 | +from automation_file.utils.project.create_project_structure import create_project_dir |
21 | 21 |
|
22 | 22 | __all__ = [ |
23 | 23 | "copy_file", "rename_file", "remove_file", "copy_all_file_to_dir", "copy_specify_extension_file", |
24 | 24 | "copy_dir", "create_dir", "remove_dir_tree", "zip_dir", "zip_file", "zip_info", |
25 | | - "zip_file_info", "set_zip_password", "unzip_file", "read_zip_file", |
| 25 | + "zip_file_info", "set_zip_password", "unzip_file", "read_zip_file", "rename_dir", |
26 | 26 | "unzip_all", "driver_instance", "drive_search_all_file", "drive_search_field", "drive_search_file_mimetype", |
27 | 27 | "drive_upload_dir_to_folder", "drive_upload_to_folder", "drive_upload_dir_to_drive", "drive_upload_to_drive", |
28 | 28 | "drive_add_folder", "drive_share_file_to_anyone", "drive_share_file_to_domain", "drive_share_file_to_user", |
|
0 commit comments