1. 程式人生 > >貓眼電影爬蟲(參考崔大的書寫的)

貓眼電影爬蟲(參考崔大的書寫的)

import json   #json會將字典型別轉化為字串型別,利於儲存
import requests #呼叫requests庫發起get請求
import socket   #與urlerror型別有關的庫,與url庫有關,本例沒有用到。
from requests import RequestException #request異常的庫
import re  #組合與搜尋正則表示式的庫
import time       #time延時庫


user_agent='Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.26 Safari/537.36 Core/1.63.5478.400 QQBrowser/10.1.1550.400'
#用QQ瀏覽器來偽裝爬蟲的身份
def get_one_page(url):#解析一個頁面
   try:#嘗試,有錯誤補償措施
      headers={
         'User-Agent':user_agent
      }
      response=requests.get(url,headers=headers)
      if response.status_code==200:#200說明請求成功,我們以前看到的404就是頁面找不到,請求失敗
         return response.text#如果正常,則返回html檔案
      return None
   except RequestException:#如果發生Request錯誤,則返回None
      return None

def parse_one_page(html):#解析一面的html檔案
   pattern=re.compile(

'<dd>.*?board-index.*?>(\d+)</i>.*?data-src="(.*?)".*?name"><a.*?>(.*?)</a>.*?star">(.*?)</p>.*?releasetime">(.*?)</p>.*?integer">(.*?)</i>.*?fraction">(.*?)</i>.*?</dd>', re.S)
   #根據html檔案寫出來的正則表示式(實在是太鬼畜了,o(╥﹏╥)o)
   #  .*能匹配所有除了換行符以外的字元,加了re.S能包含換行符,如果是.*?,加了問號變為非貪婪匹配,會匹配儘可能少的字元。如果不加?可能會吞併本該由後面表示式匹配的字元,一般來說都用.*?,因為你不知道後面會不會有類似的結構,從而被吞併。
   items=re.findall(pattern=pattern,string=html)
   for item in items:
      yield{
         'index':item[0],
         'image':item[1],
         'title':item[2],
         'actor':item[3].strip()[3:],
         'time':item[4].strip()[5:],
         'score':item[5]+item[6]
      }
#yield,是一個生成器,可以多次迭代和返回一個值(字典),相當於多次return,並且可以“記憶”每一次的返回的位置,下一次可以從原地方返回。
#send(msg)與next()的區別在於send可以傳遞引數給yield表示式,這時傳遞的引數會作為yield表示式的值,而yield的引數是返回給呼叫者的值。——換句話說,就是send可以強行修改上一個yield表示式值。比如函式中有一個yield賦值,a = yield 5,第一次迭代到這裡會返回5,a還沒有賦值。第二次迭代時,使用.send(10),那麼,就是強行修改yield 5表示式的值為10,本來是5的,那麼a=10,詳情請參考文章。
#https://www.jb51.net/article/64302.htm參考文章
#https://blog.csdn.net/qq_36330643/article/details/78247070參考文章
def write_to_file(content):#作為txt檔案儲存
   with open('result.txt','a',encoding='utf-8') as f:
      f.write(json.dumps(content,ensure_ascii=False,skipkeys=False))

#用json.dumps方法把content字典轉化為str型別,從而能用write寫入。
     
def main(offset):
   url = 'https://maoyan.com/board/4?offset='+str(offset)

#發現在這個top1~10頁面中,offset=0,如果在top11~20這個頁面中,offset=10...以此類推

#
   html=get_one_page(url)
   for item in parse_one_page(html):

mg_response = requests.get(item['image'])
           file_name = '第'+item['index']+'名'+item['title'] + '.jpg'
      with open(file_name, 'wb') as f:
      f.write(img_response.content)

#儲存下載下來的圖片。
      print(item)
      write_to_file(item)

if __name__=='__main__':
   for i in range(10):
      main(offset=i*10)

#發現在這個top1~10頁面中,offset=0,如果在top11~20這個頁面中,offset=10...以此類推

#https://maoyan.com/board/4?offset=90比如開啟這個頁面,返回的是top91~100
      time.sleep(1)
  
#  if __name__=='__main__':當直接執行該.py檔案時會執行if後面的內容,但是如果在其他檔案中以呼叫(import)形式去執行該檔案,if後面的內容不會執行。

#程式碼原文參考自《python3網路爬蟲開發實戰》

程式碼輸出結果:

一下是貓眼電眼排行前一百的所有電影序號,電影封面的下載地址,電影的名稱,電影的演出人員,電影的發行日期及地點,電影的評分。

貼上過來Index兩邊就有很多空格,不知道為什麼···

{'index': '1', 'image': 'http://p1.meituan.net/movie/[email protected]_220h_1e_1c', 'title': '霸王別姬', 'actor': '張國榮,張豐毅,鞏俐', 'time': '1993-01-01(中國香港)', 'score': '9.6'}

