This commit is contained in:
Leon 2021-08-10 20:53:07 +08:00
parent 31f66669f3
commit fa65f4f0dc

View File

@ -10,7 +10,7 @@ Date: Tue Aug 10 08:24:30 UTC 2021
环境变量说明
MI_USER: 账号 仅支持手机号多账号用 # 分隔
MI_PWD: 密码 多账号用 # 分隔,且与账号一一对应
STEP: 步数 0 则为 18000-25000 之间随机自定义示例: 18763 19000-24000
STEP: 步数 空或不填则为 18000-25000 之间随机自定义示例: 18763 19000-24000
PMODE: 推送模式 || PKEY: 具体推送格式填写不带 [ ]请用具体的值代替)
wx [Server : skey]
nwx [ Server : skey]
@ -318,19 +318,23 @@ if __name__ == "__main__":
user = os.environ.get('MI_USER')
passwd = os.environ.get('MI_PWD')
step = os.environ.get('STEP').replace('[', '').replace(']', '')
step = os.environ.get('STEP')
user_list = user.split('#')
passwd_list = passwd.split('#')
step_array = step.split('-')
if step is None:
step = ''
step_array = ''
else:
step_array = step.split('-')
if len(user_list) == len(passwd_list):
push = ''
for line in range(0,len(user_list)):
if len(step_array) == 2:
step = str(random.randint(int(step_array[0]),int(step_array[1])))
print (f"已设置为随机步数({step_array[0]}-{step_array[1]}")
elif str(step) == '0':
print(f"已设置为随机步数({step_array[0]}-{step_array[1]}")
elif str(step) == '':
step = ''
push += main(user_list[line], passwd_list[line], step) + '\n'
if Pm == 'wx':