-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparse.py
298 lines (200 loc) · 8.46 KB
/
parse.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
# [Project YNS] Yonsei Univ. Notification Service, Project KNSF based.
# 0.1.2va, 20.02.02. First launched.
# written by acoustikue(SukJoon Oh), Yonsei University EE
# __ _ __
# ____ __________ __ _______/ /_(_) /____ _____
# / __ `/ ___/ __ \/ / / / ___/ __/ / //_/ / / / _ \
# / /_/ / /__/ /_/ / /_/ (__ ) /_/ / ,< / /_/ / __/
# \__,_/\___/\____/\__,_/____/\__/_/_/|_|\__,_/\___/
#
# Ubuntu 18.04 LTS, Goorm IDE(https://ide.goorm.io/)
#
# This project requires pyfcm library,
# thus first install it by
# $ pip3 install pyfcm
# In initial version, many of original KENS/KNS functions are refactored,
# since YNS can be distinguished by only methods of sending notifications to devices.
# YNS used FCM for push service, and used Flask as a server for getting devices' tokens.
# In this source there is no relation with the Flask server.
# Database added, for device token control and saving previous notices.
#
#
import requests
from bs4 import BeautifulSoup # parser
# from collections import OrderedDict
import config as cf
# Explanation:
# html request process is already contained in parser.
# What the parser need is just url.
def getText(url):
req = requests.get(url)
print('{color}{url} status[{status}]'.format(color=cf.bcolors.OKGREEN, url=url, status=str(req.status_code))) # debug
return req.text
#
# A dict.
def makeGroup(site, title, sign, url):
dict_ = {}
dict_['site'] = site
dict_['title'] = title
dict_['sign'] = sign
dict_['url'] = url
return dict_
#
# Author: acoustikue
def parseTextMain(text):
# YNS_SITE_MAIN
soup = BeautifulSoup(text, 'html.parser') # filter
soup = BeautifulSoup(str(soup.find('div', class_='article')), 'html.parser')
# Each notice information
title = []
sign = []
url = []
# title
for title_list in soup.find_all('strong'): # title
title.append(" ".join(title_list.text.split()))
for sign_list in soup.find_all('span', class_='title'):
sign.append(" ".join(sign_list.text.split()))
# information, like 신촌/국제 학부대학 2020.02.04
for link_list in soup.findAll("a"):
if 'href' in link_list.attrs:
link_t = link_list.attrs['href'] # temporary
# filter
if (link_t != 'javascript:;') and (link_t[:22] != '/sc/support/notice.jsp'):
# print(link_list.attrs['href'])
url.append(link_t)
del link_t
# return
list_ = []
for i in range(len(title)):
list_.append(makeGroup(cf.YNS_SITE_MAIN, title[i], sign[i], url[i]))
return list_
def parseTextEE(text):
# YNS_SITE_EE
soup = BeautifulSoup(text, 'html.parser') # filter
soup = BeautifulSoup(str(soup.find('table', class_='board-table')), 'html.parser')
# Each notice information
title = []
sign = [] # author is always fixed to '전기전자공학부', thus date is only needed.
url = []
for title_list in soup.find_all('a', class_='c-board-title'): # title
title.append(" ".join(title_list.text.split()))
for sign_list in soup.find_all('div', class_='c-board-info-m'): # title
sign.append(" ".join(sign_list.text.split()).replace('전기전자공학부', '전기전자공학부 ')) # remove EE
# sign.append(" ".join(sign_list.text.split()))
for link_list in soup.findAll("a"):
if 'href' in link_list.attrs:
url.append(link_list.attrs['href'])
# return
list_ = []
for i in range(len(title)):
list_.append(makeGroup(cf.YNS_SITE_EE, title[i], sign[i], url[i]))
return list_
def parseTextEESeminar(text):
# YNS_SITE_EE
soup = BeautifulSoup(text, 'html.parser') # filter
soup = BeautifulSoup(str(soup.find('table', class_='board-table')), 'html.parser')
# Each notice information
title = []
sign = [] # author is always fixed to '전기전자공학부', thus date is only needed.
url = []
for title_list in soup.find_all('a', class_='c-board-title'): # title
title.append(" ".join(title_list.text.split()))
for sign_list in soup.find_all('div', class_='c-board-info-m'): # title
sign.append(" ".join(sign_list.text.split()).replace('전기전자공학부', '전기전자공학부 ')) # remove EE
# sign.append(" ".join(sign_list.text.split()))
for link_list in soup.findAll("a"):
if 'href' in link_list.attrs:
url.append(link_list.attrs['href'])
# return
list_ = []
for i in range(len(title)):
list_.append(makeGroup(cf.YNS_SITE_EE_SEMINAR, title[i], sign[i], url[i]))
return list_
def parseTextEtc(text):
# YNS_SITE_MAIN
soup = BeautifulSoup(text, 'html.parser') # filter
soup = BeautifulSoup(str(soup.find('div', class_='article')), 'html.parser')
# Each notice information
title = []
sign = []
url = []
# title
for title_list in soup.find_all('strong'): # title
title.append(" ".join(title_list.text.split()))
for sign_list in soup.find_all('span', class_='title'):
sign.append(" ".join(sign_list.text.split()))
# information, like 신촌/국제 학부대학 2020.02.04
for link_list in soup.findAll("a"):
if 'href' in link_list.attrs:
link_t = link_list.attrs['href'] # temporary
# filter
if (link_t != 'javascript:;') and (link_t[:22] != '/sc/support/etc_notice.jsp'):
# print(link_list.attrs['href'])
url.append(link_t)
del link_t
# return
list_ = []
for i in range(len(title)):
list_.append(makeGroup(cf.YNS_SITE_ETC, title[i], sign[i], url[i]))
return list_
def parseTextCorona(text):
# YNS_SITE_MAIN
soup = BeautifulSoup(text, 'html.parser') # filter
soup = BeautifulSoup(str(soup.find('div', class_='article')), 'html.parser')
# Each notice information
title = []
sign = []
url = []
# title
for title_list in soup.find_all('strong'): # title
title.append(" ".join(title_list.text.split()))
for sign_list in soup.find_all('span', class_='title'):
sign.append(" ".join(sign_list.text.split()))
# information, like 신촌/국제 학부대학 2020.02.04
for link_list in soup.findAll("a"):
if 'href' in link_list.attrs:
link_t = link_list.attrs['href'] # temporary
# filter
if (link_t != 'javascript:;') and (link_t[:22] != '/sc/support/corona_notice.jsp'):
# print(link_list.attrs['href'])
url.append(link_t)
del link_t
# return
list_ = []
for i in range(len(title)):
list_.append(makeGroup(cf.YNS_STIE_CORONA, title[i], sign[i], url[i]))
return list_
def parseTextEngDepart(text):
# YNS_SITE_MAIN
soup = BeautifulSoup(text, 'html.parser') # filter
soup = BeautifulSoup(str(soup.find('tbody')), 'html.parser')
# Each notice information
title = []
sign = [] # unnecessary
url = []
# title
for title_list in soup.find_all('td', class_='Subject'): # title
title.append(" ".join(title_list.text.split()))
for sign_list in soup.find_all('td', class_='board_date'):
sign.append( '공과대학 {date}'.format(date=" ".join(sign_list.text.split())))
# information, like 공과대학 2020.02.04
for link_list in soup.findAll("a"):
if 'href' in link_list.attrs:
link_t = link_list.attrs['href'] # temporary
url.append(link_t)
del link_t
# return
list_ = []
for i in range(len(title)):
list_.append(makeGroup(cf.YNS_SITE_ENG_BASE, title[i], sign[i], url[i]))
# print(url)
return list_
#
# script
if __name__ == '__main__':
cf.projectBanner()
eng_05_01 = parseTextEngDepart(getText(cf.YNS_SITE_ENG_05_01))
eng_05_03 = parseTextEngDepart(getText(cf.YNS_SITE_ENG_05_03))
for info in eng_05_03:
print(info)
pass