How to detect mouse click in python 3 on linux?

I am very new to python and want to be able to detect mouse click events across the screen.

This question is closest to what I want, however, none of the answers are very descriptive.

How can i do this?

+4
source share
1 answer

you can handle mouse input using lib PyUserInput (sample code from 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()

Otherwise, you can do it with Xliblib: Python Xlib catch / send mouseclick

+6
source

All Articles