forked from airingursb/bilibili-user
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbilibili_user.py
144 lines (130 loc) · 5.16 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
# -*-coding:utf8-*-
import requests
import json
import random
import pymysql
from multiprocessing.dummy import Pool as ThreadPool
import sys
import datetime
import time
from imp import reload
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):
"""
uafile : string
path to text file of user agents, one per line
"""
uas = []
with open(uafile, 'rb') as uaf:
for ua in uaf.readlines():
if ua:
uas.append(ua.strip()[1:-1 - 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',
}
proxies = {
'http': 'http://140.240.81.16:8888',
'http': 'http://185.107.80.44:3128',
'http': 'http://203.198.193.3:808',
'http': 'http://125.88.74.122:85',
'http': 'http://125.88.74.122:84',
'http': 'http://125.88.74.122:82',
'http': 'http://125.88.74.122:83',
'http': 'http://125.88.74.122:81',
'http': 'http://123.57.184.70:8081'
}
time1 = time.time()
for m in range(1691, 2000): # 26 ,1000
urls = []
for i in range(m * 100, (m + 1) * 100):
url = 'http://space.bilibili.com/ajax/member/GetInfo?mid=' + str(i)
urls.append(url)
def getsource(url):
payload = {
'_': datetime_to_timestamp_in_milliseconds(datetime.datetime.now()),
'mid': url.replace('http://space.bilibili.com/ajax/member/GetInfo?mid=', '')
}
ua = random.choice(uas)
head = {'User-Agent': ua,
'Referer': 'http://space.bilibili.com/' + str(random.randint(9000, 10000)) + '/'
}
jscontent = requests.session().post('http://space.bilibili.com/ajax/member/GetInfo',
headers=head, data=payload, proxies=proxies).text
time2 = time.time()
try:
jsDict = json.loads(jscontent)
print(jsDict)
statusJson = jsDict['status'] if 'status' in jsDict.keys(
) else False
if statusJson == True:
if 'data' in jsDict.keys():
jsData = jsDict['data']
mid = jsData['mid']
name = jsData['name']
sex = jsData['sex']
face = jsData['face']
coins = jsData['coins']
spacesta = jsData['spacesta']
birthday = jsData['birthday'] if 'birthday' in jsData.keys(
) else 'nobirthday'
place = jsData['place'] if 'place' in jsData.keys(
) else 'noplace'
description = jsData['description']
article = jsData['article']
playnum = jsData['playNum']
sign = jsData['sign']
level = jsData['level_info']['current_level']
exp = jsData['level_info']['current_exp']
print("Succeed: " + mid + "\t" + str(time2 - time1))
try:
res = requests.get(
'http://api.bilibili.com/x/relation/stat?vmid=' + str(mid) + '&jsonp=jsonp').text
js_fans_data = json.loads(res)
following = js_fans_data['data']['following']
fans = js_fans_data['data']['follower']
except:
following = 0
fans = 0
else:
print('no data now')
try:
conn = pymysql.connect(
host='localhost', user='root', passwd='213155', charset='utf8')
cur = conn.cursor()
# cur.execute('create database if not exists python')
conn.select_db('bilibili')
cur.execute('INSERT INTO bilibili_user_info VALUES (%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s)',
[mid, mid, name, sex, face, coins, spacesta, birthday, place, description,
article, following, fans, playnum, sign, level, exp])
except Exception:
print("Mysql Error")
else:
print("Error: " + url)
except ValueError:
print('decoding json has failed')
pool = ThreadPool(1)
try:
results = pool.map(getsource, urls)
except Exception:
print('ConnectionError')
pool.close()
pool.join()
time.sleep(10)
pool = ThreadPool(1)
results = pool.map(getsource, urls)
time.sleep(5)
pool.close()
pool.join()