Is it possible to get the overall cursor position in Windows using the standard Python libraries?
Using pyautogui
To install
pip install pyautogui
and to find the location of the mouse pointer
import pyautogui print(pyautogui.position())
This will give the pixel location to which mouse pointer is at.