Python控制键盘鼠标pynput的详细用法


Posted in Python onJanuary 28, 2019

pynput这个库让你可以控制和监控输入设备。

对于每一种输入设备,它包含一个子包来控制和监控该种输入设备:

  • pynput.mouse:包含控制和监控鼠标或者触摸板的类。
  • pynput.keyboard:包含控制和监控键盘的类。

地址:https://pypi.python.org/pypi/pynput

基本用法介绍:

from pynput.mouse import Button, Controller
import time 

mouse = Controller()
print(mouse.position)
time.sleep(3)
print('The current pointer position is {0}'.format(mouse.position))


#set pointer positon
mouse.position = (277, 645)
print('now we have moved it to {0}'.format(mouse.position))

#鼠标移动(x,y)个距离
mouse.move(5, -5)
print(mouse.position)

mouse.press(Button.left)
mouse.release(Button.left)

#Double click
mouse.click(Button.left, 1)

#scroll two steps down
mouse.scroll(0, 500)

监控鼠标事件 :

from pynput import mouse

def on_move(x, y ):
 print('Pointer moved to {o}'.format(
  (x,y)))

def on_click(x, y , button, pressed):
 print('{0} at {1}'.format('Pressed' if pressed else 'Released', (x, y)))
 if not pressed:
  return False

def on_scroll(x, y ,dx, dy):
 print('scrolled {0} at {1}'.format(
  'down' if dy < 0 else 'up',
  (x, y)))

while True:
 with mouse.Listener( no_move = on_move,on_click = on_click,on_scroll = on_scroll) as listener:
  listener.join()

键盘输入用法:

from pynput.keyboard import Key, Controller

keyboard = Controller()
# 按下空格和释放空格
#Press and release space
keyboard.press(Key.space)
keyboard.release(Key.space)
# 按下a键和释放a键
#Type a lower case A ;this will work even if no key on the physical keyboard is labelled 'A'
keyboard.press('a')
keyboard.release('a')

#Type two upper case As
keyboard.press('A')
keyboard.release('A')
# or 
with keyboard .pressed(Key.shift):
 keyboard.press('a')
 keyboard.release('a')

#type 'hello world ' using the shortcut type method
keyboard.type('hello world')

键盘监听:

from pynput import keyboard

def on_press(key):
 try:
  print('alphanumeric key {0} pressed'.format(key.char))
 except AttributeError:
  print('special key {0} pressed'.format(key))

def on_release(key):
 print('{0} released'.format(key))
 if key == keyboard.Key.esc:
  return False

while True:
 with keyboard.Listener(
  on_press = on_press,
  on_release = on_release) as listener:
  listener.join()

对于鼠标来说,api就上面几个。但是对于键盘来说还要别的,详细的查看:http://pythonhosted.org/pynput/index.html

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持三水点靠木。

Python 相关文章推荐
win10环境下python3.5安装步骤图文教程
Feb 03 Python
详解python中executemany和序列的使用方法
Aug 12 Python
Linux(Redhat)安装python3.6虚拟环境(推荐)
May 05 Python
python+PyQT实现系统桌面时钟
Jun 16 Python
Django 表单模型选择框如何使用分组
May 16 Python
Django+uni-app实现数据通信中的请求跨域的示例代码
Oct 12 Python
Python PyInstaller安装和使用教程详解
Jan 08 Python
wxPython修改文本框颜色过程解析
Feb 14 Python
Python使用OpenPyXL处理Excel表格
Jul 02 Python
python实现邮件循环自动发件功能
Sep 11 Python
python邮件中附加文字、html、图片、附件实现方法
Jan 04 Python
Python创建自己的加密货币的示例
Mar 01 Python
用python 实现在不确定行数情况下多行输入方法
Jan 28 #Python
对python3中, print横向输出的方法详解
Jan 28 #Python
Python删除n行后的其他行方法
Jan 28 #Python
python 在指定范围内随机生成不重复的n个数实例
Jan 28 #Python
Python实现统计英文文章词频的方法分析
Jan 28 #Python
Python3实现统计单词表中每个字母出现频率的方法示例
Jan 28 #Python
Python判断变量名是否合法的方法示例
Jan 28 #Python
You might like
php获取网页内容方法总结
2008/12/04 PHP
php session和cookie使用说明
2010/04/07 PHP
php线性表顺序存储实现代码(增删查改)
2012/02/16 PHP
PHP查询数据库中满足条件的记录条数(两种实现方法)
2013/01/29 PHP
thinkphp 一个页面使用2次分页的实现方法
2013/07/15 PHP
PHP与Web页面交互操作实例分析
2020/06/02 PHP
JavaScript 嵌套函数指向this对象错误的解决方法
2010/03/15 Javascript
js bind 函数 使用闭包保存执行上下文
2011/12/26 Javascript
基于javascript bootstrap实现生日日期联动选择
2016/04/07 Javascript
Jquery EasyUI实现treegrid上显示checkbox并取选定值的方法
2016/04/29 Javascript
JS实现将Asp.Net的DateTime Json类型转换为标准时间的方法
2016/08/02 Javascript
前端常见跨域解决方案(全)
2017/09/19 Javascript
vue-cli项目中使用公用的提示弹层tips或加载loading组件实例详解
2018/05/28 Javascript
Javascript获取某个月的天数
2018/05/30 Javascript
利用jsonp解决js读取本地json跨域的问题
2018/12/11 Javascript
[原创]微信小程序获取网络类型的方法示例
2019/03/01 Javascript
linux环境下安装pyramid和新建项目的步骤
2013/11/27 Python
1 行 Python 代码快速实现 FTP 服务器
2018/01/25 Python
PyQt5 加载图片和文本文件的实例
2019/06/14 Python
Python发展史及网络爬虫
2019/06/19 Python
python并发编程多进程 互斥锁原理解析
2019/08/20 Python
使用PyInstaller将Pygame库编写的小游戏程序打包为exe文件及出现问题解决方法
2019/09/06 Python
Scrapy中如何向Spider传入参数的方法实现
2020/09/28 Python
canvas使用注意点总结
2013/07/19 HTML / CSS
伦敦时尚生活的缩影:LN-CC
2017/01/24 全球购物
Dockers鞋官网:Dockers Shoes
2018/11/13 全球购物
TCP/IP中的TCP和IP分别承担什么责任
2012/04/21 面试题
UNIX文件系统分类
2014/11/11 面试题
研究生自荐信
2013/10/09 职场文书
工作表扬信的范文
2014/01/10 职场文书
领导视察欢迎词
2014/01/15 职场文书
体育教学随笔感言
2014/02/24 职场文书
财务人员的自我评价范文
2014/03/03 职场文书
三八妇女节致辞
2015/07/31 职场文书
Python读取文件夹下的所有文件实例代码
2021/04/02 Python
浅析InnoDB索引结构
2021/04/05 MySQL