|
2 | 2 | import all wrapper function |
3 | 3 | """ |
4 | 4 |
|
5 | | -__all__ = [ |
6 | | - "click_mouse", "mouse_table", "position", "press_mouse", "release_mouse", |
7 | | - "scroll", "set_position", "special_table", |
8 | | - "keys_table", "press_key", "release_key", "type_key", "check_key_is_press", |
9 | | - "write", "hotkey", |
10 | | - "size", "screenshot", |
11 | | - "locate_all_image", "locate_image_center", "locate_and_click", |
12 | | - "CriticalExit", |
13 | | - "AutoControlException", "AutoControlKeyboardException", |
14 | | - "AutoControlMouseException", "AutoControlCantFindKeyException", |
15 | | - "AutoControlScreenException", "ImageNotFoundException", |
16 | | - "AutoControlJsonActionException", "AutoControlRecordException", |
17 | | - "AutoControlActionNullException", "AutoControlActionException", |
18 | | - "record", "stop_record", |
19 | | - "read_action_json", "write_action_json", |
20 | | - "execute_action", "execute_files", "executor", "add_command_to_executor", |
21 | | - "multiprocess_timeout", "test_record_instance", |
22 | | - "screenshot", |
23 | | - "pil_screenshot", |
24 | | - "generate_html", |
25 | | - "get_dir_files_as_list", "create_template_dir", "start_autocontrol_socket_server" |
26 | | -] |
27 | | - |
28 | 5 | # Critical |
29 | 6 | from je_auto_control.utils.critical_exit.critcal_exit import CriticalExit |
30 | 7 | from je_auto_control.utils.exception.exceptions import AutoControlActionException |
|
86 | 63 | from je_auto_control.wrapper.auto_control_screen import screenshot |
87 | 64 | # import screen |
88 | 65 | from je_auto_control.wrapper.auto_control_screen import size |
| 66 | + |
| 67 | +__all__ = [ |
| 68 | + "click_mouse", "mouse_table", "position", "press_mouse", "release_mouse", |
| 69 | + "scroll", "set_position", "special_table", |
| 70 | + "keys_table", "press_key", "release_key", "type_key", "check_key_is_press", |
| 71 | + "write", "hotkey", |
| 72 | + "size", "screenshot", |
| 73 | + "locate_all_image", "locate_image_center", "locate_and_click", |
| 74 | + "CriticalExit", |
| 75 | + "AutoControlException", "AutoControlKeyboardException", |
| 76 | + "AutoControlMouseException", "AutoControlCantFindKeyException", |
| 77 | + "AutoControlScreenException", "ImageNotFoundException", |
| 78 | + "AutoControlJsonActionException", "AutoControlRecordException", |
| 79 | + "AutoControlActionNullException", "AutoControlActionException", |
| 80 | + "record", "stop_record", |
| 81 | + "read_action_json", "write_action_json", |
| 82 | + "execute_action", "execute_files", "executor", "add_command_to_executor", |
| 83 | + "multiprocess_timeout", "test_record_instance", |
| 84 | + "screenshot", |
| 85 | + "pil_screenshot", |
| 86 | + "generate_html", |
| 87 | + "get_dir_files_as_list", "create_template_dir", "start_autocontrol_socket_server" |
| 88 | +] |
0 commit comments