Cool_Breeze 发表于 2021-1-28 19:55

python 自动移动鼠标

本帖最后由 Cool_Breeze 于 2021-1-28 20:36 编辑

# coding=utf-8
# python3.7.0
# Cool_Breeze

import pyautogui
from random import randint
from time import sleep

SCREENSIZE = pyautogui.size()

def pos(s):
    global SCREENSIZE
    return randint(0 ,SCREENSIZE), randint(0 ,SCREENSIZE), s


if __name__ == '__main__':
    while True:
      pyautogui.moveTo(*pos(3))
      sleep(2)

Cool_Breeze 发表于 2021-1-31 16:42

qwertyuiop1822 发表于 2021-1-29 11:00
没用过Python操作鼠标键盘,感觉不太好用。用的aardio,系统原生接口,bug少很多

没有感觉到有什么BUG, 可能我用的少吧!

arq2020 发表于 2021-1-28 20:00

感谢分享

wan1330 发表于 2021-1-28 20:07

感谢分享,学习一下

ytfrdfiw 发表于 2021-1-28 20:26


感谢分享,学习一下

pwp 发表于 2021-1-28 21:44

收藏,留痕,就是不加分。

ufo2273810 发表于 2021-1-28 21:46

感谢楼主分享!

想起一个名 发表于 2021-1-29 09:05


感谢楼主分享!

未来老中医 发表于 2021-1-29 09:16

收藏,多谢分享

嘟鲁鲁 发表于 2021-1-29 09:18

楼主是想摸鱼呢还是咋个

Cool_Breeze 发表于 2021-1-29 09:20

上班不能摸鱼,还上什么班?{:301_1001:}
页: [1] 2
查看完整版本: python 自动移动鼠标