{'index': '2', 'image': 'http://p0.meituan.net/movie/[email protected]_220h_1e_1c', 'title': '肖申克的救贖', 'actor': '蒂姆·羅賓斯,摩根·弗里曼,鮑勃·岡頓', 'time': '1994-10-14(美國)', 'score': '9.5'}

{'index': '3', 'image': 'http://p0.meituan.net/movie/[email protected]_220h_1e_1c', 'title': '羅馬假日', 'actor': '格利高裡·派克,奧黛麗·赫本,埃迪·艾伯特', 'time': '1953-09-02(美國)', 'score': '9.1'}

{'index': '4', 'image': 'http://p0.meituan.net/movie/[email protected]_220h_1e_1c', 'title': '這個殺手不太冷', 'actor': '讓·雷諾,加里·奧德曼,娜塔莉·波特曼', 'time': '1994-09-14(法國)', 'score': '9.5'}

{'index': '5', 'image': 'http://p1.meituan.net/movie/[email protected]_220h_1e_1c', 'title': '教父', 'actor': '馬龍·白蘭度,阿爾·帕西諾,詹姆斯·肯恩', 'time': '1972-03-24(美國)', 'score': '9.3'}

{'index': '6', 'image': 'http://p1.meituan.net/movie/[email protected]_220h_1e_1c', 'title': '泰坦尼克號', 'actor': '萊昂納多·迪卡普里奧,凱特·溫絲萊特,比利·贊恩', 'time': '1998-04-03', 'score': '9.5'}

{'index': '7', 'image': 'http://p0.meituan.net/movie/[email protected]_220h_1e_1c', 'title': '龍貓', 'actor': '日高法子,阪本千夏,糸井重裡', 'time': '1988-04-16(日本)', 'score': '9.2'}

{'index': '8', 'image': 'http://p0.meituan.net/movie/[email protected]_220h_1e_1c', 'title': '唐伯虎點秋香', 'actor': '周星馳,鞏俐,鄭佩佩', 'time': '1993-07-01(中國香港)', 'score': '9.2'}

{'index': '9', 'image': 'http://p0.meituan.net/movie/[email protected]_220h_1e_1c', 'title': '千與千尋', 'actor': '柊瑠美,入野自由,夏木真理', 'time': '2001-07-20(日本)', 'score': '9.3'}

{'index': '10', 'image': 'http://p0.meituan.net/movie/[email protected]_220h_1e_1c', 'title': '魂斷藍橋', 'actor': '費雯·麗,羅伯特·泰勒,露塞爾·沃特森', 'time': '1940-05-17(美國)', 'score': '9.2'}

{'index': '11', 'image': 'http://p0.meituan.net/movie/[email protected]_220h_1e_1c', 'title': '亂世佳人', 'actor': '費雯·麗,克拉克·蓋博,奧利維婭·德哈維蘭', 'time': '1939-12-15(美國)', 'score': '9.1'}

{'index': '12', 'image': 'http://p1.meituan.net/movie/[email protected]_220h_1e_1c', 'title': '喜劇之王', 'actor': '周星馳,莫文蔚,張柏芝', 'time': '1999-02-13(中國香港)', 'score': '9.2'}

{'index': '13', 'image': 'http://p1.meituan.net/movie/[email protected]_220h_1e_1c', 'title': '天空之城', 'actor': '寺田農,鷲尾真知子,龜山助清', 'time': '1992', 'score': '9.1'}

{'index': '14', 'image': 'http://p1.meituan.net/movie/[email protected]_220h_1e_1c', 'title': '大鬧天宮', 'actor': '邱嶽峰,畢克,富潤生', 'time': '1965-12-31', 'score': '9.0'}

{'index': '15', 'image': 'http://p1.meituan.net/movie/[email protected]_220h_1e_1c', 'title': '辛德勒的名單', 'actor': '連姆·尼森,拉爾夫·費因斯,本·金斯利', 'time': '1993-12-15(美國)', 'score': '9.2'}

{'index': '16', 'image': 'http://p1.meituan.net/movie/[email protected]_220h_1e_1c', 'title': '音樂之聲', 'actor': '朱莉·安德魯斯,克里斯托弗·普盧默,埃琳諾·帕克', 'time': '1965-03-02(美國)', 'score': '9.0'}

{'index': '17', 'image': 'http://p0.meituan.net/movie/[email protected]_220h_1e_1c', 'title': '春光乍洩', 'actor': '張國榮,梁朝偉,張震', 'time': '1997-05-30(中國香港)', 'score': '9.2'}

{'index': '18', 'image': 'http://p1.meituan.net/movie/[email protected]_220h_1e_1c', 'title': '剪刀手愛德華', 'actor': '約翰尼·德普,薇諾娜·瑞德,黛安·韋斯特', 'time': '1990-12-06(美國)', 'score': '8.8'}

{'index': '19', 'image': 'http://p0.meituan.net/movie/[email protected]_220h_1e_1c', 'title': '美麗人生', 'actor': '羅伯託·貝尼尼,尼可萊塔·布拉斯基,喬治·坎塔里尼', 'time': '1997-12-20(義大利)', 'score': '9.3'}

