码迷,mamicode.com
首页 > 编程语言 > 详细

Python 爬取糗事百科段子

时间:2018-06-02 21:32:11      阅读:176      评论:0      收藏:0      [点我收藏+]

标签:爬虫   Python   百科段子   

直接上代码

#!/usr/bin/env python
# -*- coding: utf-8 -*-

import re
import urllib.request

def gettext(url,page):
	headers=("User-Agent","Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36")
	opener=urllib.request.build_opener()
	opener.addheaders=[headers]
	urllib.request.install_opener(opener)
	data=urllib.request.urlopen(url).read().decode("utf-8")
	userpat='<h2>(.*?)</h2>'
	textpat='<div class="content">(.*?)</div>'
	userlist=re.compile(userpat,re.S).findall(data)
	textlist=re.compile(textpat,re.S).findall(data)
	dictionary=dict(zip(userlist,textlist))
	x=1
	for key,value in dictionary.items():
		value=value.replace("\n","")
		value=value.replace("<span>","")
		value=value.replace("</span>","")
		value=value.replace("<br/>","\n")
		print("第"+str(page)+"页"+str(x)+"用户"+key)
		print("内容:"+value)
		print('\n')
		print("-----------------------------")
		x+=1

for i in range(1,3):
	url="https://www.qiushibaike.com/8hr/page/"+str(i)
	gettext(url,i)
	
	

执行结果

技术分享图片



Python 爬取糗事百科段子

标签:爬虫   Python   百科段子   

原文地址:http://blog.51cto.com/superleedo/2123509

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!