-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathmain.py
More file actions
59 lines (48 loc) · 1.38 KB
/
main.py
File metadata and controls
59 lines (48 loc) · 1.38 KB
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
52
53
54
55
56
57
58
59
from src.cookie import get_cookie
from src.general import forum_visit, forum_sign, forum_download, wordpress_visit
from src.special import psnine, skland
if __name__ == '__main__':
print("——————————")
forum_visit.do({
"name": "Chiphell",
"cookie": get_cookie("chiphell"),
"url": "https://www.chiphell.com"
})
forum_visit.do({
"name": "VCB",
"cookie": get_cookie("vcb"),
"url": "https://bbs.acgrip.com"
})
forum_sign.do({
"name": "天使动漫",
"cookie": get_cookie("tsdm"),
"url": "https://www.tsdm39.com"
})
forum_sign.do({
"name": "花火学园",
"cookie": get_cookie("sayhuahuo"),
"url": "https://www.sayhanabi.net"
})
forum_visit.do({
"name": "恩山",
"cookie": get_cookie("right"),
"url": "https://www.right.com.cn/forum"
})
forum_download.do({
"name": "天雪",
"cookie": get_cookie("skyey"),
"url": "https://www.skyey2.com",
"fid": "16"
})
wordpress_visit.do({
"name": "心动日剧",
"cookie": get_cookie("doki8"),
"url": "http://www.doki8.net"
})
psnine.do({
"psnid": get_cookie("psnine", "psnid"),
"shell": get_cookie("psnine", "shell")
})
skland.sign({
"token": get_cookie("skland", "token")
})