mirror of
https://github.com/bcomsugi/dasaproject.git
synced 2026-01-08 18:42:37 +07:00
8 lines
155 B
Python
8 lines
155 B
Python
import pyautogui
|
|
import time
|
|
pyautogui.FAILSAFE=False
|
|
while True:
|
|
pyautogui.moveTo(255,255,4)
|
|
time.sleep(5)
|
|
pyautogui.moveTo(1000,1000,4)
|
|
time.sleep(5) |