pyautogui自动化办公脚本

pyautogui自动化办公脚本

pyautogui是一个python第三方库,可以方便地调用鼠标、键盘、截图,实现自动化办公。

import pyautogui

pyautogui.position() #获取鼠标位置
pyautogui.moveTo(x,y) #移动鼠标到(x,y)坐标

pyautogui.click() #单击鼠标



具体参考http://pyautogui.readthedocs.io/en/latest/index.html
posted on 2018-08-02 22:30 JichengTang 阅读( ...) 评论( ...) 编辑 收藏

转载于:https://www.cnblogs.com/tangjicheng/p/9410617.html

你可能感兴趣的:(pyautogui自动化办公脚本)