-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtoutiao_all.py
233 lines (202 loc) · 8.83 KB
/
toutiao_all.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
import time
import re
import urllib.parse
import certifi
import datetime
from pymongo import MongoClient
from pymongo.server_api import ServerApi
from selenium import webdriver
from selenium.common import NoSuchElementException
from selenium.webdriver import ActionChains
from selenium.webdriver.common.by import By
from selenium.webdriver.common.keys import Keys
from selenium.webdriver.support import expected_conditions as EC
from selenium.webdriver.support.wait import WebDriverWait
from snownlp import SnowNLP
class touTiao:
def __init__(self):
self.browser = webdriver.Chrome()
self.password = urllib.parse.quote_plus('huaxin12345')
self.uri = f"mongodb+srv://stevenwyl:{self.password}@cluster0.ihlnkdr.mongodb.net/?retryWrites=true&w=majority"
self.client = MongoClient(self.uri, server_api=ServerApi('1'), tlsCAFile=certifi.where())
# self.client = pymongo.MongoClient(host='localhost', port=27017)
self.db = self.client.db_all
self.videos = self.db.videos
self.comments = self.db.comments
self.api_key = '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'
self.curr_time = datetime.datetime.now()
self.parse_time = datetime.datetime.strptime(
f"{self.curr_time.year}-{self.curr_time.month}-{self.curr_time.day}T00:00:00.000Z",
"%Y-%m-%dT%H:%M:%S.000Z")
def launchBrowser(self):
count = 0
log = []
self.browser.get(
'https://www.toutiao.com/article/7222603053587792421/?channel'
'=&source=search_tab')
time.sleep(5)
# append all the bloggers into the list with their homepage url
element = self.browser.find_elements(By.XPATH, "//strong/a")
for item in element:
# print(item.text)
# print(item.get_attribute("href"))
log.append([item.text, item.get_attribute("href")])
element2 = self.browser.find_elements(By.XPATH, "//li/a")
for item in element2:
if "粉" and "万" and "赞" in item.text:
# print(item.text)
# print(item.get_attribute("href"))
log.append([item.text, item.get_attribute("href")])
# filter the number out of all the bloggers
for people in log:
count += 1
number = re.findall(r'\d+\.\d+万|\d+万', people[0])
# number2 = re.findall(r'\d+万', people[0])
# selected = number1 if number1 else number2
likes = number[:2]
# calculate the weight
people.append(likes[0][:-1])
# print(people)
# print(f"获赞:{likes[0]} 粉丝: {likes[1]}")
# sort the list according to the weight
rank = sorted(log, key=lambda x: float(x[2]), reverse=True)
for item in rank:
print(item)
return rank
def homePage(self, link):
self.browser.get(link)
time.sleep(3)
total = 0
videoList = []
# scroll down to the end of the page
self.browser.refresh()
self.browser.implicitly_wait(2)
for i in range(2000):
ActionChains(self.browser).key_down(Keys.DOWN).perform()
time.sleep(3)
curr_time = self.browser.find_elements(By.CLASS_NAME,
"feed-card-footer-time-cmp")
prev_month = (datetime.datetime.now() - datetime.timedelta(days=31)).month
curr_month = datetime.datetime.now().month
for item in curr_time:
# filter the video uploaded today
# 修改日期
if len(item.text) == 6 and item.text[2] == "月" and item.text[-1] == "日":
grab_month, grab_day = int(item.text[:2]), int(item.text[-3:-1])
video_time = datetime.datetime.strptime(
f"{self.curr_time.year}-{grab_month}-{grab_day}T00:00:00.000Z",
"%Y-%m-%dT%H:%M:%S.000Z")
if grab_month == curr_month or grab_month == prev_month:
print(item.text)
try:
p = item.find_element(By.XPATH, "../../../../a")
videoList.append([p.get_attribute("href"), video_time])
total += 1
print(p.get_attribute("href"))
print(p.text)
except NoSuchElementException:
pass
try:
p = item.find_element(By.XPATH, "../../../a")
videoList.append([p.get_attribute("href"), video_time])
total += 1
print(p.get_attribute("href"))
print(p.text)
except NoSuchElementException:
pass
return total, videoList
def videoList(self, video, video_time):
all = []
browser = webdriver.Chrome()
browser.get(video)
# wait until page loads
WebDriverWait(browser, 3).until(
EC.presence_of_element_located((By.CLASS_NAME, "like-count"))
)
likes_count = browser.find_element(By.CLASS_NAME, "like-count").text
comments_count = browser.find_element(By.CLASS_NAME,
"comment-count").text
favours_count = browser.find_element(By.CLASS_NAME, "favour-count").text
# print(f"likes:{likes_count.text} comments:{comments_count.text} favourites:{favours_count.text}")
# find the titile of the video
title = browser.find_element(By.XPATH,
'//*[@id="root"]/div/div[2]/div[1]/div/div[2]/div[1]/div[1]/h1').text[
3:]
# insert the basic information in to the table
info = {
'title': title,
'likes_count': int(likes_count),
'comments_count': int(comments_count),
'favours_count': int(favours_count),
'date': video_time
}
self.videos.insert_one(info)
# click on the comment button to reach comment page
button = browser.find_element(By.CSS_SELECTOR,
".video-action-button.comment")
button.click()
# wait until comments loaded
WebDriverWait(browser, 30).until(
EC.presence_of_element_located(
(By.XPATH, f'/html/body/div[3]/div/div['
f'2]/div[1]/ul/li['
f'1]/div/div/div[1]/div['
f'2]/div/div/span')
)
)
time.sleep(2)
# click on the load more button
button = browser.find_element(By.CLASS_NAME, "load-more-btn")
button.click()
time.sleep(2)
# select all the comments
comments = browser.find_elements(By.CLASS_NAME, "comment-info")
for i in range(1, len(comments) + 1):
try:
up = browser.find_element(By.XPATH,
f'/html/body/div[3]/div/div[2]/div[1]/ul/li[{i}]/div/div/div[1]/div[2]/div/div/span').text
text = browser.find_element(By.XPATH,
f'/html/body/div[3]/div/div[2]/div[1]/ul/li[{i}]/div/div/div[2]/p').text
# filter out the case when comment is empty or no likes
if text != "" and up != "赞":
all.append([text, up])
# insert the data in db
curr = {
'title': title,
'comment': text,
'likes': int(up),
'date': video_time,
'rating': SnowNLP(text).sentiments * 100
}
self.comments.insert_one(curr)
print(f"likes: {up} \ncomment: {text}")
except NoSuchElementException:
pass
if __name__ == '__main__':
tt = touTiao()
rank = tt.launchBrowser()
videoCount = 0
# tt.homePage(rank[0][1])
for people in rank:
# if people[0] == "来自股市的猩猩1403.7万获赞69.3万粉丝":
print("\n⬇️" + people[0] + "⬇️\n")
currCount, video = tt.homePage(people[1])
videoCount += currCount
# perform video list operation
# utilize multiple threading
# thread_list = []
# for curr in video:
# if "video" in curr:
# appium_server = threading.Thread(target=tt.videoList,
# args=(curr,))
# thread_list.append(appium_server)
# for j in thread_list:
# j.start()
for curr in video:
if "video" in curr[0]:
try:
tt.videoList(curr[0], curr[1])
except:
pass
time.sleep(5)
print(f"\nThe total number of video updated today is {videoCount}")