This repository has been archived by the owner on Jan 21, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdataSpy.py
287 lines (265 loc) · 13.8 KB
/
dataSpy.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
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
# -*- coding: UTF-8 -*-
#引入模块
from bilibili_api import sync, search, settings, video
from collections import OrderedDict
import json
import random
import time
import betterVideoDataResult
#settings.proxy = "http://ProxyAddress.cat" # 填写代理地址
#settings.proxy = "http://account:password@ProxyAddress.cat" # 如果需要账号以及密码
def wait(sec=2.33): # “等等陈睿”函数 这里填等待秒或在调用函数时填写 太快会被 -412 拦截
"""
等等陈睿
太快会被陈睿 Gank,特此写函数。
"""
time.sleep(sec)
def videoSearch(kw, pg, printOrNot=True): # 视频搜索函数
"""
搜索函数 kw=关键词(str) pg=页面(int)
"""
if printOrNot:
print("搜索视频,关键词“", kw, "”,第", pg, "页。")
#↓ 调用 API 搜索(由 bilibili-api-python 库提供)赋给结果变量 并返回
try:
result = sync(search.search(keyword=kw, page=pg))
except:
print("连接错误")
return result
def dataSpy(kw, pg, moreInfomation=False): # 数据捉虫函数
"""
数据捉虫
此函数用来调取哔哩哔哩搜索 API 的返回 Json。
此函数具有时效性,至2022年7月30日仍然可用。
"""
info = videoSearch(kw, pg) # 获取搜索原始信息
for a in info['result']: # 过滤视频搜索结果
if a["result_type"] == "video":
videoResult = a["data"]
################ 获取一创作者列表
authorBlackList = [] # 初始化一创作者列表
with open('authorBlackList.txt', 'r', encoding='UTF-8') as f:
elements = f.read().split('\n')[:-1]
for element in elements:
authorBlackList.append(element)
f.close()
################ 获取一创作者列表
#print(authorBlackList)
#authorBlackList = ["EOE组合", "露早GOGO", "米诺高分少女", "莞儿睡不醒", "柚恩不加糖", "虞莫MOMO", "哎呀米诺录播组", "E坨史", "EOE五人团应援会", "壹ちゃン", "墨烧_莞熊电台记者", "露早老公", "烂活机器人", "长崎濑野kira", "我不该拥有炽热的梦", "北安不是北门安保"]
for i in videoResult: # 处理搜索结果 计算权重
__weight_random = random.randint(-100, 200) # 初始化 随机权重
__weight_like = 0 # 初始化 点顶
__weight_coin = 0 # 初始化 投币
__weight_collect = 0 # 初始化 收藏
__weight_danmaku = 0 # 初始化 弹幕
__weight_author = 0 # 初始化 作者
__weight_sendTime = 0 # 初始化 时效
__weight_click = 0 # 初始化 点阅
__weight_cooperation = 0 # 初始化 联合
__weight_vertical = 0 # 初始化 竖屏
__weight_tag = 0 # 初始化 類型標簽
__filter = False # 初始化 过滤
__weight = 0 # 初始化 权重值
__authorExclude = False # 初始化 排除
__debug = "" # 初始化 测试变量
__goodTag = ["鬼畜", "人力VOCALOID", "音MAD", "MMD·3D",
"MMD", "MMD.3D", "手书"] # 初始化列表 大力推荐的标签
for b in i: # 遍历 字典
if b == "title": # 消除 <em> 关键词标记
i[b] = i[b].replace('<em class="keyword">',
"").replace('</em>', "")
#print("标题:", i[b])
__debug = __debug+"标题:"+str(i[b])+"。"
if b == "pic": # 加載縮略圖照片
i[b] = i[b]+"@544w_340h_1c"
if b == "author": # 判定 作者
for BlackAuthor in authorBlackList:
for z in range(1, 50):
if i[b].find(BlackAuthor) != -1:
#print("排除", i[b])
#print("已排除并 __authorExclude 设置为真:", i[b])
__weight_author = -9765
__authorExclude = True
__debug = __debug+"作者已排除。"
else:
pass
if b == "like": # 权重 计算点顶
__like = i[b]
if i[b] <= 900:
__weight_like = i[b] * 0.4 * 1.21
__debug = __debug+"低顶率。"
else:
__weight_like = i[b] * 0.1 * 0.18
__debug = __debug+"高顶率。"
if b == "favorites": # 权重 计算收藏
__weight_collect = i[b] * 0.3
__debug = __debug+"收藏:"+str(i[b])+"。"
if b == "pubdate": # 权重 计算时效
__sendTimeCalc = int(int(time.time()) - int(i[b]))/(60*60*24)
__debug = __debug+"时效:"+str(i[b])+"。"
if __sendTimeCalc >= 5: # 老的视频 5*24*60*60秒后(五天后)
__weight_sendTime = -38750
__debug = __debug+"老视频。"
#print("too old")
if __sendTimeCalc <= 3: # 新的视频
#print("New video")
__weight_sendTime = 487
__debug = __debug+"更新的视频。"
if b == "play": # 权重 计算点阅
if i[b] <= 5000:
__weight_click = (12 + (i[b] * 0.5)) * 0.5
__debug = __debug+"观看很少。"
elif i[b] <= 30000:
__weight_click = (9 + (i[b] * 0.37)) * 1.2
__debug = __debug+"观看三万内。"
else:
__weight_click = (1 + (i[b] * 0.27)) * 0.01
__debug = __debug+"观看过多。"
if b == "video_review": # 权重 计算弹幕
if i[b] <= 100:
__weight_danmaku = i[b] * 0.7
__debug = __debug+"弹幕:"+str(i[b])+"。"
if b == "hit_columns":
if i[b] == ["author"]:
__filter = True
if b == "tag":
tag = i[b].split(',')
for tagElement in tag:
if list(map(lambda x: x.lower(), tagElement)) in list(map(lambda x: x.lower(), __goodTag)):
__weight_tag = 10000
if b == "typename":
if i[b].lower() in list(map(lambda x: x.lower(), __goodTag)):
__weight_tag = 10000
if moreInfomation:
if b == "aid":
videoInfo = sync(video.Video(aid=i[b]).get_info())
if videoInfo["copyright"] == 2:
__authorExclude = True
原 = videoInfo['stat']
for 批 in 原:
if 批 == 'like':
__like = 原[批]
for 批 in 原:
if 批 == 'coin':
if __like <= 原[批]:
__weight_coin = 原[批] * 0.5 + __like
elif i[b] <= 158:
__weight_coin = 原[批]
else:
__weight_coin = 原[批] * 0.3
农 = videoInfo['rights']
for 批 in 农:
if 批 == 'is_cooperation':
__weight_cooperation = 200 + (__weight_coin / 2)
A = videoInfo['dimension']
for 除 in A:
if 除 == 'width':
__videoWidth = A[除]
if 除 == 'height':
__videoHeight = A[除]
if __videoWidth < __videoHeight:
__weight_vertical = -1000
#↓↓↓↓ 计算权重
__weight = int(__weight_random + __weight_click + __weight_sendTime + __weight_author + __weight_danmaku +
__weight_collect + __weight_coin + __weight_like + __weight_vertical + __weight_cooperation + __weight_tag)
#print("权重值:", __weight)
# 在视频结果列表中插入权重
__debug = ""
i.update({"__weight": __weight, "__filter": __filter,
"__authorExclude": __authorExclude, "debug": __debug})
#print("随机排序:", int(__weight_random), ",点阅:", int(__weight_click), ",发送:", int(__weight_sendTime), ",一创:", int(__weight_author), ",弹幕:", int(__weight_danmaku), ",收藏:", int(__weight_collect), ",投币:", int(__weight_coin), ",顶:", int(__weight_like), ",横屏?:", int(__weight_vertical), "分区:", int(__weight_tag))
i = videoResult # 将缓存中的列表赋给结果 并返回
return videoResult
def MutiPageResult(keyword, moreInfomation=False): # 多页结果整合函数
"""
多页结果整合函数 需要输入关键词(str)
"""
result = [] # 初始化搜索结果列表
page = videoSearch(keyword, 1, False)["numPages"] # 获取页数
maxPage = 50 # 设置最大获取页数,设置更小的值可更快的爬完搜索结果,但是会导致结果不全。
#哔哩哔哩最多的结果页数是 50 页,所以请不要大于这个值。不要设置为 0。
maxPage = maxPage+1
# 若页数大于 maxPage 页,最大获取 maxPage 页。可在上面设置。
page = maxPage if page >= maxPage else page
for i in range(1, page): # 遍历搜索的所有页数
result = result + dataSpy(keyword, i, moreInfomation)
wait()
#print(result)
return result
def makeJson(nameList=["EOE", "露早", "米诺", "莞儿", "柚恩", "虞莫"], moreInfomation=False): # 制作词典列表函数
"""
制作词典列表函数
"""
result = [] # 初始化 结果列表
#nameList = ["EOE", "露早", "米诺", "莞儿", "柚恩", "虞莫"] #初始化 搜索关键词列表
for i in nameList: # 遍历 搜索关键词列表
result = result + MutiPageResult(i, moreInfomation)
Order = OrderedDict() # 初始化 -> 词典排序函数
for item in result: # 去重 搜索关键词列表
Order.setdefault(item['bvid'], {**item, }) # 设定 为 bvid 去重
Order = list(Order.values()) # 赋值 去重后列表
result = Order # 赋值 给结果变量
result.sort(key=lambda x: x["__weight"]) # 按权重值排序 从小到大
result.reverse() # 反向排序
#del result[-20: -1] #删除权重值倒数的几个视频
################ 获取无关结果关键词列表
BlockWord = [] # 初始化无关结果关键词列表
with open('BlockWord.txt', 'r', encoding='UTF-8') as f:
elements = f.read().split('\n')[:-1]
for element in elements:
BlockWord.append(element)
f.close()
################ 获取无关结果关键词列表
#BlockWord = ["多米诺", "凇子M", "黑猫与白喵", "米诺地尔", "明日方舟早露", "明日方舟", "舒舒酷北北", "贤宝宝Baby", "多米诺骨牌", "微物米诺", "天天打龟", "六弦阁徒_HTT", "街头社区", "艾森巴赫", "撒旦女巫的诱惑", "锤子game", "三千亿光年", "不知所措的周余", "十一点睡粥老师", "少喝运动多奶茶", "tsuiruaku", "战舰世界", "元首的渣渣", "菲尔米诺Bobby", "青衣之冇", "账号注销9999000", "非那米诺", "梦中の游乐园", "坦克世界", "林以恒的小星星", "ZeeNuNew", "无期迷途", "早露", "Alex43801"]
#↑↑↑↑无关结果关键词 用于排除
#print("列表长度:",len(result))
for times in range(0, 10): # 反复循环过滤 50 遍无关视频 不知道为什么但是确实很有效果
#print("\n列表长度:", len(result))
for bL in BlockWord: # 遍历无关视频关键词列表
#print("排除",bL)
for i in result: # 对 标题、作者、简介、标签 检查关键词
if i['title'].find(bL) != -1:
try:
result.remove(i)
except ValueError:
pass
if i['author'].find(bL) != -1:
try:
result.remove(i)
except ValueError:
pass
if i['description'].find(bL) != -1:
try:
result.remove(i)
except ValueError:
pass
if i['tag'].find(bL) != -1:
try:
result.remove(i)
except ValueError:
pass
if i['__filter']:
try:
result.remove(i)
except ValueError:
pass
print("\n\n列表长度:", len(result))
return result
#此处参考 @Risk2 感谢:https://www.zhihu.com/question/67111152/answer/249259611
#数据写入
################ 获取关键词列表
KeyWords = [] # 初始化关键词列表
with open('keyWords.txt', 'r', encoding='UTF-8') as f:
elements = f.read().split('\n')[:-1]
for element in elements:
KeyWords.append(element)
f.close()
################ 获取关键词列表
result = makeJson(KeyWords, True)
result = betterVideoDataResult.cleanShitKey(videoResult=result)
#这里第一个参数填写关键词(字符串列表),第二个参数填写是否需要更精确的数据(布尔值),当然也会更慢。
resultJson = open('result.json', 'w', encoding="utf-8")
for i in result:
json_i = json.dumps(i)
resultJson.write(json_i+'\n')
resultJson.close()