-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.py
272 lines (247 loc) · 11.2 KB
/
main.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
import asyncio
import json
import os
import random
from datetime import datetime
from urllib import parse
import httpx
from dotenv import find_dotenv, load_dotenv
USER_AGENTS = [
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; "
"SV1; AcooBrowser; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Acoo Browser; "
"SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.0.04506)",
"Mozilla/4.0 (compatible; MSIE 7.0; AOL 9.5; AOLBuild 4337.35; "
"Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)",
"Mozilla/5.0 (Windows; U; MSIE 9.0; Windows NT 9.0; en-US)",
"Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Win64; x64; "
"Trident/5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30729; "
".NET CLR 2.0.50727; Media Center PC 6.0)",
"Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 6.0; "
"Trident/4.0; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; "
".NET CLR 3.5.30729; .NET CLR 3.0.30729; "
".NET CLR 1.0.3705; .NET CLR 1.1.4322)",
"Mozilla/4.0 (compatible; MSIE 7.0b; "
"Windows NT 5.2; .NET CLR 1.1.4322; .NET CLR 2.0.50727; "
"InfoPath.2; .NET CLR 3.0.04506.30)",
"Mozilla/5.0 (Windows; U; Windows NT 5.1; zh-CN) "
"AppleWebKit/523.15 (KHTML, like Gecko, Safari/419.3) "
"Arora/0.3 (Change: 287 c9dfb30)",
"Mozilla/5.0 (X11; U; Linux; en-US) AppleWebKit/527+ "
"(KHTML, like Gecko, Safari/419.3) Arora/0.6",
"Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; "
"rv:1.8.1.2pre) Gecko/20070215 K-Ninja/2.1.1",
"Mozilla/5.0 (Windows; U; Windows NT 5.1; zh-CN; rv:1.9) "
"Gecko/20080705 Firefox/3.0 Kapiko/3.0",
"Mozilla/5.0 (X11; Linux i686; U;) "
"Gecko/20070322 Kazehakase/0.4.5",
"Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.0.8) "
"Gecko Fedora/1.9.0.8-1.fc10 Kazehakase/0.5.6",
"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.11 "
"(KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11",
"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_3) "
"AppleWebKit/535.20 (KHTML, like Gecko) Chrome/19.0.1036.7 Safari/535.20",
"Opera/9.80 (Macintosh; Intel Mac OS X 10.6.8; U; fr) "
"Presto/2.9.168 Version/11.52"
]
TIMEOUT = 5
class Action:
def __init__(self):
load_dotenv(find_dotenv(), override=True)
# ServerChan secret key
self.secret = os.environ.get('SECRET', '')
# qywx config info
self.corpid = os.environ.get('CORPID', '')
self.agentid = os.environ.get('AGENTID', '')
self.thumbmediaid = os.environ.get('THUMBMEDIAID', '')
self.corpsecret = os.environ.get('CORPSECRET', '')
self.contents = []
self.res = False
self.task_list = []
async def qywx(self):
""" 企业微信推送 """
dt = datetime.now()
date = dt.strftime('%Y-%m-%d')
time = dt.strftime('%H:%M:%S')
url = f'https://qyapi.weixin.qq.com/cgi-bin/gettoken?corpid={self.corpid}&corpsecret={self.corpsecret}'
try:
resp = await self.client.get(url)
access_token = resp.json()['access_token']
send_url = f'https://qyapi.weixin.qq.com/cgi-bin/message/send?access_token={access_token}'
try:
data = {
'touser': f'@all',
'agentid': self.agentid,
'msgtype': 'mpnews',
'mpnews': {
'articles': [{
'title': f'热搜榜 - {date}',
'thumb_media_id': self.thumbmediaid,
'author': 'notfound945',
'digest': f'{time} - 热搜消息',
'content': f'{"".join(self.contents)}'
}
]
}
}
res = await self.client.post(send_url, data=json.dumps(data), timeout=TIMEOUT)
print(res.json())
except Exception as e:
print(f'something error occurred, message: {e}')
except Exception as e:
print(f'something error occurred, message: {e}')
async def servechan(self):
""" Server酱推送 """
dt = datetime.now()
time = dt.strftime('%Y-%m-%d')
url = f'https://sc.ftqq.com/{self.secret}.send'
data = {
'text': f'资讯热文推送-{time}',
'desp': f'{"".join(self.contents)}'
}
headers = {'Content-Type': 'application/x-www-form-urlencoded'}
try:
resp = await self.client.post(url, headers=headers,
data=parse.urlencode(data), timeout=TIMEOUT)
self.res = resp.json()['errno'] == 0
print(resp.text)
except Exception as e:
print(f'something error occurred, message: {e}')
async def get_v2ex_hot_topics(self):
url = 'https://www.v2ex.com/api/topics/hot.json'
headers = {'User-Agent': random.choice(USER_AGENTS)}
try:
resp = await self.client.get(url, headers=headers, timeout=TIMEOUT)
self.contents.append(f'<h2> v2ex热门主题 </h2>')
for item in resp.json()[:10]:
detail_url = item['url']
title = item['title']
content = f'<ul><li> <a href={detail_url}>{title}</a> </li></ul>'
self.contents.append(content)
except Exception as e:
print(f'something error occurred, message: {e}')
async def get_zhihu_hot_topics(self):
url = "https://bicido.com/api/news/?type_id=4"
headers = {
'Referer': 'https://bicido.com/',
'Host': 'bicido.com',
'User-Agent': random.choice(USER_AGENTS)
}
try:
resp = await self.client.get(url, headers=headers, timeout=TIMEOUT)
self.contents.append(f'\n> 知乎热搜 \n\n')
for item in resp.json()[:10]:
detail_url = item['source_url']
title = item['title']
# content = f'- [{title}]({detail_url})\n'
content = f'<ul><li> <a href={detail_url}>{title}</a> </li></ul>'
self.contents.append(content)
except Exception as e:
print(f'something error occurred, message: {e}')
async def get_weibo_hot_search(self):
url = "https://bicido.com/api/news/?type_id=1"
headers = {
'Referer': 'https://bicido.com/',
'Host': 'bicido.com',
'User-Agent': random.choice(USER_AGENTS)
}
try:
resp = await self.client.get(url, headers=headers, timeout=TIMEOUT)
self.contents.append(f'\n> 微博热搜榜\n\n')
for item in resp.json()[:10]:
detail_url = item['source_url']
title = item['title']
content = f'<ul><li> <a href={detail_url}>{title}</a> </li></ul>'
# content = f'- [{title}]({detail_url})\n'
self.contents.append(content)
except Exception as e:
print(f'something error occurred, message: {e}')
async def get_weibo_hot_topics(self):
url = "https://bicido.com/api/news/?type_id=2"
headers = {
'Referer': 'https://bicido.com/',
'Host': 'bicido.com',
'User-Agent': random.choice(USER_AGENTS)
}
try:
resp = await self.client.get(url, headers=headers, timeout=TIMEOUT)
self.contents.append(f'\n> 微博话题榜\n\n')
for item in resp.json()[:10]:
detail_url = item['source_url']
title = item['title']
# content = f'- [{title}]({detail_url})\n'
content = f'<ul><li> <a href={detail_url}>{title}</a> </li></ul>'
self.contents.append(content)
except Exception as e:
print(f'something error occurred, message: {e}')
async def get_douban_hot_topics(self):
url = "https://bicido.com/api/news/?type_id=5"
headers = {
'Referer': 'https://bicido.com/',
'Host': 'bicido.com',
'User-Agent': random.choice(USER_AGENTS)
}
try:
resp = await self.client.get(url, headers=headers, timeout=TIMEOUT)
self.contents.append(f'\n> 豆瓣话题\n\n')
for item in resp.json()[:10]:
detail_url = item['source_url']
title = item['title']
# content = f'- [{title}]({detail_url})\n'
content = f'<ul><li> <a href={detail_url}>{title}</a> </li></ul>'
self.contents.append(content)
except Exception as e:
print(f'something error occurred, message: {e}')
async def get_github_trend(self):
url = "https://github-trending.vercel.app/repo"
headers = {'User-Agent': random.choice(USER_AGENTS)}
try:
resp = await self.client.get(url, headers=headers, timeout=TIMEOUT)
self.contents.append(f'\n> github热榜\n\n')
for item in resp.json()['items'][:10]:
detail_url = item['repo_link']
title = item['repo']
content = f'<ul><li> <a href={detail_url}>{title}</a> </li></ul>'
# content = f'- [{title}]({detail_url})\n'
self.contents.append(content)
except Exception as e:
print(f'something error occurred, message: {e}')
async def get_fish_trend(self):
url = "https://www.tophub.fun:8888/GetAllInfoGzip?id=1006"
headers = {
'Referer': 'https://mo.fish/',
'Origin': 'https://mo.fish',
'User-Agent': random.choice(USER_AGENTS)
}
try:
resp = await self.client.get(url, headers=headers, timeout=TIMEOUT)
self.contents.append(f'\n> 鱼塘热榜\n\n')
for item in resp.json()['Data']:
detail_url = item['Url']
title = item['Title']
type = item['type']
content = f'<ul><li> <a href={detail_url}>{title}</a> </li></ul>'
# content = f'- [{title}]({detail_url}) [{type}]\n'
self.contents.append(content)
except Exception as e:
print(f'something error occurred, message: {e}')
async def run(self):
"""主方法"""
async with httpx.AsyncClient() as client:
self.client = client
self.task_list.append(asyncio.create_task(self.get_weibo_hot_topics()))
self.task_list.append(asyncio.create_task(self.get_weibo_hot_search()))
self.task_list.append(asyncio.create_task(self.get_zhihu_hot_topics()))
self.task_list.append(asyncio.create_task(self.get_douban_hot_topics()))
self.task_list.append(asyncio.create_task(self.get_v2ex_hot_topics()))
self.task_list.append(asyncio.create_task(self.get_github_trend()))
self.task_list.append(asyncio.create_task(self.get_fish_trend()))
await asyncio.gather(*self.task_list)
# 自行修改对应的发送方式
# await self.servechan()
await self.qywx()
# print(f'{"".join(self.contents)}')
if __name__ == '__main__':
action = Action()
loop = asyncio.get_event_loop()
loop.run_until_complete(action.run())