Source code for AutomateTheBoringStuff.Ch18.P2_mouseNow
#! python3
"""Mouse now
Displays the mouse cursor's current position in terminal.
"""
[docs]def main():
import pyautogui
print('Press Ctrl-C to quit.')
try:
while True:
# Get and print the mouse coordinates.
x, y = pyautogui.position()
positionStr = 'X: ' + str(x).rjust(4) + ' Y: ' + str(y).rjust(4)
print(positionStr, end='')
print('\b' * len(positionStr), end='', flush=True)
except KeyboardInterrupt:
print('\nDone.')
if __name__ == '__main__':
main()