Python爬虫爬取电影票房数据及图表展示操作示例

作者:OldKind超 时间:2021-07-18 08:34:32 

本文实例讲述了Python爬虫爬取电影票房数据及图表展示操作。分享给大家供大家参考,具体如下:

爬虫电影历史票房排行榜 http://www.cbooo.cn/BoxOffice/getInland?pIndex=1&t=0

  1. Python爬取历史电影票房纪录

  2. 解析Json数据

  3. 横向条形图展示

  4. 面向对象思想

导入相关库


import requests
import re
from matplotlib import pyplot as plt
from matplotlib import font_manager
import json

类代码部分


class DYOrder(object):
#初始化
 def __init__(self,page=1):
   self.url = 'http://www.cbooo.cn/BoxOffice/getInland?pIndex={}&t=0'.format(page)
   self.headers = {'User-Agent':'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.100 Safari/537.36'}
 #请求
 def __to_request(self):
   response = requests.get(url=self.url,headers=self.headers)
   return self.__to_parse(response.content.decode('utf-8'))
 #解析
 def __to_parse(self,html):
   #返回为JSON字符串
   #首先将字符串反序列化为JSON对象
   my_json = json.loads(html)
   return my_json
 #图表展示
 def __to_show(self,data,show_type):
   x = []
   y = []
   for value in data:
     x.append(value['MovieName'])
     y.append(int(value['BoxOffice']))

my_font = font_manager.FontProperties(fname='/System/Library/Fonts/PingFang.ttc',size=18)

if show_type == 1:
     plt.figure(figsize=(20,8),dpi=80)
     rects = plt.bar(range(len(x)),[float(i) for i in y],width=0.5,color='red')
     plt.xticks(range(len(x)),x,fontproperties=my_font,rotation=60)
     plt.xlabel('名称',rotation=60,color='blue',fontproperties=my_font)
     plt.ylabel('票房/万',rotation=60,color='blue',fontproperties=my_font)
     for rect in rects:
       height = rect.get_height()
       plt.text(rect.get_x() + rect.get_width()/2,height+0.4,str(height),ha='center',rotation=30)
   else:
     # 横向 plt.barh(y,x)
     plt.figure(figsize=(15,13),dpi=80)
     rects = plt.barh(range(len(x)),y,height=0.8,color='orange')
     plt.yticks(range(len(x)),x,fontproperties=my_font,rotation=30)
     plt.ylabel('名称',rotation=0,color='blue',fontproperties=my_font)
     plt.xlabel('票房/万',rotation=60,color='blue',fontproperties=my_font)
     for rect in rects:
       width = rect.get_width()
       plt.text(width, rect.get_y()+0.3/2,str(width),va='center',rotation=30)

plt.grid(alpha=0.4)  
   plt.title('中国电影历史票房排行榜',color='red',size=18,fontproperties=my_font)
   plt.show()
 #所有操作
 def to_run(self,show_type=1):
   result = self.__to_request()
   self.__to_show(result,show_type)

调用类并展示


if __name__ == '__main__':
 dy_order = DYOrder(1)
 # type 1 竖向条形图 2 横向
 dy_order.to_run(2)

Python爬虫爬取电影票房数据及图表展示操作示例
Python爬虫爬取电影票房数据及图表展示操作示例

希望本文所述对大家Python程序设计有所帮助。

来源:https://blog.csdn.net/qq_36261130/article/details/100556017

标签:Python,爬虫,爬取
0
投稿

猜你喜欢

  • asp如何用Access加密页面?

    2010-06-10 18:41:00
  • 解决python3.6用cx_Oracle库连接Oracle的问题

    2023-06-12 02:38:46
  • Python Datetime模块和Calendar模块用法实例分析

    2022-08-05 10:23:46
  • PHP开发技巧之PHAR反序列化详解

    2023-11-15 02:23:45
  • 解决python 两个时间戳相减出现结果错误的问题

    2023-01-18 17:41:44
  • MySQL Dump/Restore

    2010-10-14 13:49:00
  • Python实现的寻找前5个默尼森数算法示例

    2023-05-15 17:34:29
  • 他们是如何不让我的Teleport和Webzip工作的?

    2010-07-14 21:06:00
  • python GUI库图形界面开发之PyQt5拖放控件实例详解

    2023-04-26 08:43:24
  • Python时间模块datetime、time、calendar的使用方法

    2023-04-02 06:44:16
  • Mysql数据库之Binlog日志使用总结(必看篇)

    2024-01-20 20:15:16
  • python 包实现 urllib 网络请求操作

    2023-11-03 07:19:50
  • SQLServer按顺序执行多个脚本的方法(sqlcmd实用工具使用方法)

    2024-01-24 15:23:05
  • Django使用redis缓存服务器的实现代码示例

    2022-12-15 09:16:28
  • vue2.0.js的多级联动选择器实现方法

    2024-04-28 09:23:37
  • vue.js实现只弹一次弹框

    2024-05-09 15:08:07
  • python使用xmlrpc实例讲解

    2023-11-25 08:46:59
  • 绿色下划线的简洁CSS导航代码

    2007-09-17 12:51:00
  • CentOS中升级Python版本的方法详解

    2021-08-22 20:22:30
  • 详解Python中@staticmethod和@classmethod区别及使用示例代码

    2023-06-03 12:17:20
  • asp之家 网络编程 m.aspxhome.com