You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
1.1 KiB

2 years ago
from os import environ
from check import CheckIn
from push import send_msg_serverJ, send_msg_pushplus, send_bark
from config import config
2 years ago
def main():
conf = config()
2 years ago
# 获取actions secrets配置的cookie SendKey
ck = conf[0]['cookies']
# send_key = environ.get('SendKey')
# token = environ.get('token')
bark_url = conf[0]['bark_url']
2 years ago
try:
title, text = CheckIn(ck)
2 years ago
print('签到成功!')
except Exception as e:
print('程序出错!')
title = '程序出错!'
text = e
2 years ago
finally:
# print(title)
print(text)
2 years ago
# Text = Text.replace('\n', '%0D%0A%0D%0A')
# if send_key != '':
# rsp = send_msg_serverJ(send_key, title, text) # 推送消息无SendKey不推送
# print(rsp)
#
# if token != '':
# rsp = send_msg_pushplus(token, title, text) # 推送消息无token不推送
# print(rsp)
if bark_url != '':
rsp = send_bark(bark_url, title, text)
print(rsp)
2 years ago
if __name__ == '__main__':
main()