forked from arcturus-script/bilibili
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.py
39 lines (30 loc) · 988 Bytes
/
index.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
from bilibili import BiliBili
from config import config
from push import push
def main(*arg):
together = config.get("together")
type = config.get("push")
multi = config.get("multi")
if together is None or together: # 如果需要一并推送
msg_list = []
for i in multi:
options = i.get("options")
b = BiliBili(i["cookie"])
res = b.start(options)
msg_list.extend(res)
if type:
push(type, "BiliBili", msg_list)
else: # 不开启服务
print("未开启推送")
else: # 单独推送
for i in multi:
options = i.get("options")
b = BiliBili(i["cookie"])
res = b.start(options)
alone_type = i.get("push") # 单独推送类型
if alone_type:
push(alone_type, "BiliBili", res)
else:
print("未开启推送")
if __name__ == "__main__":
main()