


# https://www.globalsino.com/ICs/
# Get mouse position/coordinates on clicks countinously

from pynput import mouse

def on_click(x, y, button, pressed):
    print(button)  
    print('{0} at {1}'.format(
        'Pressed' if pressed else 'Released',
        (x, y)))
    
listener = mouse.Listener(on_click=on_click)
listener.start()
print("I am here")
