我想创建一个可以快速点击某些内容的程序
我正在尝试使用python中的鼠标库
但是每次我都有不同的答案。我想使其恒定或非常快(0.001快得多)
import ctypes
from datetime import datetime
user32 = ctypes.WinDLL('user32', use_last_error = True)
a = datetime.now()
user32.mouse_event(0x2, 0, 0, 0, 0)
user32.mouse_event(0x4, 0, 0, 0, 0)
b = datetime.now()
print(b-a)
以及中间几行(我从鼠标库中提取了它,以删除其他功能并使程序更快)