-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcrawler.py
73 lines (57 loc) · 1.79 KB
/
crawler.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
import requests
import csv
import sys
from bs4 import BeautifulSoup
fileName = sys.argv[1:] or 'Template/VoiceTube.html'
soup = BeautifulSoup(open(fileName), 'lxml')
word_list = []
def getVocabulary(ele):
result = []
for ele2 in ele.select('td:nth-child(2) a'):
result.append(ele2.string)
result.append('')
result.append('')
result.append('')
return result
def getExplanation(ele):
result = []
for ele2 in ele.select('td:nth-child(5) b'):
result.append(ele2.string)
return result
def getExampleAndTranslation(id):
result = []
for ele2 in soup.find_all('small', word_id=id):
isHighLight = ele2.select('.highlight')
isStarIcon = ele2.select('.icon-star')
if len(isStarIcon) > 0 or len(isHighLight) > 0:
result.extend(hasStarIconOrHighLight(ele2))
else:
result.extend(defaultCase(ele2))
return result
def hasStarIconOrHighLight(ele2):
result = []
sentance = []
expAndtranslationLen = len(list(enumerate(ele2.strings)))
for idx, ele3 in enumerate(ele2.strings):
if idx <= expAndtranslationLen - 2:
sentance.append(str(ele3))
else:
result.append("".join(sentance))
result.append(str(ele3))
return result
def defaultCase(ele2):
result = []
for ele3 in ele2.strings:
result.append(str(ele3))
return result
for ele in soup.select('.show_control'):
id = ele.get('word_id')
word = []
word.extend(getVocabulary(ele))
word.extend(getExplanation(ele))
word.extend(getExampleAndTranslation(id))
word_list.append(word)
with open('output/output.csv', 'w', newline='') as csvfile:
# 建立 CSV 檔寫入器
writer = csv.writer(csvfile, delimiter=';')
writer.writerows(word_list)