Cursor Coordinates

Mubashir Khalid

Backend Engineer
Python

A python script that shows you live coordinates of where your cursor is on the screen.

import pyautogui
import time



stop = False

while stop == False:
time.sleep(1)
print(pyautogui.position())
print('.')

Libraries used:

pyautogui
time
The live coordinates of your cursor are printed every second.
Partner With Mubashir
View Services

More Projects by Mubashir