91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Python如何爬取電影票房數據

發布時間:2021-06-18 09:25:21 來源:億速云 閱讀:172 作者:小新 欄目:開發技術

這篇文章主要為大家展示了“Python如何爬取電影票房數據”,內容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領大家一起研究并學習一下“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如何爬取電影票房數據”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

奉化市| 鄯善县| 泌阳县| 郧西县| 霍州市| 鄂托克旗| 峡江县| 桐城市| 肇东市| 高要市| 木兰县| 望都县| 扶绥县| 龙海市| 神池县| 河源市| 化德县| 大邑县| 乌兰察布市| 扬中市| 那曲县| 鞍山市| 临桂县| 乐都县| 绥中县| 肥东县| 绥宁县| 云阳县| 略阳县| 广灵县| 顺平县| 岚皋县| 吉木萨尔县| 巴林左旗| 甘洛县| 浪卡子县| 特克斯县| 新民市| 河津市| 扎鲁特旗| 太原市|