python控制鼠标 pyautogui

#用这个代码可以画图!! 

pyautogui 

1.模块可以控制鼠标  (点击左键/右键 移动中间的轮 )

2.可以进行屏幕截图 im = pyautogui.screenshot()  (截图后可以判断当前点的RPG值,从而判断还是不是当前页面)

3.这货还可以键盘输入 pyautogui.typewrite()




#!python3
import pyautogui
import time

print('Press Ctrl-C to quit')

try:
    #while True:
        #ToDo: Get and print the mouse coordinates
        x,y = pyautogui.position()
        positionStr = 'X: ' + str(x) + ' Y: ' + str(y)
        time.sleep(5)
        #pyautogui.click(button='left') # 点击鼠标左键
        #pyautogui.doubleClick() #双击
        print(positionStr + '  check')
        pyautogui.click()
        distance = 200
        while distance > 0:
            pyautogui.dragRel(distance, 0 ,duration = 0.2) #move right
            distance = distance - 5
            pyautogui.dragRel(0, distance, duration = 0.2) #move down
            pyautogui.dragRel(-distance, 0, duration = 0.2) #move down
            distance = distance - 5
            pyautogui.dragRel(0 , -distance, duration = 0.2) #move up

except KeyboardInterrupt:
    print('end' + positionStr)
    #print('\nDone')


你可能感兴趣的:(python)