-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfantano_scraper.py
505 lines (323 loc) · 10 KB
/
fantano_scraper.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
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
# coding: utf-8
# In[1]:
from bs4 import BeautifulSoup
import requests
from selenium import webdriver
import pandas as pd
import time
from datetime import datetime
import nltk
import selenium
# In[2]:
HOME = "https://www.youtube.com/user/theneedledrop/videos"
# In[3]:
def get_score(url):
"""
get_score obtains the score and date of an Anthony Fantano review
url - Str
returns int
"""
result = requests.get(url)
c = result.content
soup = BeautifulSoup(c)
date = soup.find("strong", {"class": "watch-time-text"}).text
date = datetime.strptime(date, 'Published on %b %d, %Y')
child = str(soup.find("div", {"id": "watch-description-text"}))
#tknizer = nltk.tokenize.ToktokTokenizer()
#tokenized = tknizer.tokenize(child)
tokenized = nltk.tokenize.casual_tokenize(child)
str_score = ''
for i, token in enumerate(tokenized):
if "/10" == token:
str_score = tokenized[i-1]
ind = i
break
elif ("10" == token and '/' == tokenized[i-1]):
str_score = tokenized[i-2]
break
elif ("10" == token and '/' in tokenized[i-1]):
str_score = tokenized[i-1].split("/")[0]
break
elif "/10" in str(token) and len(token) < 10:
str_score = tokenized[i].split("/")[0]
ind = i
break
if str_score == '':
score = None
else:
if str_score.isdigit():
score = int(str_score)
else:
score = str_score
appending_fave = False
appending_lfave = False
fave_tracks = []
lfave_track = []
for i, token in enumerate(tokenized):
if appending_fave:
if token == '<br/>' or token == '<p/>':
appending_fave = False
else:
fave_tracks.append(token)
if appending_lfave:
if token == '<br/>' or token == '<p/>':
appending_lfave = False
break
else:
lfave_track.append(token)
if tokenized[i-1] == "TRACKS" and token == ":":
appending_fave = True
if tokenized[i-1] == "TRACK":
appending_lfave = True
if fave_tracks != []:
fave_tracks = ' '.join(fave_tracks)
fave_tracks = fave_tracks.split(", ")
else:
fave_tracks = []
if lfave_track != []:
lfave_track = ' '.join(lfave_track)
else:
lfave_track = ''
return score, date, fave_tracks, lfave_track
# In[4]:
def scroll():
"""
scrolls to the bottom of the page
code taken from https://stackoverflow.com/questions/20986631/how-can-i-scroll-a-web-page-using-selenium-webdriver-in-python
modified slightly for YouTube
"""
SCROLL_PAUSE_TIME = 0.5
last_height = driver.execute_script("return window.scrollY")
tries = 0
while True:
down_height = last_height + 1000
driver.execute_script("window.scrollTo(0," + str(down_height) + ")")
time.sleep(SCROLL_PAUSE_TIME)
new_height = driver.execute_script("return window.scrollY")
if new_height == last_height:
tries += 1
if tries == 10:
break
else:
tries = 0
last_height = new_height
# In[7]:
def scroll_update(latest_review_url):
"""
scrolls to the point where the dataset was last updated
code taken from https://stackoverflow.com/questions/20986631/how-can-i-scroll-a-web-page-using-selenium-webdriver-in-python
modified slightly for YouTube
"""
SCROLL_PAUSE_TIME = 0.5
last_height = driver.execute_script("return window.scrollY")
tries = 0
while True:
down_height = last_height + 1000
driver.execute_script("window.scrollTo(0," + str(down_height) + ")")
time.sleep(SCROLL_PAUSE_TIME)
new_height = driver.execute_script("return window.scrollY")
if new_height == last_height:
tries += 1
if tries == 10:
break
elif latest_review_url in driver.page_source:
break
else:
tries = 0
last_height = new_height
# In[99]:
def get_title_artist(title_element):
"""
get_title_artist takes a title element and extracts the artist of the album an
the title of the album
"""
title_token = title_element.text.split(" ")
word = title_token.pop(0)
artist = ''
title = ''
first = True
while(title_token != [] and word != '-' and word[-1] != '-'):
if first:
first = False
artist += (word)
else:
artist += ' '
artist += word
word = title_token.pop(0)
if word[-1] == '-':
word = word[:-1]
artist += word
if title_token == []:
print("ERROR HERE: ", title_element.text)
return None, None
word = title_token.pop(0)
first = True
while(True):
if first:
first = False
title += word
else:
title += ' '
title += word
if title_token != []:
word = title_token.pop(0)
if word == "ALBUM" or (word == "EP" and title_token[0] == "REVIEW"):
break
else:
break
return title, artist
# In[62]:
def get_captions(link, driver):
""" Gets the youtube auto-generated captions to a link
"""
caption_link = 'http://www.diycaptions.com/php/start.php?id='
key = link.split("=")[1]
driver.get(caption_link + key)
caption = ''
i = 0
time.sleep(4)
while(True):
i += 1
try:
text = driver.find_element_by_id(str(i)).text
except selenium.common.exceptions.NoSuchElementException:
return caption
caption += text + ' '
all_captions.append({'url': link, 'caption': caption})
# ## fantano_reviews scrapers
# In[ ]:
#run to scrape fantano_reviews.csv from beginning
driver = webdriver.Chrome()
driver.get(HOME)
scroll()
element_titles = driver.find_elements_by_id("video-title")
#regular scraper
list_of_rows = []
i = 0
for e in element_titles:
title = e.text
if "ALBUM REVIEW" in title:
review_type = "Album"
elif "EP REVIEW" in title:
review_type = "EP"
else:
continue
i += 1
link = e.get_attribute("href")
score, review_date, best_tracks, worst_track = get_score(link)
if isinstance(score, str):
word_score = score
score = None
else:
word_score = None
title, artist = get_title_artist(e)
if title == None:
continue
row_dict = {"title": title, "artist": artist,
"score": score, "word_score": word_score,
"link": str(link), "review_type": review_type,
"review_date": review_date, "best_tracks": best_tracks,
"worst_track": worst_track}
if i % 10 == 0:
print("\n\n", str(i), "th Review\n")
print("row: ", row_dict)
list_of_rows.append(row_dict)
df = pd.DataFrame(list_of_rows)
cols = ['title', 'artist', 'review_date', 'review_type', 'score', 'word_score', 'best_tracks', 'worst_track', 'link']
df = df[cols]
df.to_csv("fantano_reviews.csv")
# In[ ]:
#run to scrape fantano_reviews.csv from last_updated
pd.read_csv("fantano_reviews.csv")
driver = webdriver.Chrome()
driver.get(HOME)
scroll_update()
element_titles = driver.find_elements_by_id("video-title")
#regular scraper
list_of_rows = []
i = 0
for e in element_titles:
title = e.text
if "ALBUM REVIEW" in title:
review_type = "Album"
elif "EP REVIEW" in title:
review_type = "EP"
else:
continue
i += 1
link = e.get_attribute("href")
score, review_date, best_tracks, worst_track = get_score(link)
if isinstance(score, str):
word_score = score
score = None
else:
word_score = None
title, artist = get_title_artist(e)
if title == None:
continue
row_dict = {"title": title, "artist": artist,
"score": score, "word_score": word_score,
"link": str(link), "review_type": review_type,
"review_date": review_date, "best_tracks": best_tracks,
"worst_track": worst_track}
if i % 10 == 0:
print("\n\n", str(i), "th Review\n")
print("row: ", row_dict)
list_of_rows.append(row_dict)
df = pd.DataFrame(list_of_rows)
cols = ['title', 'artist', 'review_date', 'review_type', 'score', 'word_score', 'best_tracks', 'worst_track', 'link']
df = df[cols]
df.to_csv("anthony_fantano.csv")
# ## captions.csv scraper
# In[65]:
# run to scrape
all_captions = []
for i, link in enumerate(links):
caption = get_captions(link, driver)
all_captions.append({'url': link, 'caption': caption})
if i % 100 == 0:
print(i)
caption_df = pd.DataFrame(all_captions)
caption_df.to_csv('captions.csv')
# In[32]:
df = pd.read_csv("anthony_fantano.csv", encoding='latin-1')
# In[33]:
df = df.iloc[:, 1:]
# In[54]:
links = df['link'].tolist()
# In[39]:
links
# In[47]:
pd.DataFrame(all_captions)
# In[59]:
driver1 = webdriver.Chrome()
driver2 = webdriver.Chrome()
driver3 = webdriver.Chrome()
# In[66]:
len(links)
# In[67]:
caption_df
# In[4]:
captions_df = pd.read_csv('captions.csv', encoding='latin-1')
# In[8]:
captions_df.iloc[105,1]
# In[ ]:
all_captions = []
while(links != []):
# In[298]:
from matplotlib import pyplot as plt
# In[302]:
plt.plot(df.review_date,df.score)
plt.show()
# In[303]:
df[df['score'] > 10]
# In[258]:
soup = BeautifulSoup(requests.get('https://www.youtube.com/watch?v=tLWPSqE0DC4').content)
# In[264]:
soup.prettify
# In[266]:
soup.find("strong", {"class": "watch-time-text"}).text
# In[94]:
r = requests.get("http://video.google.com/timedtext?lang=en&v=toQEov2nWas")
# In[95]:
r.content