码迷,mamicode.com
首页 > 其他好文 > 详细

《姜子牙》总票房破11亿,但是观众对电影不满意,看看评论如何

时间:2020-10-05 22:21:26      阅读:33      评论:0      收藏:0      [点我收藏+]

标签:ack   page   XML   动画特效   rds   词汇   ace   ima   time   

前言

本文的文字及图片来源于网络,仅供学习、交流使用,不具有任何商业用途,如有问题请及时联系我们以作处理。

猫眼专业版实时见证10月5日14:59:30,《姜子牙》总票房破11亿,位居中国电影市场动画电影票房第四名,国产动画电影票房亚军!

技术图片

 

但豆瓣评分7.0,口碑一般

技术图片

 

网上很多影评好评都是给的动画特效,差评都是给的剧情方面~

言归正传~咱们今天爬取一下豆瓣影评,看看各大网友都是什么样的看法吧

技术图片

 

项目目标

爬取一下豆瓣影评

地址

https://movie.douban.com/subject/25907124/

目标网页

技术图片
豆瓣网是静态网页,网站上面的数据都是有再网页源代码有的,请求网页,返回response数据,然后解析数据,保存数据就OK了,一气呵成,对于静态网页就不过多的说明了,还是比较简单的~

影评爬虫代码

import requests
import parsel
import time
for page in range(0, 3000, 20):
    time.sleep(1)
    url = ‘https://movie.douban.com/subject/25907124/reviews‘

    headers = {
      ‘Accept‘: ‘text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9‘,
      ‘Host‘: ‘movie.douban.com‘,
      ‘Referer‘: ‘https: // movie.douban.com / subject / 26754233 / reviews?start = 140‘,
      ‘User-Agent‘: ‘Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.105 Safari/537.36‘,
    }

    response = requests.get(url=url, headers=headers)
    selector = parsel.Selector(response.text)
    data = selector.css(‘#content  .article .review-list .short-content::text‘).getall()
    for i in data:
        a = i.strip().replace(‘\n‘, ‘‘).replace(‘)‘, ‘‘).replace(‘(‘, ‘‘)
        with open(‘姜子牙影评‘ + ‘.txt‘, mode=‘a‘, encoding=‘utf-8‘) as f:
            f.write(a)
            f.write(‘\n‘)
            print(a)

 

技术图片

词云代码

import jieba
import wordcloud
import imageio
# 导入imageio库中的imread函数,并用这个函数读取本地图片,作为词云形状图片
py = imageio.imread(r"D:\python\demo\姜子牙豆瓣影评\四不象.png")
# 读取文件内容
f = open(r‘D:\python\demo\姜子牙豆瓣影评\姜子牙影评.txt‘, encoding=‘utf-8‘)
txt = f.read()
# print(txt)
# jiabe 分词 分割词汇
txt_list = jieba.lcut(txt)
string = ‘ ‘.join(txt_list)
# 词云图设置
wc = wordcloud.WordCloud(
        width=1000,         # 图片的宽
        height=700,         # 图片的高
        background_color=‘white‘,   # 图片背景颜色
        font_path=‘msyh.ttc‘,    # 词云字体
        mask=py,     # 所使用的词云图片
        scale=15,
        stopwords={‘ ‘, ‘没有‘, ‘真的‘, ‘还是‘, ‘就是‘, ‘如果‘, ‘不是‘, ‘什么‘, ‘一个‘, ‘这部‘, ‘但是‘, ‘觉得‘, ‘有点‘, ‘虽然‘, ‘我们‘},
        # contour_width=5,
        # contour_color=‘red‘  # 轮廓颜色
)
# 给词云输入文字
wc.generate(string)
# 词云图保存图片地址
wc.to_file(r‘D:\python\demo\姜子牙豆瓣影评\out.png‘)

 

技术图片
技术图片

《姜子牙》总票房破11亿,但是观众对电影不满意,看看评论如何

标签:ack   page   XML   动画特效   rds   词汇   ace   ima   time   

原文地址:https://www.cnblogs.com/hhh188764/p/13770279.html

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