This commit is contained in:
2025-07-05 02:27:54 +05:00
commit d8fbfb6fb8
9 changed files with 295 additions and 0 deletions

11
coordnate.py Normal file
View File

@@ -0,0 +1,11 @@
import pyautogui
import time
print("Наведите курсор и нажмите Ctrl+C")
try:
while True:
x, y = pyautogui.position()
print(f"X: {x}, Y: {y}", end="\r")
time.sleep(0.1)
except KeyboardInterrupt:
print("\nГотово!")