Added All files.

This commit is contained in:
Nikas36
2019-09-04 18:18:53 +03:00
committed by GitHub
parent eec2c93773
commit d940bd7519
14 changed files with 262 additions and 0 deletions

8
mousescanner.py Normal file
View File

@@ -0,0 +1,8 @@
import pyautogui
import time
while True:
print(pyautogui.position())
x, y = pyautogui.position()
print(pyautogui.pixel(x,y))
time.sleep(3)