Python 鼠标循环自动点击 更新增加GUI界面 2024-05-27
本帖最后由 Cool_Breeze 于 2024-5-27 20:37 编辑抱歉日常水贴,保持账号活跃度。
可执行文件:
通过百度网盘分享的文件:autoClic…
链接:https://pan.baidu.com/s/1sf1omVquv07ncJY0f6Sg9w?pwd=wc5p
提取码:wc5p
复制这段内容打开「百度网盘APP 即可获取」
坐标可使用待位置信息的截图软件获取。
x,y坐标轴
interval:休息时间
格式:{ "x": 100,
"y": 200,
"interval": 1.0
},
loop_max_count:最大循环次数
begin_posi_list:开始点击坐标
loop_posi_list:循环点击坐标
ended_posi_list:结束点击坐标
配置文件:{
"loop_max_count": 5,
"begin_posi_list": [],
"loop_posi_list": [
{
"x": 100,
"y": 200,
"interval": 1.0
},
{
"x": 1000,
"y": 200,
"interval": 2.5
}
],
"ended_posi_list": []
}import pyautogui
import json
import time
import os
from typing import Any, Callable, List
CONFIG_NAME = 'config.json'
class PositionData(object):
def __init__(self, x:int, y:int, interval:float) -> None:
self.x = x
self.y = y
self.interval = interval
"""点击坐标后等待时长"""
class ConfigInfo(object):
def __init__(self, loop_max_count=0) -> None:
"""这些存在的值是为了生成config.json文件填充其格式而添加
Args:
loop_max_count (int, optional): 循环列表点击的最大次数. Defaults to 0.
"""
self.loop_max_count = loop_max_count
self.begin_posi_list:List =
self.loop_posi_list:List =
self.ended_posi_list:List =
class JSONEncoder(json.JSONEncoder):
def default(self, o: ConfigInfo) -> dict:
d = {}
for k,v in o.__dict__.items():
if k.startswith('_'):
continue
d.setdefault(k, v)
return d
class JSONDecoder(json.JSONDecoder):
def decode(self, s: str, _w: Callable[..., Any] = ...) -> ConfigInfo:
obj_data =super().decode(s)
obj = ConfigInfo()
for k,v in obj_data.items():
if isinstance(v, list):
dt = []
for pos in v:
dt.append(PositionData(**pos))
setattr(obj, k, dt)
else:
setattr(obj, k, v)
return obj
def read_local_config() -> ConfigInfo:
with open(CONFIG_NAME) as fp:
return json.load(fp, cls=JSONDecoder)
if __name__ =='__main__':
# with open(CONFIG_NAME, 'w') as f:
# f.write(json.dumps(ConfigInfo(5), indent=4, cls=JSONEncoder))
config = read_local_config()
count = 0
stop = False
if len(config.begin_posi_list):
for pos in config.begin_posi_list:
count += 1
xy = pos.x, pos.y
print("begin : %d\tclick : %d, %d" % (count, *xy))
pyautogui.click(xy)
time.sleep(pos.interval)
count = 0
while True:
if not len(config.loop_posi_list):
break
for pos in config.loop_posi_list:
count += 1
xy = pos.x, pos.y
print("loop count : %d\tclick : %d, %d" % (count, *xy))
pyautogui.click(*xy)
if count >= config.loop_max_count:
stop = True
break
time.sleep(pos.interval)
if stop:
break
count = 0
if len(config.ended_posi_list):
for pos in config.ended_posi_list:
count += 1
xy = pos.x, pos.y
print("begin : %d\tclick : %d, %d" % (count, *xy))
pyautogui.click(xy)
time.sleep(pos.interval)
print("exit")
os.system("pause") 温馨提示:请注意回复框下方的提醒文字。
警告:本版块禁止灌水或回复与主题无关内容,违者重罚! 本帖最后由 Cool_Breeze 于 2024-5-27 20:40 编辑
网盘链接:
通过百度网盘分享的文件:autoClic…
链接:https://pan.baidu.com/s/1Y234CPNxaxys5fzgtK1r5A?pwd=48c7
提取码:48c7
复制这段内容打开「百度网盘APP 即可获取」
只实现了鼠标点击,添加了界面,键盘输入没有弄!
Ctrl+q 可以暂停和继续。 用代码确定点击位置的方法好像不太适用日常应用场景,我记得以前wx上有个叫跳一跳的游戏,那个应该可以在这个基础上加一个获取中心点位置来实现跳高分,但是日常用的话好像有点鸡肋了。(无意冒犯抱歉抱歉) 用按键精灵会不会简单点? 感觉代码太复杂了 微信小程序挂号,如何实现循环自动点击?求代码 感觉有点水 具体应用场景是什么? python确实能做很多功能 有没有演示视频呀 实测可行,感谢分享 我也觉得按键精灵会简单点