{'index': '20', 'image': 'http://p1.meituan.net/movie/[email protected]_220h_1e_1c', 'title': '海上鋼琴師', 'actor': '蒂姆·羅斯,普路特·泰勒·文斯,比爾·努恩', 'time': '1998-10-28(義大利)', 'score': '9.2'}

{'index': '21', 'image': 'http://p1.meituan.net/movie/[email protected]_220h_1e_1c', 'title': '黑客帝國', 'actor': '基努·裡維斯,凱瑞-安·莫斯,勞倫斯·菲什伯恩', 'time': '2000-01-14', 'score': '9.0'}

{'index': '22', 'image': 'http://p0.meituan.net/movie/[email protected]_220h_1e_1c', 'title': '指環王3:王者無敵', 'actor': '伊萊賈·伍德,伊恩·麥克萊恩,麗芙·泰勒', 'time': '2004-03-15', 'score': '9.2'}

{'index': '23', 'image': 'http://p1.meituan.net/movie/[email protected]_220h_1e_1c', 'title': '加勒比海盜', 'actor': '約翰尼·德普,凱拉·奈特莉,奧蘭多·布魯姆', 'time': '2003-11-21', 'score': '8.9'}

{'index': '24', 'image': 'http://p1.meituan.net/movie/[email protected]_220h_1e_1c', 'title': '哈利·波特與魔法石', 'actor': '丹尼爾·雷德克里夫,魯伯特·格林特,艾瑪·沃森', 'time': '2002-01-26', 'score': '9.1'}

{'index': '25', 'image': 'http://p0.meituan.net/movie/[email protected]_220h_1e_1c', 'title': '蝙蝠俠:黑暗騎士', 'actor': '克里斯蒂安·貝爾,希斯·萊傑,艾倫·艾克哈特', 'time': '2008-07-18(美國)', 'score': '9.3'}

{'index': '26', 'image': 'http://p0.meituan.net/movie/[email protected]_220h_1e_1c', 'title': '楚門的世界', 'actor': '金·凱瑞,勞拉·琳妮,諾亞·艾默裡奇', 'time': '1998-06-01(美國)', 'score': '8.9'}

{'index': '27', 'image': 'http://p1.meituan.net/movie/[email protected]_220h_1e_1c', 'title': '射鵰英雄傳之東成西就', 'actor': '張國榮,梁朝偉,張學友', 'time': '1993-02-05(中國香港)', 'score': '8.9'}

{'index': '28', 'image': 'http://p1.meituan.net/movie/[email protected]_220h_1e_1c', 'title': '無間道', 'actor': '劉德華,梁朝偉,黃秋生', 'time': '2003-09-05', 'score': '9.1'}

{'index': '29', 'image': 'http://p0.meituan.net/movie/[email protected]_220h_1e_1c', 'title': '指環王2:雙塔奇兵', 'actor': '伊萊賈·伍德,伊恩·麥克萊恩,麗芙·泰勒', 'time': '2003-04-25', 'score': '9.1'}

{'index': '30', 'image': 'http://p1.meituan.net/movie/[email protected]_220h_1e_1c', 'title': '機器人總動員', 'actor': '本·貝爾特,艾麗莎·奈特,傑夫·格爾林', 'time': '2008-06-27(美國)', 'score': '9.3'}

{'index': '31', 'image': 'http://p1.meituan.net/movie/[email protected]_220h_1e_1c', 'title': '教父2', 'actor': '阿爾·帕西諾,羅伯特·德尼羅,黛安·基頓', 'time': '1974-12-12(美國)', 'score': '9.0'}

{'index': '32', 'image': 'http://p0.meituan.net/movie/[email protected]_220h_1e_1c', 'title': '活著', 'actor': '葛優,鞏俐,牛犇', 'time': '1994-05-18(法國)', 'score': '9.0'}

{'index': '33', 'image': 'http://p1.meituan.net/movie/[email protected]_220h_1e_1c', 'title': '天堂電影院', 'actor': '菲利普·努瓦雷,賽爾喬·卡斯特利托,蒂茲亞娜·羅達託', 'time': '1988-11-17(義大利)', 'score': '9.2'}

{'index': '34', 'image': 'http://p1.meituan.net/movie/[email protected]_220h_1e_1c', 'title': '拯救大兵瑞恩', 'actor': '湯姆·漢克斯,馬特·達蒙,湯姆·塞茲摩爾', 'time': '1998-07-24(美國)', 'score': '8.9'}

{'index': '35', 'image': 'http://p0.meituan.net/movie/[email protected]_220h_1e_1c', 'title': '忠犬八公的故事', 'actor': 'Forest,理查·基爾,瓊·艾倫', 'time': '2010-03-12(英國)', 'score': '9.3'}

{'index': '36', 'image': 'http://p0.meituan.net/movie/[email protected]_220h_1e_1c', 'title': '哈爾的移動城堡', 'actor': '倍賞千惠子,木村拓哉,美輪明巨集', 'time': '2004-11-20(日本)', 'score': '9.0'}

