We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
每天固定启动时间、固定阅读时间,可能会被腾讯盯上。个人建议: 1.脚本开始阅读前,等待一个随机时间:
wait_time=random.randint(0, 300) logging.info(f"⏱️ 程序启动,等待{wait_time}秒...") time.sleep(wait_time)
2.环境变量直接填写阅读时间,而不是阅读次数: READ_TIME=120
READ_TIME=120
3.根据阅读时间环境变量生成单次阅读时间的序列:
remaining=READ_TIME read_serial=[] while remaining>0: read_once=random.randint(25, 45) read_serial.append(read_once) remaining-=read_once
然后再遍历read_serial即可
The text was updated successfully, but these errors were encountered:
个人感觉其实 内容变化(翻页) 这个实现了更能规避被盯上😂 读了二十多个小时同一页了。。
Sorry, something went wrong.
都是很好的建议,后面会采纳改一版
No branches or pull requests
每天固定启动时间、固定阅读时间,可能会被腾讯盯上。个人建议:
1.脚本开始阅读前,等待一个随机时间:
2.环境变量直接填写阅读时间,而不是阅读次数:
READ_TIME=120
3.根据阅读时间环境变量生成单次阅读时间的序列:
然后再遍历read_serial即可
The text was updated successfully, but these errors were encountered: