Python urllib2爬虫豆瓣小说名称和评分

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python urllib2爬虫豆瓣小说名称和评分相关的知识,希望对你有一定的参考价值。

#-*- coding:utf-8 -*-
import urllib2
import re

url = https://book.douban.com/tag/%E5%B0%8F%E8%AF%B4
request = urllib2.Request(url)
urlopen = urllib2.urlopen(request)
content = urlopen.read()
reg_0 = re.findall(rtitle.+"\s*on, content)
reg_1 = re.findall(rrating_nums">.*<, content)
for title,score in zip(reg_0,reg_1):
    title = re.split(r",title)
    score = re.split(r>|<,score)
    print title[1],score[1]



#<span class="rating_nums">8.6</span>

 

以上是关于Python urllib2爬虫豆瓣小说名称和评分的主要内容,如果未能解决你的问题,请参考以下文章

Python爬虫——对豆瓣图书各模块评论数与评分图形化分析

Python爬虫——豆瓣数据模型训练与检测

Python从0开始写爬虫——把扒到的豆瓣数据存储到数据库

python爬虫爬取豆瓣电影前250名电影及评分(requests+pyquery)

python爬虫抓取豆瓣电影

python爬虫怎么处理豆瓣网页异常请求