摘要: ``` import win32api from ctypes import windll def click(x, y, button=1, n=1): for i in range(n): flag_press = 2 ** ((2 * button) - 1) flag_release = 2 ** (2 * button) win... 阅读全文
posted @ 2017-09-06 13:32 idlewith 阅读(318) 评论(0) 推荐(0) 编辑