-
Notifications
You must be signed in to change notification settings - Fork 0
/
newsspider.py
413 lines (377 loc) · 11.3 KB
/
newsspider.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
# encoding: utf-8
import requests
import re
from bs4 import BeautifulSoup
import time
import pymysql.cursors
class News:
def __init__(self,title,time,type,content):
self.title = title #新闻标题
self.time = time #新闻时间
self.type = type #新闻类别
self.content = content #新闻内容
def getList(url): #获取新闻链接地址
li = requests.get(url)
res = r'url":"http:.*?.html' #正则表达式获取链接地址
urls = re.findall(res,li.text)
for i in range(len(urls)):
urls[i] = urls[i][6:] #截取URL的第六个字符之后的内容并保留
return urls
def getNews(url): #获取新闻内容
# 特殊处理链接,获取全文,加了_0
# str[:-5] 截取从头开始到倒数第五个字符之前,指.html
url = url[:-5]+"_0.html"
ss = requests.get(url)
# 获取新闻内容
soup = BeautifulSoup(ss.text,"html.parser")
# str[:-6] 截取从头开始到倒数第六个字符之前 -新闻标题
title = soup.title.string[:-6].encode('utf-8')
print(title)
# str[9:] 截取第九个字符到结尾 -新闻时间
time = soup.find("div","about").contents[0][9:].encode('utf-8')
if 3 < len(soup.find("div","position lBlue").contents):
type = soup.find("div","position lBlue").contents[3].string.encode('utf-8')
else:
type = soup.find("div","position lBlue").contents[1].string.encode('utf-8')
# str[3] 截取第三个字符 -新闻类型
# contents[1]是来源
# 截取全文内容 -新闻内容
content = soup.find("div","content").get_text()[1:-1].encode('utf-8')
# print(content)
# 封装
news = News(title,time,type,content)
return news
def saveAsSQL(news, id, what):
config = {
'host':'127.0.0.1',
'port':3306,
'user':'root',
'password':'mysql123',
'db':'Mynews',
'charset':'utf8mb4',
'cursorclass':pymysql.cursors.DictCursor,
}
connection = pymysql.connect(**config)
try:
with connection.cursor() as cursor:
sql = "INSERT INTO %s" % what + " (news_id, title, time, content, type) VALUES (%s, %s, %s, %s, %s)"
cursor.execute(sql, (id, news.title, news.time, news.content, news.type));
connection.commit()
finally:
connection.close();
def clearSQL(what):
config = {
'host':'127.0.0.1',
'port':3306,
'user':'root',
'password':'mysql123',
'db':'Mynews',
'charset':'utf8mb4',
'cursorclass':pymysql.cursors.DictCursor,
}
connection = pymysql.connect(**config)
try:
with connection.cursor() as cursor:
sql = "DELETE FROM %s WHERE 1 " % what
cursor.execute(sql);
connection.commit()
finally:
connection.close();
id = 1
start = time.clock()
sum = 0
clearSQL('militarynews')
#获取前40页新闻
for i in range(1,10):
net = "http://3g.163.com/touch/article/list/BAI67OGGwangning/%s-10.html" %i
# 获取新闻列表
urls = getList(net)
# 求和sum
sum = sum + len(urls)
# print "当前页解析出 %s 条" %len(urls)
j = 1
# 对当前页面的每一条新闻获取URL
for url in urls:
print "正在读取第%s页第%s/%s条:%s" %(i,j,len(urls),url.encode('utf-8'))
try:
news = getNews(url)
saveAsSQL(news, id, 'militarynews')
id = id +1
j = j + 1
except Exception as e:
pass
finally:
pass
end = time.clock()
print "共爬取网易军事%s条新闻,耗时%f s" %(sum,end - start)
id = 1
start = time.clock()
sum = 0
clearSQL('entertainmentnews')
#获取前40页新闻
for i in range(1,10):
net = "http://3g.163.com/touch/article/list/BA10TA81wangning/%s-10.html" %i
# 获取新闻列表
urls = getList(net)
# 求和sum
sum = sum + len(urls)
# print "当前页解析出 %s 条" %len(urls)
j = 1
# 对当前页面的每一条新闻获取URL
for url in urls:
print "正在读取第%s页第%s/%s条:%s" %(i,j,len(urls),url.encode('utf-8'))
try:
news = getNews(url)
saveAsSQL(news, id, 'entertainmentnews')
id = id +1
j = j + 1
except Exception as e:
pass
finally:
pass
end = time.clock()
print "共爬取网易娱乐%s条新闻,耗时%f s" %(sum,end - start)
id = 1
start = time.clock()
sum = 0
clearSQL('sportsnews')
#获取前40页新闻
for i in range(1,10):
net = "http://3g.163.com/touch/article/list/BA8E6OEOwangning/%s-10.html" %i
# 获取新闻列表
urls = getList(net)
# 求和sum
sum = sum + len(urls)
# print "当前页解析出 %s 条" %len(urls)
j = 1
# 对当前页面的每一条新闻获取URL
for url in urls:
print "正在读取第%s页第%s/%s条:%s" %(i,j,len(urls),url.encode('utf-8'))
try:
news = getNews(url)
saveAsSQL(news, id, 'sportsnews')
id = id +1
j = j + 1
except Exception as e:
pass
finally:
pass
end = time.clock()
print "共爬取网易体育%s条新闻,耗时%f s" %(sum,end - start)
id = 1
start = time.clock()
sum = 0
clearSQL('economynews')
#获取前40页新闻
for i in range(1,10):
net = "http://3g.163.com/touch/article/list/BA8EE5GMwangning/%s-10.html" %i
# 获取新闻列表
urls = getList(net)
# 求和sum
sum = sum + len(urls)
# print "当前页解析出 %s 条" %len(urls)
j = 1
# 对当前页面的每一条新闻获取URL
for url in urls:
print "正在读取第%s页第%s/%s条:%s" %(i,j,len(urls),url.encode('utf-8'))
try:
news = getNews(url)
saveAsSQL(news, id, 'economynews')
id = id +1
j = j + 1
except Exception as e:
pass
finally:
pass
end = time.clock()
print "共爬取网易财经%s条新闻,耗时%f s" %(sum,end - start)
id = 1
start = time.clock()
sum = 0
clearSQL('phonenews')
#获取前40页新闻
for i in range(1,10):
net = "http://3g.163.com/touch/article/list/BAI6I0O5wangning/%s-10.html" %i
# 获取新闻列表
urls = getList(net)
# 求和sum
sum = sum + len(urls)
# print "当前页解析出 %s 条" %len(urls)
j = 1
# 对当前页面的每一条新闻获取URL
for url in urls:
print "正在读取第%s页第%s/%s条:%s" %(i,j,len(urls),url.encode('utf-8'))
try:
news = getNews(url)
saveAsSQL(news, id, 'phonenews')
id = id +1
j = j + 1
except Exception as e:
pass
finally:
pass
end = time.clock()
print "共爬取网易手机%s条新闻,耗时%f s" %(sum,end - start)
id = 1
start = time.clock()
sum = 0
clearSQL('technologynews')
#获取前40页新闻
for i in range(1,10):
net = "http://3g.163.com/touch/article/list/BA8D4A3Rwangning/%s-10.html" %i
# 获取新闻列表
urls = getList(net)
# 求和sum
sum = sum + len(urls)
# print "当前页解析出 %s 条" %len(urls)
j = 1
# 对当前页面的每一条新闻获取URL
for url in urls:
print "正在读取第%s页第%s/%s条:%s" %(i,j,len(urls),url.encode('utf-8'))
try:
news = getNews(url)
saveAsSQL(news, id, 'technologynews')
id = id +1
j = j + 1
except Exception as e:
pass
finally:
pass
end = time.clock()
print "共爬取网易科技%s条新闻,耗时%f s" %(sum,end - start)
id = 1
start = time.clock()
sum = 0
clearSQL('gamesnews')
#获取前40页新闻
for i in range(1,10):
net = "http://3g.163.com/touch/article/list/BAI6RHDKwangning/%s-10.html" %i
# 获取新闻列表
urls = getList(net)
# 求和sum
sum = sum + len(urls)
# print "当前页解析出 %s 条" %len(urls)
j = 1
# 对当前页面的每一条新闻获取URL
for url in urls:
print "正在读取第%s页第%s/%s条:%s" %(i,j,len(urls),url.encode('utf-8'))
try:
news = getNews(url)
saveAsSQL(news, id, 'gamesnews')
id = id +1
j = j + 1
except Exception as e:
pass
finally:
pass
end = time.clock()
print "共爬取网易游戏%s条新闻,耗时%f s" %(sum,end - start)
id = 1
start = time.clock()
sum = 0
clearSQL('educationnews')
#获取前40页新闻
for i in range(1,10):
net = "http://3g.163.com/touch/article/list/BA8FF5PRwangning/%s-10.html" %i
# 获取新闻列表
urls = getList(net)
# 求和sum
sum = sum + len(urls)
# print "当前页解析出 %s 条" %len(urls)
j = 1
# 对当前页面的每一条新闻获取URL
for url in urls:
print "正在读取第%s页第%s/%s条:%s" %(i,j,len(urls),url.encode('utf-8'))
try:
news = getNews(url)
saveAsSQL(news, id, 'educationnews')
id = id +1
j = j + 1
except Exception as e:
pass
finally:
pass
end = time.clock()
print "共爬取网易教育%s条新闻,耗时%f s" %(sum,end - start)
id = 1
start = time.clock()
sum = 0
clearSQL('carnews')
#获取前40页新闻
for i in range(1,10):
net = "http://3g.163.com/touch/article/list/BA8DOPCSwangning/%s-10.html" %i
# 获取新闻列表
urls = getList(net)
# 求和sum
sum = sum + len(urls)
# print "当前页解析出 %s 条" %len(urls)
j = 1
# 对当前页面的每一条新闻获取URL
for url in urls:
print "正在读取第%s页第%s/%s条:%s" %(i,j,len(urls),url.encode('utf-8'))
try:
news = getNews(url)
saveAsSQL(news, id, 'carnews')
id = id +1
j = j + 1
except Exception as e:
pass
finally:
pass
end = time.clock()
print "共爬取网易汽车%s条新闻,耗时%f s" %(sum,end - start)
id = 1
start = time.clock()
sum = 0
clearSQL('tournews')
#获取前40页新闻
for i in range(1,10):
net = "http://3g.163.com/touch/article/list/BEO4GINLwangning/%s-10.html" %i
# 获取新闻列表
urls = getList(net)
# 求和sum
sum = sum + len(urls)
# print "当前页解析出 %s 条" %len(urls)
j = 1
# 对当前页面的每一条新闻获取URL
for url in urls:
print "正在读取第%s页第%s/%s条:%s" %(i,j,len(urls),url.encode('utf-8'))
try:
news = getNews(url)
saveAsSQL(news, id, 'tournews')
id = id +1
j = j + 1
except Exception as e:
pass
finally:
pass
# 保存到数据库里
end = time.clock()
print "共爬取网易旅游%s条新闻,耗时%f s" %(sum,end - start)
id = 1
start = time.clock()
sum = 0
clearSQL('AllNews')
#获取前40页新闻
for i in range(1,10):
net = "http://3g.163.com/touch/article/list/BA8J7DG9wangning/%s-40.html" %i
# 获取新闻列表
urls = getList(net)
# 求和sum
sum = sum + len(urls)
# print "当前页解析出 %s 条" %len(urls)
j = 1
# 对当前页面的每一条新闻获取URL
for url in urls:
print "正在读取第%s页第%s/%s条:%s" %(i,j,len(urls),url.encode('utf-8'))
try:
news = getNews(url)
saveAsSQL(news, id, 'AllNews')
id = id +1
j = j + 1
except Exception as e:
pass
finally:
pass
end = time.clock()
print "共爬取网易全类别%s条新闻,耗时%f s" %(sum,end - start)