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.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
from check import CheckIn
from push import send_msg_serverJ , send_msg_pushplus , send_bark
from config import config
def main ( ) :
conf = config ( )
ck = conf [ ' cookies ' ]
send_key = conf [ ' send_key ' ]
token = conf [ ' token ' ]
bark_url = conf [ ' bark_url ' ]
for c in ck :
try :
title , text = CheckIn ( c )
print ( ' 签到成功! ' )
except Exception as e :
print ( ' 程序出错! ' )
title = ' 程序出错! '
text = e
finally :
# print(title)
print ( text )
# 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 )
if __name__ == ' __main__ ' :
main ( )