{'index': '37', 'image': 'http://p1.meituan.net/movie/[email protected]_220h_1e_1c', 'title': '東邪西毒', 'actor': '張國榮,梁朝偉,劉嘉玲', 'time': '1994-09-17', 'score': '8.9'}

{'index': '38', 'image': 'http://p0.meituan.net/movie/[email protected]_220h_1e_1c', 'title': '幽靈公主', 'actor': '松田洋治,石田百合子,田中裕子', 'time': '1997-07-12(日本)', 'score': '8.9'}

{'index': '39', 'image': 'http://p1.meituan.net/movie/[email protected]_220h_1e_1c', 'title': '盜夢空間', 'actor': '萊昂納多·迪卡普里奧,渡邊謙,約瑟夫·高登-萊維特', 'time': '2010-09-01', 'score': '9.2'}

{'index': '40', 'image': 'http://p1.meituan.net/movie/[email protected]_220h_1e_1c', 'title': '搏擊俱樂部', 'actor': '愛德華·諾頓,布拉德·皮特,海倫娜·伯翰·卡特', 'time': '1999-10-15(美國)', 'score': '8.8'}

{'index': '41', 'image': 'http://p1.meituan.net/movie/[email protected]_220h_1e_1c', 'title': '瘋狂原始人', 'actor': '尼古拉斯·凱奇,艾瑪·斯通,瑞恩·雷諾茲', 'time': '2013-04-20', 'score': '9.5'}

{'index': '42', 'image': 'http://p1.meituan.net/movie/[email protected]_220h_1e_1c', 'title': '阿凡達', 'actor': '薩姆·沃辛頓,佐伊·索爾達娜,米歇爾·羅德里格茲', 'time': '2010-01-04', 'score': '9.0'}

{'index': '43', 'image': 'http://p1.meituan.net/movie/[email protected]_220h_1e_1c', 'title': 'V字仇殺隊', 'actor': '娜塔莉·波特曼,雨果·維文,斯蒂芬·瑞', 'time': '2006-03-17(美國)', 'score': '8.8'}

{'index': '44', 'image': 'http://p0.meituan.net/movie/[email protected]_220h_1e_1c', 'title': '風之谷', 'actor': '島本須美,永井一郎,阪本千夏', 'time': '1992', 'score': '8.9'}

{'index': '45', 'image': 'http://p0.meituan.net/movie/[email protected]_220h_1e_1c', 'title': '放牛班的春天', 'actor': '熱拉爾·朱尼奧,尚-巴堤·莫里耶,瑪麗·布奈爾', 'time': '2004-10-16', 'score': '8.9'}

{'index': '46', 'image': 'http://p1.meituan.net/movie/[email protected]_220h_1e_1c', 'title': '當幸福來敲門', 'actor': '威爾·史密斯,賈登·史密斯,坦迪·牛頓', 'time': '2008-01-17', 'score': '8.9'}

{'index': '47', 'image': 'http://p0.meituan.net/movie/[email protected]_220h_1e_1c', 'title': '十二怒漢', 'actor': '亨利·方達,李·科布,馬丁·鮑爾薩姆', 'time': '1957-04-13(美國)', 'score': '9.1'}

{'index': '48', 'image': 'http://p1.meituan.net/movie/[email protected]_220h_1e_1c', 'title': '速度與激情5', 'actor': '範·迪塞爾,保羅·沃克,道恩·強森', 'time': '2011-05-12', 'score': '9.2'}

{'index': '49', 'image': 'http://p1.meituan.net/movie/[email protected]_220h_1e_1c', 'title': '馴龍高手', 'actor': '傑伊·巴魯切爾,傑拉德·巴特勒,亞美莉卡·費雷拉', 'time': '2010-05-14', 'score': '9.0'}

{'index': '50', 'image': 'http://p0.meituan.net/movie/[email protected]_220h_1e_1c', 'title': '神偷奶爸', 'actor': '史蒂夫·卡瑞爾,傑森·席格爾,拉塞爾·布蘭德', 'time': '2010-07-09(美國)', 'score': '9.0'}

{'index': '51', 'image': 'http://p1.meituan.net/movie/[email protected]_220h_1e_1c', 'title': '勇敢的心', 'actor': '梅爾·吉布森,蘇菲·瑪索,帕特里克·麥高漢', 'time': '1995-05-24(美國)', 'score': '8.8'}

{'index': '52', 'image': 'http://p1.meituan.net/movie/[email protected]_220h_1e_1c', 'title': '黑客帝國3:矩陣革命', 'actor': '基努·裡維斯,雨果·維文,凱瑞-安·莫斯', 'time': '2003-11-05', 'score': '8.8'}

{'index': '53', 'image': 'http://p0.meituan.net/movie/[email protected]_220h_1e_1c', 'title': '三傻大鬧寶萊塢', 'actor': '阿米爾·汗,黃渤,卡琳娜·卡普爾', 'time': '2011-12-08', 'score': '9.1'}

