


# 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)))
    
with mouse.Listener(on_click=on_click) as listener:
    listener.join()
print("I am here")
