# MouseMove **Repository Path**: tf5488/mouse-move ## Basic Information - **Project Name**: MouseMove - **Description**: 基于 pyautogui 实现的一些小工具 - **Primary Language**: Python - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 2 - **Forks**: 1 - **Created**: 2022-03-07 - **Last Updated**: 2024-09-28 ## Categories & Tags **Categories**: Uncategorized **Tags**: Python, pyautogui ## README # 目录分类 [shakeMouse](https://gitee.com/tf5488/mouse-move/tree/master/shakeMouse) 是关于防止自动锁屏的小工具 [guiTest](https://gitee.com/tf5488/mouse-move/tree/master/guiTest) 是关于 pyautogui 的学习笔记 [MouseAuto](https://gitee.com/tf5488/mouse-move/tree/master/MouseAuto) 是关于自动触发鼠标操作的小工具 # 安装说明 ## 添加依赖 pip list 查看依赖列表 pip install pyautogui 安装依赖 ## 镜像加速 以安装 matplotlib 为例: pip install matplotlib -i https://pypi.tuna.tsinghua.edu.cn/simple 永久设置: pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple # pyautogui 的使用 可以看这个文档 shakeMouse\README.md # pyautogui pyautogui 的图像识别是基于 opencv 实现的一个封装 pyautogui 的窗口操作是基于 tkinter 的窗口和 ctypes.windll.user32.MessageBoxW 实现的 pyautogui 的鼠标操作是基于 ctypes.windll.user32 实现的