{'index': '54', 'image': 'http://p0.meituan.net/movie/[email protected]_220h_1e_1c', 'title': '斷背山', 'actor': '希斯·萊傑,傑克·吉倫哈爾,米歇爾·威廉姆斯', 'time': '2006-01-13(美國)', 'score': '9.0'}

{'index': '55', 'image': 'http://p0.meituan.net/movie/[email protected]_220h_1e_1c', 'title': '聞香識女人', 'actor': '阿爾·帕西諾,克里斯·奧唐納,加布裡埃爾·安瓦爾', 'time': '1992-12-23(美國)', 'score': '8.8'}

{'index': '56', 'image': 'http://p0.meituan.net/movie/[email protected]_220h_1e_1c', 'title': '飛屋環遊記', 'actor': '愛德華·阿斯納,喬丹·長井,鮑勃·彼德森', 'time': '2009-08-04', 'score': '8.9'}

{'index': '57', 'image': 'http://p1.meituan.net/movie/[email protected]_220h_1e_1c', 'title': '飛越瘋人院', 'actor': '傑克·尼科爾森,路易絲·弗萊徹,威爾·薩姆森', 'time': '1975-11-19(美國)', 'score': '8.8'}

{'index': '58', 'image': 'http://p1.meituan.net/movie/0b507[email protected]_220h_1e_1c', 'title': '鬼子來了', 'actor': '姜文,姜巨集波,陳強', 'time': '2000-05-12(法國戛納)', 'score': '8.9'}

{'index': '59', 'image': 'http://p0.meituan.net/movie/[email protected]_220h_1e_1c', 'title': '少年派的奇幻漂流', 'actor': '蘇拉·沙瑪,伊爾凡·可汗,塔布', 'time': '2012-11-22', 'score': '9.1'}

{'index': '60', 'image': 'http://p1.meituan.net/movie/[email protected]_220h_1e_1c', 'title': '致命魔術', 'actor': '休·傑克曼,克里斯蒂安·貝爾,邁克爾·凱恩', 'time': '2006-10-20(美國)', 'score': '8.8'}

{'index': '61', 'image': 'http://p1.meituan.net/movie/[email protected]_220h_1e_1c', 'title': '美國往事', 'actor': '羅伯特·德尼羅,詹姆斯·伍茲,伊麗莎白·麥戈文', 'time': '1984-02-17(美國)', 'score': '9.1'}

{'index': '62', 'image': 'http://p0.meituan.net/movie/[email protected]_220h_1e_1c', 'title': '怦然心動', 'actor': '瑪德琳·卡羅爾,卡蘭·麥克奧利菲,艾丹·奎因', 'time': '2010-08-06(美國)', 'score': '8.9'}

{'index': '63', 'image': 'http://p0.meituan.net/movie/[email protected]_220h_1e_1c', 'title': '美麗心靈', 'actor': '羅素·克勞,詹妮弗·康納利,艾德·哈里斯', 'time': '2001-12-21(美國)', 'score': '8.8'}

{'index': '64', 'image': 'http://p0.meituan.net/movie/[email protected]_220h_1e_1c', 'title': '夜訪吸血鬼', 'actor': '湯姆·克魯斯,布拉德·皮特,克斯汀·鄧斯特', 'time': '1994-11-11(美國)', 'score': '8.8'}

{'index': '65', 'image': 'http://p0.meituan.net/movie/[email protected]_220h_1e_1c', 'title': '大話西遊之月光寶盒', 'actor': '周星馳,莫文蔚,吳孟達', 'time': '2014-10-24', 'score': '9.6'}

{'index': '66', 'image': 'http://p1.meituan.net/movie/[email protected]_220h_1e_1c', 'title': '蝙蝠俠:黑暗騎士崛起', 'actor': '克里斯蒂安·貝爾,邁克爾·凱恩,加里·奧德曼', 'time': '2012-08-27', 'score': '8.9'}

{'index': '67', 'image': 'http://p1.meituan.net/movie/[email protected]_220h_1e_1c', 'title': '鋼琴家', 'actor': '艾德里安·布洛迪,艾米莉婭·福克斯,米哈烏·熱布羅夫斯基', 'time': '2002-09-25(法國)', 'score': '8.8'}

{'index': '68', 'image': 'http://p0.meituan.net/movie/[email protected]_220h_1e_1c', 'title': '無敵破壞王', 'actor': '約翰·C·賴利,薩拉·西爾弗曼,簡·林奇', 'time': '2012-11-06', 'score': '9.0'}

{'index': '69', 'image': 'http://p0.meituan.net/movie/[email protected]_220h_1e_1c', 'title': '本傑明·巴頓奇事', 'actor': '布拉德·皮特,凱特·布蘭切特,塔拉吉·P·漢森', 'time': '2008-12-25(美國)', 'score': '8.8'}

{'index': '70', 'image': 'http://p1.meituan.net/movie/[email protected]_220h_1e_1c', 'title': '倩女幽魂', 'actor': '張國榮,王祖賢,午馬', 'time': '2011-04-30', 'score': '9.1'}

