forked from jckling/Daily-Bonus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
message.py
51 lines (43 loc) · 1.61 KB
/
message.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# -*- coding: utf-8 -*-
# @File : message.py
# @Time : 2021/10/17 19:24
# @Author : Jckling
import os
import time
from datetime import datetime, timedelta
from Bilibili import bilibili_checkin
from Picacomic import pica_checkin
from V2EX import v2ex_checkin
from Yamibo import yamibo_checkin
from Yurifans import yurifans_checkin
from telegram import Bot
# info
TG_USER_ID = os.environ.get("TG_USER_ID")
TG_BOT_TOKEN = os.environ.get("TG_BOT_TOKEN")
if __name__ == '__main__':
start_time = time.time()
utc_time = (datetime.utcnow() + timedelta(hours=8)).strftime("%Y-%m-%d %H:%M:%S")
content_lst = []
if os.environ.get("V2EX_COOKIES"):
content_lst.append(f"「V2EX」\n{v2ex_checkin.main()}")
if os.environ.get("BILIBILI_COOKIES"):
content_lst.append(f"「Bilibili」\n{bilibili_checkin.main()}")
if os.environ.get("YAMIBO_COOKIES"):
content_lst.append(f"「Yamibo」\n{yamibo_checkin.main()}")
if os.environ.get("YURIFANS_EMAIL"):
content_lst.append(f"「Yurifans」\n{yurifans_checkin.main()}")
if os.environ.get("PICA_EMAIL"):
content_lst.append(f"「哔咔漫画」\n{pica_checkin.main()}")
content_lst.append(
f"开始时间: {utc_time}\n"
f"任务用时: {int(time.time() - start_time)} 秒\n"
)
content = "\n————————————\n\n".join(content_lst)
if TG_BOT_TOKEN:
bot = Bot(token=TG_BOT_TOKEN)
bot.sendMessage(
chat_id=TG_USER_ID,
text=content,
parse_mode="HTML"
)
print(content)