-
Notifications
You must be signed in to change notification settings - Fork 966
/
bilibili_user.py
153 lines (134 loc) · 5.51 KB
/
bilibili_user.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
# -*-coding:utf8-*-
import requests
import json
import random
import pymysql
import sys
import datetime
import time
from imp import reload
from multiprocessing.dummy import Pool as ThreadPool
def datetime_to_timestamp_in_milliseconds(d):
def current_milli_time(): return int(round(time.time() * 1000))
return current_milli_time()
reload(sys)
def LoadUserAgents(uafile):
uas = []
with open(uafile, 'rb') as uaf:
for ua in uaf.readlines():
if ua:
uas.append(ua.strip()[:-1])
random.shuffle(uas)
return uas
uas = LoadUserAgents("user_agents.txt")
head = {
'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36',
'X-Requested-With': 'XMLHttpRequest',
'Referer': 'http://space.bilibili.com/45388',
'Origin': 'http://space.bilibili.com',
'Host': 'space.bilibili.com',
'AlexaToolbar-ALX_NS_PH': 'AlexaToolbar/alx-4.0',
'Accept-Language': 'zh-CN,zh;q=0.8,en;q=0.6,ja;q=0.4',
'Accept': 'application/json, text/javascript, */*; q=0.01',
}
# Please replace your own proxies.
proxies = {
'http': 'http://120.26.110.59:8080',
'http': 'http://120.52.32.46:80',
'http': 'http://218.85.133.62:80',
}
time1 = time.time()
urls = []
# Please change the range data by yourself.
for m in range(5214, 5215):
for i in range(m * 100, (m + 1) * 100):
url = 'https://space.bilibili.com/' + str(i)
urls.append(url)
def getsource(url):
payload = {
'_': datetime_to_timestamp_in_milliseconds(datetime.datetime.now()),
'mid': url.replace('https://space.bilibili.com/', '')
}
ua = random.choice(uas)
head = {
'User-Agent': ua,
'Referer': 'https://space.bilibili.com/' + str(i) + '?from=search&seid=' + str(random.randint(10000, 50000))
}
mid = payload['mid']
#使用post会报错 (2021/5/2)
jscontent = requests \
.session() \
.get('https://api.bilibili.com/x/space/acc/info?mid=%s&jsonp=jsonp' % mid,
headers=head,
data=payload
) \
.text
time2 = time.time()
try:
jsDict = json.loads(jscontent)
status_code = jsDict['code'] if 'code' in jsDict.keys() else False
if status_code == 0:
if 'data' in jsDict.keys():
jsData = jsDict['data']
mid = jsData['mid']
name = jsData['name']
sex = jsData['sex']
rank = jsData['rank']
face = jsData['face']
regtimestamp = jsData['jointime']
regtime_local = time.localtime(regtimestamp)
regtime = time.strftime("%Y-%m-%d %H:%M:%S", regtime_local)
birthday = jsData['birthday'] if 'birthday' in jsData.keys() else 'nobirthday'
sign = jsData['sign']
level = jsData['level']
OfficialVerifyType = jsData['official']['type']
OfficialVerifyDesc = jsData['official']['desc']
vipType = jsData['vip']['type']
vipStatus = jsData['vip']['status']
coins = jsData['coins']
print("Succeed get user info: " + str(mid) + "\t" + str(time2 - time1))
try:
res = requests.get(
'https://api.bilibili.com/x/relation/stat?vmid=' + str(mid) + '&jsonp=jsonp').text
viewinfo = requests.get(
'https://api.bilibili.com/x/space/upstat?mid=' + str(mid) + '&jsonp=jsonp').text
js_fans_data = json.loads(res)
js_viewdata = json.loads(viewinfo)
following = js_fans_data['data']['following']
fans = js_fans_data['data']['follower']
except:
following = 0
fans = 0
else:
print('no data now')
try:
print(jsDict)
# Please write your MySQL's information.
conn = pymysql.connect(
host='localhost', user='root', passwd='123456', db='bilibili', charset='utf8')
cur = conn.cursor()
cur.execute('INSERT INTO bilibili_user_info(mid, name, sex, rank, face, regtime, \
birthday, sign, level, OfficialVerifyType, OfficialVerifyDesc, vipType, vipStatus, \
coins, following, fans) \
VALUES ("%s","%s","%s","%s","%s","%s","%s","%s",\
"%s","%s","%s","%s","%s", "%s","%s","%s")'
%
(mid, name, sex, rank, face, regtime, \
birthday, sign, level, OfficialVerifyType, OfficialVerifyDesc, vipType, vipStatus, \
coins, following, fans))
conn.commit()
except Exception as e:
print(e)
else:
print("Error: " + url)
except Exception as e:
print(e)
pass
if __name__ == "__main__":
pool = ThreadPool(1)
try:
results = pool.map(getsource, urls)
except Exception as e:
print(e)
pool.close()
pool.join()