赞
踩
在一个没有鼠标垫的地方,或者不喜欢将手离开键盘的人,那么这个程序一定很适合你。今天,我们就学习用Python来控制鼠标移动
首先我们要安装两个库第三方库,分别是pyautogui和pyhook3,在这里我使用的计算机是Windows10系统,版本是Python3.7,其他版本可能会发生未知错误。
首先我们来安装这两个模块
这个模块安装比较容易,直接使用下面命令便可以安装
pip install pyautogui
当出现以上命令时,则证明安装成功
安装这个模块简直实在是太难了,先用pypi上给的命令安装,出现报错
主要报错提示是因为没有安装vc2014,似乎是这样
于是在网上找到了一个whl包,用这个whl包就可以使用了
城通网盘下载链接:点击下载
蓝奏云下载链接: 点击下载
下载解压之后便可以看到以下几个文件
点击上面地址栏,输入cmd
按下回车,输入以下命令
pip install PyHook3-1.6.1-cp37-cp37m-win_amd64.whl
于是便安装成功了
from ctypes import * import PyHook3 as pyHook import pythoncom def onKeyboardEvent(event): print("onKeyboardEvent") pid = c_ulong(0) windowTitle = create_string_buffer(512) windll.user32.GetWindowTextA(event.Window, byref(windowTitle), 512) windll.user32.GetWindowThreadProcessId(event.Window, byref(pid)) windowName = windowTitle.value.decode('gbk') print("当前您处于%s窗口" % windowName) print("当前窗口所属进程id %d" % pid.value) print("当前刚刚按下了%s键" % str(event.Ascii)) return True hm = pyHook.HookManager() hm.KeyDown = onKeyboardEvent hm.HookKeyboard() pythoncom.PumpMessages()
这是在官网显示的源代码,修改了下,这样子我们就可以获取按键然后操控鼠标利用 pyautogui 移动了
导入所需要的模块
设置速度和点击次数
创建鼠标按下函数,设置参数事件,并全局定义变量
调用Windows的系统函数获取键盘输入
获取鼠标当前的位置,为下面的移动鼠标模块获取坐标
通过获取按键的对应ascll值来进行对应操作,这个时候,我们按下‘w’键时,我们的鼠标应该是已经可以进行移动了的,按下‘a’键可以向左移动,按下‘s’键可以向下移动,按下‘d’键可以向右移动
我们可以发现,如果这样移动速度太慢,那么我们设置四个速度让用户选择,用户选择对应的参数来调节速度
点击次数可能会使双击或者单击,这两种都很常用,所以我们在这里使用它。而其他的可以自行设置
当按下数字9时,我们的鼠标点击次数会设置为1
当按下数字0时,我们的鼠标点击次数会设置为2
我们在这里设置中间,左边和右边点击的方法,分别是k,j,l。当我们按下这几个键的时候,我们的鼠标便会点击屏幕
设置返回值为True
from ctypes import * import PyHook3 as pyHook import pythoncom import pyautogui speed = 10 click = 1 def onKeyboardEvent(event): global speed global click pid = c_ulong(0) windowTitle = create_string_buffer(512) windll.user32.GetWindowTextA(event.Window, byref(windowTitle), 512) windll.user32.GetWindowThreadProcessId(event.Window, byref(pid)) windowName = windowTitle.value.decode('gbk') currentMouseX, currentMouseY = pyautogui.position() if str(event.Ascii) == '119': pyautogui.moveTo(x=currentMouseX , y=currentMouseY - speed, duration=0.1, tween=pyautogui.easeInOutQuad) if str(event.Ascii) == '97': pyautogui.moveTo(x=currentMouseX- speed , y=currentMouseY , duration=0.1, tween=pyautogui.easeInOutQuad) if str(event.Ascii) == '115': pyautogui.moveTo(x=currentMouseX , y=currentMouseY + speed, duration=0.1, tween=pyautogui.easeInOutQuad) if str(event.Ascii) == '100': pyautogui.moveTo(x=currentMouseX + speed , y=currentMouseY, duration=0.1, tween=pyautogui.easeInOutQuad) if str(event.Ascii) == '49': speed = 10 if str(event.Ascii) == '50': speed = 20 if str(event.Ascii) == '51': speed = 40 if str(event.Ascii) == '52': speed = 80 if str(event.Ascii) == '48': click = 2 if str(event.Ascii) == '57': click = 1 if str(event.Ascii) == '106': if click == 1: pyautogui.click(x=None, y=None, clicks=1, interval=0.0, button='left', duration=0.0, tween=pyautogui.linear) else: pyautogui.doubleClick(x=None, y=None, interval=0.0, button='left', duration=0.0, tween=pyautogui.linear) if str(event.Ascii) == '107': if click == 1: pyautogui.click(x=None, y=None, clicks=1, interval=0.0, button='middle', duration=0.0, tween=pyautogui.linear) else: pyautogui.doubleClick(x=None, y=None, interval=0.0, button='middle', duration=0.0, tween=pyautogui.linear) if str(event.Ascii) == '108': if click == 1: pyautogui.click(x=None, y=None, clicks=1, interval=0.0, button='right', duration=0.0, tween=pyautogui.linear) else: pyautogui.doubleClick(x=None, y=None, interval=0.0, button='right', duration=0.0, tween=pyautogui.linear) #print("当前刚刚按下了%s键" % str(event.Ascii)) return True hm = pyHook.HookManager() hm.KeyDown = onKeyboardEvent hm.HookKeyboard() pythoncom.PumpMessages()
邀请你看《制作Pyautogui和PyHook3获取键盘事件并遥控鼠标移动和点击的程序》点击跳转
点击下载
如需转载,请附上原文链接:点击访问
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。