{'index': '71', 'image': 'http://p1.meituan.net/movie/[email protected]_220h_1e_1c', 'title': '哈利·波特與死亡聖器(下)', 'actor': '丹尼爾·雷德克里夫,魯伯特·格林特,艾瑪·沃森', 'time': '2011-08-04', 'score': '9.0'}

{'index': '72', 'image': 'http://p1.meituan.net/movie/[email protected]_220h_1e_1c', 'title': '初戀這件小事', 'actor': '馬里奧·毛瑞爾,平採娜·樂維瑟派布恩,阿查拉那·阿瑞亞衛考', 'time': '2012-06-05', 'score': '8.8'}

{'index': '73', 'image': 'http://p0.meituan.net/movie/[email protected]_220h_1e_1c', 'title': '新龍門客棧', 'actor': '張曼玉,梁家輝,甄子丹', 'time': '2012-02-24', 'score': '8.8'}

{'index': '74', 'image': 'http://p1.meituan.net/movie/[email protected]_220h_1e_1c', 'title': '甜蜜蜜', 'actor': '黎明,張曼玉,曾志偉', 'time': '2015-02-13', 'score': '9.2'}

{'index': '75', 'image': 'http://p0.meituan.net/movie/[email protected]_220h_1e_1c', 'title': '觸不可及', 'actor': '弗朗索瓦·克魯塞,奧瑪·希,安娜·勒尼', 'time': '2011-11-02(法國)', 'score': '9.1'}

{'index': '76', 'image': 'http://p0.meituan.net/movie/40/[email protected]_220h_1e_1c', 'title': '熔爐', 'actor': '孔劉,鄭有美,金智英', 'time': '2011-09-22(韓國)', 'score': '8.8'}

{'index': '77', 'image': 'http://p1.meituan.net/movie/[email protected]_220h_1e_1c', 'title': '大話西遊之大聖娶親', 'actor': '周星馳,朱茵,莫文蔚', 'time': '2014-10-24', 'score': '8.8'}

{'index': '78', 'image': 'http://p1.meituan.net/movie/[email protected]_220h_1e_1c', 'title': '小鞋子', 'actor': '默罕默德·阿米爾·納吉,Kamal Mirkarimi,Behzad Rafi', 'time': '1999-01-22(美國)', 'score': '9.1'}

{'index': '79', 'image': 'http://p0.meituan.net/movie/[email protected]_220h_1e_1c', 'title': '素媛', 'actor': '李來,薛耿求,嚴志媛', 'time': '2013-10-02(韓國)', 'score': '9.1'}

{'index': '80', 'image': 'http://p0.meituan.net/movie/[email protected]_220h_1e_1c', 'title': '螢火之森', 'actor': '內山昂輝,佐倉綾音,後藤弘樹', 'time': '2011-09-17(日本)', 'score': '9.0'}

{'index': '81', 'image': 'http://p1.meituan.net/movie/[email protected]_220h_1e_1c', 'title': '穿條紋睡衣的男孩', 'actor': '阿薩·巴特菲爾德,維拉·法米加,大衛·休里斯', 'time': '2008-09-12(英國)', 'score': '9.0'}

{'index': '82', 'image': 'http://p0.meituan.net/movie/[email protected]_220h_1e_1c', 'title': '竊聽風暴', 'actor': '烏爾裡希·穆埃,塞巴斯蒂安·科赫,馬蒂娜·格德克', 'time': '2006-03-23(德國)', 'score': '9.0'}

{'index': '83', 'image': 'http://p1.meituan.net/movie/[email protected]_220h_1e_1c', 'title': '地球上的星星', 'actor': '塔奈·切赫達,阿米爾·汗,達席爾·薩法瑞', 'time': '2007-12-21(印度)', 'score': '8.8'}

{'index': '84', 'image': 'http://p0.meituan.net/movie/[email protected]_220h_1e_1c', 'title': '時空戀旅人', 'actor': '瑞秋·麥克亞當斯,多姆納爾·格里森,比爾·奈伊', 'time': '2013-09-04(英國)', 'score': '8.9'}

{'index': '85', 'image': 'http://p0.meituan.net/movie/[email protected]_220h_1e_1c', 'title': '借東西的小人阿莉埃蒂', 'actor': '志田未來,神木隆之介,大竹忍', 'time': '2010-07-17(日本)', 'score': '8.8'}

{'index': '86', 'image': 'http://p1.meituan.net/movie/[email protected]_220h_1e_1c', 'title': '7號房的禮物', 'actor': '柳承龍,鄭鎮榮,樸信惠', 'time': '2013-01-23(韓國)', 'score': '8.9'}

{'index': '87', 'image': 'http://p0.meituan.net/movie/[email protected]_220h_1e_1c', 'title': '海豚灣', 'actor': '裡克·奧巴瑞,路易·西霍尤斯,哈迪·瓊斯', 'time': '2009-07-31(美國)', 'score': '8.9'}

{'index': '88', 'image': 'http://p0.meituan.net/movie/[email protected]_220h_1e_1c', 'title': '恐怖直播', 'actor': '河正宇,李璟榮,李大為', 'time': '2013-07-31(韓國)', 'score': '8.8'}

