核心就是两个python脚本
上面定时执行也大概写了方式
你也可以自己每天手动执行那个python脚本
115签到
import subprocessimport randomimport time# 定义多个账号的认证信息列表authentication_cookies = [ "" # 添加更多账号的认证信息]# 随机生成延迟时间,单位为秒# delay = random.randint(60, 600) # 随机生成1分钟到10分钟的延迟时间delay = random.randint(1, 60) # 随机生成1分钟到10分钟的延迟时间print(f"将在{delay // 60}分钟后执行签到任务...")# 等待随机延迟时间time.sleep(delay)# 循环处理每个账号的签到for idx, cookie in enumerate(authentication_cookies, start=1): # 获取当前时间 current_time = time.strftime("%Y-%m-%d %H:%M:%S", time.localtime()) # 构建命令 command = f'p115 check -c "{cookie}"' # 调用命令并获取输出 result = subprocess.run(command, shell=True, capture_output=True, text=True) # 解析输出 output = result.stdout.strip() if result.returncode == 0: print(f"{current_time} - 账号{idx}签到成功!") print(f"{current_time} - 返回信息:\n{output}") else: print(f"{current_time} - 账号{idx}签到失败。错误信息:\n{result.stderr}") print() # 打印空行 ,用于分隔不同账号的输出
115许愿
import timeimport errnofrom datetime import datetimefrom p115 import P115Clientfrom p115.tool import wish_make, wish_answer, wish_adoptdef log_with_time(message): print(f"{datetime.now().strftime('%Y-%m-%d %H:%M:%S')} - {message}")def main(): # 许愿账号的 cookie 和申请次数 accounts = [ { 'cookies': '', 'content': '希望下载速度更快', 'size': 75, 'apply_times': 9}, # 添加更多账号... ] # 祝愿账号的 cookie wish_cookie='' # 遍历每个账号并创建许愿 for idx, account in enumerate(accounts, start=1): for attempt in range(account['apply_times']): log_with_time(f"账号{idx},第{attempt + 1}次许愿开始...") # 初始化 115 客户端 client = P115Client(cookies=account['cookies']) try: # 创建许愿 wish_id = wish_make(client, account['content'], account['size']) log_with_time(f'账号{idx},第{attempt + 1}次许愿已创建 ,许愿 ID: {wish_id}') # 使用祝愿账号的 cookie 进行助愿操作 try: time.sleep(10) aid_id = wish_answer(P115Client(cookies=wish_cookie), wish_id, '帮你助个愿') log_with_time(f'许愿 ID {wish_id},助愿已创建,助愿 ID: {aid_id}') time.sleep(10) response = wish_adopt(client, wish_id, aid_id) log_with_time(f'账号{idx} ,第{attempt + 1}次采纳助愿 {aid_id} 成功 。') except OSError as e: if e.args[0] == errno.EIO and e.args[1]['code'] == 40201020: log_with_time(f'许愿 ID {wish_id},已提交过助愿,跳过。') else: raise e # 如果不是已提交助愿的错误 ,则重新抛出异常 except OSError as e: if e.args[0] == errno.EIO and e.args[1]['code'] == 40201045: log_with_time(f'账号{idx},发布心愿次数不足,跳过。') break else: raise e # 如果不是发布心愿次数不足的错误 ,则重新抛出异常if __name__ == '__main__': log_with_time("=========== 开始执行 ===========") main() log_with_time("=========== 执行结束 ===========")
可能用到的命令
卸载
sudo apt-get remove --purge python3sudo apt-get autoremove
安装Python3
sudo apt install python3 sudo apt install python3-pip # Ubuntu/Debian pip3 install pyaes sudo apt-get install -y python3.12 # 替换为你需要的版本 sudo update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.12 1sudo update-alternatives --config python3python3 --version
crontab -e
10 2 * * * sleep 5;/usr/bin/python3 /root/hostloc/point.py >> /root/hostloc/app.log
115脚本
pip3 install -U python-115
创建虚拟环境
python3 -m venv ~/myenvsource ~/myenv/bin/activate deactivate #退出虚拟环境
设置时区
sudo timedatectl set-timezone Asia/Shanghai nano ~/.bashrcalias date="date +\"%Y-%m-%d %H:%M:%S\""source ~/.bashrc nano ~/.zshrcsource ~/.zshrc # 如果你编辑的是 .zshrc 文件
2 0 * * * sleep 15; TZ='Asia/Shanghai' bash ~/run.sh
run.sh 写到一个shell脚本里面 方便定时执行
source ~/myenv/bin/activate python3 ~/115wish.py >> ~/log/wish.log 2>&1 python3 ~/115qiandao.py >> ~/log/qiandao.log 2>&1 python3 ~/hostloc.py >> ~/log/point.log 2>&1
还没有评论,来说两句吧...