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

gan*_*lf3 4 python

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

这个问题与我想要的最接近,但是没有一个答案是非常具有描述性的.

我怎样才能做到这一点?

oni*_*psy 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()
Run Code Online (Sandbox Code Playgroud)

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