python-鼠标宏
Posted 好好学习,天天向上
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python-鼠标宏相关的知识,希望对你有一定的参考价值。
按下鼠标左键, 连击
按下鼠标右键, 停止
import win32api import time from pynput.mouse import Button, Controller mouse = Controller() while True: if (win32api.GetAsyncKeyState(0x01)&0x8000 > 0): flag = True while flag == True: mouse.click(Button.left, 1) time.sleep(0.1) if (win32api.GetAsyncKeyState(0x02)&0x8000 > 0): flag = False else: pass
以上是关于python-鼠标宏的主要内容,如果未能解决你的问题,请参考以下文章