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

python xpath 爬取豆瓣电脑版电影案例

时间:2018-05-10 01:06:52      阅读:587      评论:0      收藏:0      [点我收藏+]

标签:图片   mac os   python   sts   chart   chrome   har   tle   path   

from lxml import etree
import requests


url = https://movie.douban.com/chart

headers = {"User-Agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.84 Safari/537.36" }

response = requests.get(url,headers=headers)

html_str = response.content.decode()

# print(html_str)

# 使用etree来处理数据
html = etree.HTML(html_str)

# 获取电影的url地址
url_list = html.xpath("//div[@class=‘indent‘]/div/table//div[@class=‘pl2‘]/a/@href")
#print(url_list)

# 获取电影图片地址
img_list = html.xpath("//div[@class=‘indent‘]/div/table//a[@class=‘nbg‘]/img/@src")
#print(img_list)

# 把每一部电影组成一个字典,字典中是电影的数据
    # 1.分组
    # 2.每一组提取数据

rets = html.xpath("//div[@class=‘indent‘]/div/table")

for table in rets:
    item = {}
    item[title] = table.xpath(".//div[@class=‘pl2‘]/a/text()")[0].replace("/","").strip()
    item[href] = table.xpath(".//div[@class=‘pl2‘]/a/@href")[0]
    item[img] = table.xpath(".//a[@class=‘nbg‘]/img/@src")[0]
    item[comment_num] = table.xpath(".//div[@class=‘pl2‘]/div//span[@class=‘pl‘]/text()")[0]
    item[rating_num] = table.xpath(".//div[@class=‘pl2‘]/div//span[@class=‘rating_nums‘]/text()")[0]
    print(item)

 

python xpath 爬取豆瓣电脑版电影案例

标签:图片   mac os   python   sts   chart   chrome   har   tle   path   

原文地址:https://www.cnblogs.com/zqrios/p/9017480.html

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