python get list of system cursors code example
Example 1: py get mouse coordinates
import pyautogui
pos = pyautogui.position()
Example 2: python pywin32 get current cursor row
flags, hcursor, (x,y) = win32gui.GetCursorInfo()
import pyautogui
pos = pyautogui.position()
flags, hcursor, (x,y) = win32gui.GetCursorInfo()