如何在linux上的python 3中检测鼠标点击?

时间:2013-12-17 08:28:01

标签: python

我是python的新手,我希望能够在整个屏幕上检测鼠标点击事件。

This question最接近我想要的,但没有一个答案是非常具有描述性的。

我该怎么做?

1 个答案:

答案 0 :(得分:7)

您可以使用lib PyUserInput(来自github的代码示例)处理鼠标输入:

from pymouse import PyMouseEvent

def fibo():
    a = 0
    yield a
    b = 1
    yield b
    while True:
        a, b = b, a+b
        yield b

class Clickonacci(PyMouseEvent):
    def __init__(self):
        PyMouseEvent.__init__(self)
        self.fibo = fibo()

    def click(self, x, y, button, press):
        '''Print Fibonacci numbers when the left click is pressed.'''
        if button == 1:
            if press:
                print(self.fibo.next())
        else:  # Exit if any other mouse button used
            self.stop()

C = Clickonacci()
C.run()

否则,您可以使用Xlib lib:Python Xlib catch/send mouseclick

执行此操作