import time import random import requests def restart_qq(): """ 固定重启用 目前已经启用,暂时不需要重启函数 """ requests.post('http://127.0.0.1:3000/send_group_msg', json={ 'group_id': 789947666, 'message': [{ 'type': 'text', 'data': { 'text': "傻逼腾讯" } }] }) while True: # 生成1到2小时(换算成秒,1小时=3600秒,2小时=7200秒)的随机秒数作为间隔时间 interval = random.randint(120, 1200) time.sleep(interval) restart_qq()