{'index': '89', 'image': 'http://p1.meituan.net/movie/[email protected]_220h_1e_1c', 'title': '忠犬八公物語', 'actor': '仲代達矢,春川真澄,井川比佐志', 'time': '1987-08-01(日本)', 'score': '9.0'}

{'index': '90', 'image': 'http://p1.meituan.net/movie/[email protected]_220h_1e_1c', 'title': '上帝之城', 'actor': '亞歷桑德雷·羅德里格斯,艾莉絲·布拉加,萊安德魯·菲爾米諾', 'time': '2002-08-30(巴西)', 'score': '8.9'}

{'index': '91', 'image': 'http://p0.meituan.net/movie/[email protected]_220h_1e_1c', 'title': '辯護人', 'actor': '宋康昊,郭度沅,吳達洙', 'time': '2013-12-18(韓國)', 'score': '8.8'}

{'index': '92', 'image': 'http://p1.meituan.net/movie/[email protected]_220h_1e_1c', 'title': '七武士', 'actor': '三船敏郎,志村喬,千秋實', 'time': '1954-04-26(日本)', 'score': '9.1'}

{'index': '93', 'image': 'http://p1.meituan.net/movie/[email protected]_220h_1e_1c', 'title': '完美的世界', 'actor': '凱文·科斯特納,克林特·伊斯特伍德,T·J·勞瑟', 'time': '1993-11-24(美國)', 'score': '8.9'}

{'index': '94', 'image': 'http://p1.meituan.net/movie/[email protected]_220h_1e_1c', 'title': '一一', 'actor': '吳念真,金燕玲,李凱莉', 'time': '2000-09-20(法國)', 'score': '8.9'}

{'index': '95', 'image': 'http://p0.meituan.net/movie/[email protected]_220h_1e_1c', 'title': '海洋', 'actor': '雅克·貝漢,姜文,蘭斯洛特·貝漢', 'time': '2011-08-12', 'score': '9.0'}

{'index': '96', 'image': 'http://p1.meituan.net/movie/[email protected]_220h_1e_1c', 'title': '愛·回家', 'actor': '俞承豪,金藝芬,童孝熙', 'time': '2002-04-05(韓國)', 'score': '9.0'}

{'index': '97', 'image': 'http://p1.meituan.net/movie/[email protected]_220h_1e_1c', 'title': '黃金三鏢客', 'actor': '克林特·伊斯特伍德,李·範·克里夫,埃裡·瓦拉赫', 'time': '1966-12-23(義大利)', 'score': '8.9'}

{'index': '98', 'image': 'http://p1.meituan.net/movie/[email protected]_220h_1e_1c', 'title': '我愛你', 'actor': '宋在浩,李順才,尹秀晶', 'time': '2011-02-17(韓國)', 'score': '9.0'}

{'index': '99', 'image': 'http://p1.meituan.net/movie/[email protected]_220h_1e_1c', 'title': '遷徙的鳥', 'actor': '雅克·貝漢,Philippe Labro', 'time': '2001-12-12(法國)', 'score': '9.1'}

{'index': '100', 'image': 'http://p0.meituan.net/movie/[email protected]_220h_1e_1c', 'title': '英雄本色', 'actor': '狄龍,張國榮,周潤發', 'time': '2017-11-17', 'score': '9.2'}

一些圖片展示:

                 

相關推薦

貓眼電影爬蟲參考書寫

import json   #json會將字典型別轉化為字串型別,利於儲存 import requests #呼叫requests庫發起get請求 import socket   #與urlerror型別有關的庫,與url庫有關,本例沒有用到。 from requests i

「Python3爬蟲貓眼電影爬蟲破解字符集反爬

一、頁面分析 首先開啟 貓眼電影 ,然後點選一個正在熱播的電影(比如: 毒液 )。開啟開發者工具,點選左上角的箭頭,然後用滑鼠點選網頁上的票價,可以看到原始碼中顯示的不是數字,而是某些根本看不懂的字元,這是因為使用了font-face定義字符集,並通過unicode去對映展示,所以我們在網頁上看

python爬蟲爬取淘寶,羅蘭電鋼琴和雅馬哈電鋼琴參考

淘寶網上有很多商品,這些商品的資訊就是一個很不錯的資料來源,於是我參考資料後依葫蘆畫瓢弄了一個爬蟲程式來爬一爬夢寐以求的電鋼琴。 宣告一下:電鋼琴和電子琴是兩種不同的琴,我在正則表示式裡面設定了只要含有電子琴這個詞語一律不抓取。同時淘寶商家的很多商品欄都是重複的,不加篩選前

用pyquery 初步改寫慶才的 抓取貓眼電影排行正在更新特意置頂,提醒自己更新

items parse rac info sco ber windows time ont 目前正在學Python爬蟲,正在讀崔慶才的《Python3網絡爬蟲開發實戰》,之前學習正則表達式,但是由於太難,最後放棄了(學渣的眼淚。。。。),在這本書上的抓取貓眼電影排行上,

