如何在linux上的后台使用python捕获mouseevents和keyevent

前端之家收集整理的这篇文章主要介绍了如何在linux上的后台使用python捕获mouseevents和keyevent前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想创建一个可以在后台运行的 python脚本,但是当mouseevent或keyevent发生时打印文本.是否有任何库/内置功能来实现这一目标?或者我可以调用任何系统命令来获取此信息?成为根本不是问题.

解决方法

我想,你可能会使用python绑定evdev: http://packages.python.org/evdev/index.html.在教程中他们给出了一个键盘示例,但它应该与鼠标事件类似:
>>> from evdev import InputDevice,categorize,ecodes
>>> from select import select
>>> dev = InputDevice('/dev/input/event1')

>>> print(dev)
device /dev/input/event1,name "Dell Dell USB Keyboard",phys "usb-0000:00:12.1-2/input0"

>>> while True:
...    r,w,x = select([dev],[],[])
...    for event in dev.read():
...        if event.type == ecodes.EV_KEY:
...            print(categorize(event))
... # hitting a and holding space
key event at 1337016188.396030,30 (KEY_A),down
key event at 1337016188.492033,up
key event at 1337016189.772129,57 (KEY_SPACE),down
key event at 1337016190.275396,hold
key event at 1337016190.284160,up
原文链接:https://www.f2er.com/linux/394603.html

猜你在找的Linux相关文章