python pynput监听键盘_【322】python控制键盘鼠标:pynput

Python控制键盘鼠标:pynput

地址:pynput - PyPI

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

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

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

pynput.keyboard:包含控制和监控键盘的类。

基本用法介绍:

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))

# 设置鼠标位置

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)

# 左键单击

mouse.click(Button.left,1)

# 右键单击

mouse.click(Button.right,1)

# 左键双击

mouse.click(Button.left,2)

# 鼠标滚动(x,y) x代表左右移动,y代表上下移动

# X:正值代表从右向左 Y:正值代表向上移动,负值代表向下移动

mouse.scroll(0, 100)

监控鼠标事件 :略

键盘输入用法:

from pynput.keyboard import Key, Controller

keyboard = Controller()

#Press and release space

keyboard.press(Key.space)

keyboard.release(Key.space)

#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‘)

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值