【學習】01 貓眼電影爬蟲-最受期待榜榜單

參考來源: 專案地址: 實現功能: 使用requests庫爬取榜單分析第1步獲取的HTML資料,使用正則表示式過濾採集需要的資訊欄位,使用生成器儲存欄位資料,加上re.S引數連換行符一起輸出儲

零基礎掌握百度地圖興趣點獲取POI爬蟲python語言爬取基礎篇

region map 基礎 輸入 filter put mark page -h 實現目的:爬取昆明市範圍內的全部中學數據,包括名稱、坐標。 先進入基礎篇,本篇主要講原理方面,並實現步驟分解,為python代碼編寫打基礎。 因為是0基礎開始,所以講得會比較詳細。 如實現目的

服務器配置參考how2j教學網站,很不錯,親測可行

最快 .com jdk 參考 tom src 版本 alt 系統選擇 點擊訪問阿裏雲官網地址:http://aliyun.com/ 沒有賬號的點擊aliyun右上角免費註冊,註冊過程大同小異略過不表。 鏡像選擇公共鏡像,其中操作系統選

遞推 整數 Children’s Queue hdu1297

code ted des stand hdu i++ tdi int total Children’s Queue Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Oth

單調隊列 —— 滑動窗口滾動最

簡單 保持 工作 影響 區間最值 因此 for 開始 += 一道經典的單調隊列題目——[洛谷P1886 滑動窗口]。(下文開始只討論求滾動的最大值) 暴力解法是O(n^2)的,對於每一個起點,搜一遍長度為k的子序列,求得最值—&mdas

算法學習——貪心算法之刪數字求最

size 算法學習 末尾 最小 條件 求最大值 sca 位數 技術 算法描述 在給定的n位數字,刪除其中的k位數字( k < n),使得最後的n-k為數字為最大值(原次序不變) 算法思路 考慮到是要移出數字,我們使用鏈表設計此算法較為方便,鏈表可以直接移出某個位

爬蟲Py2和Py3區別

什麼是字元編碼? 計算機裡的所有資料,本質都是二進位制 二進位制 0b01100001 十進位制 97 通過 ASCII編碼表 對應字元 ‘a’ 簡體中文: gb2312、gbk、gb18030, cp936 ,code page 936,一個漢字2個位元組 繁體中文: Big5

python 特別簡單的一個小爬蟲看著玩吧

  環境:python3.5    bs4   lxml這是需要安裝的   使用urllib模組來訪問頁面 bs4解析頁面,存到*.txt檔案中 #-*- coding:utf-8 -*- import urllib.reques

LeetCode:437. Path Sum III查詢最

ou are given a binary tree in which each node contains an integer value.Find the number of paths that sum to a given value. The path does not need t

poj3281dinic最

思路就看這篇部落格吧,沒啥好寫的 題意 n只牛,f種食物,d種飲料,每隻牛有喜歡的飲料和食物,問最多能滿足多少隻牛 輸入第一行 n,f,d 第二行 第1頭牛喜歡的食物的種類數,喜歡的飲料的種類數 然後分別是哪幾種食物,哪幾種飲料 第三行 第2頭牛 。。。。 #incl

qluoj第一次講課筆記shawn zhou

第一次聽大佬線上講題,雖然講的是一些基礎,但是從這裡就深深的感受到了自己和大佬的差距非常之大 如果想填補差距,那就只能一直不斷的學習! 下面是我對這次講課的基本整理(是我聽講的時候寫的,感覺會有點用的吧233) 1. (1 容器 多種多樣的資料結構 (2 迭代器 用來遍歷容器的工具 (3

Python爬蟲urllib.request和BeautifulSoup

學習urllib.request和beautifulsoup,並從dribbble和behance上爬取了一些圖片,記錄一下。 一、urllib.request 1. url的構造 構造請求的url遇到的主要問題是如何翻頁的問題,dribbble網站是下拉到底自動載入下

hadoop 2.8.0在centos7 搭建 初入資料

第一步: ①準備三臺虛擬機器   使用               VMware Workstation工具  配置好使用工具CRT 連線    ②更改主機名  192.168.220.128  s1 192.168.220.128  s2 192.

楊超越微博爬蟲微博文字+圖片粉絲資訊待續

# -*- coding: utf-8 -*- import urllib.request import json import time import random from urllib.request import urlopen from bs4 import BeautifulSoup im

爬蟲常用程式碼--基礎爬蟲含代理和日誌

import logging import sys import urllib.request import random import ssl # 全域性取消安全證書驗證,如果沒有這一句會報錯 ssl._create_default_https_conte

UVA 1345 Jamie's Contact Groups二分+最

題意:有n個人,m個組,給出每個人想要去的分組,每個人只能去一個組,問人數最多的那個組最少有多少個人 二分一下每個組的可以放的人數,然後每個組與匯點相連,容量為二分的值,源點與每個人相連,容量為1,每個人與想去的組連邊,容量為1,跑一邊最大流判斷即可 #include