題外話+python爬去 資料
阿新 • • 發佈:2018-12-28
大家好啊,最近自己在做一個屬於自己的部落格網站(已經徹底辭職回家養老了,明年再戰)在家裡 瑣事也很多, 加上自己 一回到家就懶了(主要是家裡冷啊! 廣東十幾度,老家幾度,躲在被窩瑟瑟發抖,)
由於在建部落格,也會遇到一些問題,我目前的部落格發展就是 在建立部落格的過程中, 把遇到的問題及解決方法 給說明出來,python 呢, 我也幾周沒玩了,,估計又忘記了(哎)好煩
我看了一下, 部落格最新文章是講python 的 爬去圖片的
我今天說說爬去豆瓣資料寫入(我這裡寫入 txt)
爬取豆瓣電影首頁資料
需要注意反扒問題,需要在header中加入referer
import requests
import json
import re
需要使用這三個庫檔案
這裡需要注意一個地方 (url 地址改變了 我這裡使用瀏覽器切換為手機版,)
找到資料
這裡有三個資料 ,對應一下
大家發現規律了沒???
就是這樣的 ,然後我們檢視原始碼找一下結構
接下來把他們的請求連線拿下來
Request URL: https://m.douban.com/rexxar/api/v2/subject_collection/ movie_free_stream/items?os=ios&callback=jsonp2&start=0 Request URL: https://m.douban.com/rexxar/api/v2/subject_collection/ movie_showing/items?os=ios&callback=jsonp1&start=0&count=8&loc_id=108288&_=1545982393545
這裡的url 和我們id 一樣啊???
不管了 來個 正則
reg = r'<section id="(.*?)">'
index_Url = "https://m.douban.com/movie/" type = requests.get(index_Url).text # print(type) #獲取整個html頁面 reg = r'<section id="(.*?)">' section = re.findall(reg, type, re.S | re.M) print(section)
報錯 我們說了 豆瓣反扒
headers = { 'Referer': 'https://m.douban.com/movie/', 'User-Agent': 'Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_1 like Mac OS X) AppleWebKit/603.1.30 (KHTML, like Gecko) Version/10.0 Mobile/14E304 Safari/602.1' } params = { 'os': 'ios', 'start': '0', 'count': '8', 'loc_id': '108288' }
再來看一下
把這些引數都加上
再試試
index_Url = "https://m.douban.com/movie/" headers = { 'Referer': 'https://m.douban.com/movie/', 'User-Agent': 'Mozilla/5.0 (iPhone; CPU iPhone OS 10_3_1 like Mac OS X) AppleWebKit/603.1.30 (KHTML, like Gecko) Version/10.0 Mobile/14E304 Safari/602.1' } params = { 'os': 'ios', 'start': '0', 'count': '8', 'loc_id': '108288' } type = requests.get(index_Url).text # print(type) #獲取整個html頁面 reg = r'<section id="(.*?)">' section = re.findall(reg, type, re.S | re.M) print(section)
結果
['movie_showing', 'movie_free_stream', 'movie_latest']
再來
print("正在爬取" + section[0] + "的電影,請稍候...") data_url = "https://m.douban.com/rexxar/api/v2/subject_collection/" + section[0] + "/items?" list_data = requests.get(data_url, headers=headers, params=params).json() # print(list_data) #得出資料
你這裡可以弄個for 迴圈 迴圈 三次 呼叫 然後就可以 得到三類資料
正在爬取movie_showing的電影,請稍候... {'count': 8, 'subject_collection': {'subject_count': 0, 'name': '影院熱映', 'short_name': '', 'collect_count': 0, 'url': 'https://m.douban.com/app_topic/movie_showing', 'description': '', 'type_icon_bg_text': '', 'uri': 'douban://douban.com/subject_collection/movie_showing', 'cover_url': '', 'updated_at': None, 'icon_fg_image': '', 'type_text': '', 'show_header_mask': False, 'mini_program_name': '', 'id': 'movie_showing', 'medium_name': '', 'sharing_url': 'https://www.douban.com/doubanapp/dispatch?uri=/subject_collection/movie_showing/', 'mini_program_page': '', 'display': {'layout': 'grid'}, 'background_color_scheme': {'is_dark': True, 'primary_color_light': '6f6672', 'secondary_color': 'f8f4f9', 'primary_color_dark': '4a444c'}}, 'subject_collection_items': [{'original_price': None, 'rating': {'count': 107906, 'max': 10, 'value': 8.8}, 'cover': {'url': 'https://img3.doubanio.com/view/photo/m_ratio_poster/public/p2542867516.jpg', 'width': 2200, 'shape': 'rectangle', 'height': 3123}, 'actions': [], 'year': '2018', 'card_subtitle': '2018 / 美國 / 動作 科幻 動畫 / 鮑勃·佩爾西凱蒂 彼得·拉姆齊 羅德尼·羅斯曼 / 沙梅克·摩爾 傑克·約翰遜', 'id': '26374197', 'title': '蜘蛛俠:平行宇宙', 'comments': [{'comment': '誰能想到索尼居然在2018年的最後一個月用一部超級英雄動畫挑戰了迪士尼在動畫獎項上的霸權?\n雖然主題上還是老調重彈,但動畫在內容和形式上的選...-- 我是所有人的BFF', 'rating': {'count': 1, 'max': 5, 'star_count': 4, 'value': 4}, 'sharing_url': 'https://www.douban.com/doubanapp/dispatch?uri=/movie/26374197/interest/1530763193', 'is_voted': False, 'uri': 'douban://douban.com/movie/26374197/interest/1530763193', 'platforms': [], 'vote_count': 2795, 'create_time': '2018-12-02 17:20:57', 'status': 'done', 'user': {'loc': {'id': '128097', 'name': 'Melbourne', 'uid': 'melbourne'}, 'kind': 'user', 'followed': False, 'name': '我是所有人的BFF', 'in_blacklist': False, 'url': 'https://www.douban.com/people/138907653/', 'remark': '', 'uri': 'douban://douban.com/user/138907653', 'avatar': 'https://img3.doubanio.com/icon/up138907653-3.jpg', 'type': 'user', 'id': '138907653', 'uid': '138907653'}, 'done_index': 531, 'id': '1530763193'}], 'label': None, 'actors': ['沙梅克·摩爾', '傑克·約翰遜', '海莉·斯坦菲爾德'], 'interest': None, 'type': 'movie', 'forum_info': None, 'description': '', 'has_linewatch': False, 'price': None, 'date': None, 'info': '美國 / 動作 科幻 動畫 / 鮑勃·佩爾西凱蒂 / 沙梅克·摩爾 傑克·約翰遜', 'rating_data': {'stats': [0.0019222297865524008, 0.007728965600096112, 0.0968723719514637, 0.38060149773737534, 0.5128749349245124], 'type_ranks': [{'type': '動畫片', 'rank': 0.94}, {'type': '科幻片', 'rank': 0.98}]}, 'url': 'https://www.douban.com/doubanapp/dispatch/movie/26374197', 'release_date': '12.21', 'original_title': 'Spider-Man: Into the Spider-Verse', 'uri': 'douban://douban.com/movie/26374197', 'subtype': '', 'directors': ['鮑勃·佩爾西凱蒂'], 'reviewer_name': '', 'null_rating_reason': ''}, {'original_price': None, 'rating': None, 'actions': [], 'year': '2018', 'card_subtitle': '2018 / 中國大陸 / 劇情 喜劇 / 於淼 / 佟大為 馬麗', 'id': '30377703', 'title': '來電狂響', 'label': None, 'actors': ['佟大為', '馬麗', '霍思燕'], 'interest': None, 'type': 'movie', 'forum_info': None, 'description': '', 'has_linewatch': False, 'price': None, 'date': None, 'info': '中國大陸 / 劇情 喜劇 / 於淼 / 佟大為 馬麗', 'url': 'https://www.douban.com/doubanapp/dispatch/movie/30377703', 'release_date': '12.28', 'cover': {'url': 'https://img1.doubanio.com/view/photo/m_ratio_poster/public/p2542268337.jpg', 'width': 800, 'shape': 'rectangle', 'height': 1120}, 'uri': 'douban://douban.com/movie/30377703', 'subtype': '', 'directors': ['於淼'], 'reviewer_name': '', 'null_rating_reason': '暫無評分'}, {'original_price': None, 'rating': {'count': 339248, 'max': 10, 'value': 7.9}, 'actions': [], 'year': '2018', 'card_subtitle': '2018 / 美國 澳大利亞 / 動作 奇幻 冒險 / 溫子仁 / 傑森·莫瑪 艾梅柏·希爾德', 'id': '3878007', 'title': '海王', 'label': None, 'actors': ['傑森·莫瑪', '艾梅柏·希爾德', '威廉·達福'], 'interest': None, 'type': 'movie', 'forum_info': None, 'description': '', 'has_linewatch': False, 'price': None, 'date': None, 'info': '美國 澳大利亞 / 動作 奇幻 冒險 / 溫子仁 / 傑森·莫瑪 艾梅柏·希爾德', 'url': 'https://www.douban.com/doubanapp/dispatch/movie/3878007', 'release_date': '12.07', 'cover': {'url': 'https://img1.doubanio.com/view/photo/m_ratio_poster/public/p2541280047.jpg', 'width': 6750, 'shape': 'rectangle', 'height': 10000}, 'uri': 'douban://douban.com/movie/3878007', 'subtype': '', 'directors': ['溫子仁'], 'reviewer_name': '', 'null_rating_reason': ''}, {'original_price': None, 'rating': {'count': 483, 'max': 10, 'value': 6.7}, 'actions': [], 'year': '2018', 'card_subtitle': '2018 / 印度 / 喜劇 動作 冒險 / 維賈伊·克利須那·阿查裡雅 / 阿米爾·汗 卡特莉娜·卡芙', 'id': '27019982', 'title': '印度暴徒', 'label': None, 'actors': ['阿米爾·汗', '卡特莉娜·卡芙', '阿米達普·巴強'], 'interest': None, 'type': 'movie', 'forum_info': None, 'description': '', 'has_linewatch': False, 'price': None, 'date': None, 'info': '印度 / 喜劇 動作 冒險 / 維賈伊·克利須那·阿查裡雅 / 阿米爾·汗 卡特莉娜·卡芙', 'url': 'https://www.douban.com/doubanapp/dispatch/movie/27019982', 'release_date': '12.28', 'cover': {'url': 'https://img3.doubanio.com/view/photo/m_ratio_poster/public/p2541754700.jpg', 'width': 5906, 'shape': 'rectangle', 'height': 8268}, 'uri': 'douban://douban.com/movie/27019982', 'subtype': '', 'directors': ['維賈伊·克利須那·阿查裡雅'], 'reviewer_name': '', 'null_rating_reason': ''}, {'original_price': None, 'rating': {'count': 1403, 'max': 10, 'value': 7.0}, 'actions': [], 'year': '2018', 'card_subtitle': '2018 / 美國 / 劇情 / 布蘭登·坎普 / 加布裡埃爾·貝特曼 達比·坎普', 'id': '26895438', 'title': '神探狗笨吉', 'label': None, 'actors': ['加布裡埃爾·貝特曼', '達比·坎普', '基拉·桑切斯'], 'interest': None, 'type': 'movie', 'forum_info': None, 'description': '', 'has_linewatch': False, 'price': None, 'date': None, 'info': '美國 / 劇情 / 布蘭登·坎普 / 加布裡埃爾·貝特曼 達比·坎普', 'url': 'https://www.douban.com/doubanapp/dispatch/movie/26895438', 'release_date': '12.28', 'cover': {'url': 'https://img3.doubanio.com/view/photo/m_ratio_poster/public/p2541725145.jpg', 'width': 714, 'shape': 'rectangle', 'height': 1000}, 'uri': 'douban://douban.com/movie/26895438', 'subtype': '', 'directors': ['布蘭登·坎普'], 'reviewer_name': '', 'null_rating_reason': ''}, {'original_price': None, 'rating': {'count': 10150, 'max': 10, 'value': 4.0}, 'actions': [], 'year': '2018', 'card_subtitle': '2018 / 中國大陸 / 喜劇 奇幻 / 肖央 / 肖央 杜鵑', 'id': '26994789', 'title': '天氣預爆', 'label': None, 'actors': ['肖央', '杜鵑', '常遠'], 'interest': None, 'type': 'movie', 'forum_info': None, 'description': '', 'has_linewatch': False, 'price': None, 'date': None, 'info': '中國大陸 / 喜劇 奇幻 / 肖央 / 肖央 杜鵑', 'url': 'https://www.douban.com/doubanapp/dispatch/movie/26994789', 'release_date': '12.21', 'cover': {'url': 'https://img3.doubanio.com/view/photo/m_ratio_poster/public/p2543353290.jpg', 'width': 2142, 'shape': 'rectangle', 'height': 3000}, 'uri': 'douban://douban.com/movie/26994789', 'subtype': '', 'directors': ['肖央'], 'reviewer_name': '', 'null_rating_reason': ''}, {'original_price': None, 'rating': {'count': 5088, 'max': 10, 'value': 5.8}, 'actions': [], 'year': '2018', 'card_subtitle': '2018 / 中國大陸 香港 / 動作 / 袁和平 / 張晉 戴夫·巴蒂斯塔', 'id': '26796664', 'title': '葉問外傳:張天志', 'label': None, 'actors': ['張晉', '戴夫·巴蒂斯塔', '柳巖'], 'interest': None, 'type': 'movie', 'forum_info': None, 'description': '', 'has_linewatch': False, 'price': None, 'date': None, 'info': '中國大陸 香港 / 動作 / 袁和平 / 張晉 戴夫·巴蒂斯塔', 'url': 'https://www.douban.com/doubanapp/dispatch/movie/26796664', 'release_date': '12.21', 'cover': {'url': 'https://img3.doubanio.com/view/photo/m_ratio_poster/public/p2542380253.jpg', 'width': 1080, 'shape': 'rectangle', 'height': 1512}, 'uri': 'douban://douban.com/movie/26796664', 'subtype': '', 'directors': ['袁和平'], 'reviewer_name': '', 'null_rating_reason': ''}, {'original_price': None, 'rating': {'count': 594320, 'max': 10, 'value': 9.1}, 'actions': [], 'year': '1988', 'card_subtitle': '1988 / 日本 / 動畫 奇幻 冒險 / 宮崎駿 / 日高法子 阪本千夏', 'id': '1291560', 'title': '龍貓', 'label': None, 'actors': ['日高法子', '阪本千夏', '糸井重裡'], 'interest': None, 'type': 'movie', 'forum_info': None, 'description': '', 'has_linewatch': False, 'price': None, 'date': None, 'info': '日本 / 動畫 奇幻 冒險 / 宮崎駿 / 日高法子 阪本千夏', 'url': 'https://www.douban.com/doubanapp/dispatch/movie/1291560', 'release_date': '12.14', 'cover': {'url': 'https://img3.doubanio.com/view/photo/m_ratio_poster/public/p2540924496.jpg', 'width': 1600, 'shape': 'rectangle', 'height': 2358}, 'uri': 'douban://douban.com/movie/1291560', 'subtype': '', 'directors': ['宮崎駿'], 'reviewer_name': '', 'null_rating_reason': ''}], 'total': 41, 'start': 0} 爬取完畢 ['movie_showing', 'movie_free_stream', 'movie_latest'] 正在爬取movie_free_stream的電影,請稍候... {'count': 8, 'subject_collection': {'subject_count': 0, 'name': '免費線上觀看的新片', 'short_name': '', 'collect_count': 0, 'url': 'https://m.douban.com/app_topic/movie_free_stream', 'description': '', 'type_icon_bg_text': '', 'uri': 'douban://douban.com/subject_collection/movie_free_stream', 'cover_url': '', 'updated_at': None, 'icon_fg_image': '', 'type_text': '', 'show_header_mask': False, 'mini_program_name': '', 'id': 'movie_free_stream', 'medium_name': '', 'sharing_url': 'https://www.douban.com/doubanapp/dispatch?uri=/subject_collection/movie_free_stream/', 'mini_program_page': '', 'display': {'layout': 'grid'}, 'background_color_scheme': {'is_dark': True, 'primary_color_light': '410b72', 'secondary_color': 'f7f4f9', 'primary_color_dark': '2b074c'}}, 'subject_collection_items': [{'original_price': None, 'rating': {'count': 200, 'max': 10, 'value': 6.0}, 'cover': {'url': 'https://img1.doubanio.com/view/photo/m_ratio_poster/public/p2539179937.jpg', 'width': 450, 'shape': 'rectangle', 'height': 800}, 'actions': ['可播放'], 'year': '2018', 'card_subtitle': '2018 / 中國大陸 / 歌舞 真人秀 / 陳赫 黃渤', 'id': '30371772', 'title': '2018天貓雙十一狂歡夜', 'comments': [{'comment': '???-- 謝謝你們的魚', 'rating': {'count': 1, 'max': 5, 'star_count': 1, 'value': 1}, 'sharing_url': 'https://www.douban.com/doubanapp/dispatch?uri=/movie/30371772/interest/1520203091', 'is_voted': False, 'uri': 'douban://douban.com/movie/30371772/interest/1520203091', 'platforms': [], 'vote_count': 4, 'create_time': '2018-11-14 15:15:19', 'status': 'done', 'user': {'loc': {'id': '108288', 'name': '北京', 'uid': 'beijing'}, 'kind': 'user', 'followed': False, 'name': '謝謝你們的魚', 'in_blacklist': False, 'url': 'https://www.douban.com/people/1752908/', 'remark': '', 'uri': 'douban://douban.com/user/1752908', 'avatar': 'https://img1.doubanio.com/icon/up1752908-27.jpg', 'type': 'user', 'id': '1752908', 'uid': 'reave'}, 'done_index': 6934, 'id': '1520203091'}], 'label': None, 'actors': ['陳赫', '黃渤', '吳謹言'], 'interest': None, 'type': 'movie', 'forum_info': None, 'description': '', 'has_linewatch': True, 'price': None, 'date': None, 'info': '中國大陸 / 歌舞 真人秀 / 陳赫 黃渤', 'rating_data': {'stats': [0.125, 0.16666666666666666, 0.4583333333333333, 0.08333333333333333, 0.16666666666666666], 'type_ranks': []}, 'url': 'https://www.douban.com/doubanapp/dispatch/movie/30371772', 'release_date': '11.10', 'original_title': '', 'uri': 'douban://douban.com/movie/30371772', 'subtype': '', 'directors': [], 'reviewer_name': '', 'null_rating_reason': ''}, {'original_price': None, 'rating': {'count': 1523, 'max': 10, 'value': 8.7}, 'actions': ['可播放'], 'year': '2018', 'card_subtitle': '2018 / 日本 / 科幻 動畫 / 安彥良和 / 池田秀一 潘惠美', 'id': '26920182', 'title': '機動戰士高達THE ORIGIN VI 赤色彗星誕生', 'label': None, 'actors': ['池田秀一', '潘惠美', '銀河萬丈'], 'interest': None, 'type': 'movie', 'forum_info': None, 'description': '', 'has_linewatch': True, 'price': None, 'date': None, 'info': '日本 / 科幻 動畫 / 安彥良和 / 池田秀一 潘惠美', 'url': 'https://www.douban.com/doubanapp/dispatch/movie/26920182', 'release_date': '05.05', 'cover': {'url': 'https://img3.doubanio.com/view/photo/m_ratio_poster/public/p2518242401.jpg', 'width': 654, 'shape': 'rectangle', 'height': 918}, 'uri': 'douban://douban.com/movie/26920182', 'subtype': '', 'directors': ['安彥良和'], 'reviewer_name': '', 'null_rating_reason': ''}, {'original_price': None, 'rating': {'count': 545, 'max': 10, 'value': 4.6}, 'actions': ['可播放'], 'year': '2018', 'card_subtitle': '2018 / 中國大陸 / 劇情 愛情 懸疑 / 楊俊漢 / 宋寧峰 呂星辰', 'id': '30353414', 'title': '凌晨四點的重慶', 'label': None, 'actors': ['宋寧峰', '呂星辰', '何泓姍'], 'interest': None, 'type': 'movie', 'forum_info': None, 'description': '', 'has_linewatch': True, 'price': None, 'date': None, 'info': '中國大陸 / 劇情 愛情 懸疑 / 楊俊漢 / 宋寧峰 呂星辰', 'url': 'https://www.douban.com/doubanapp/dispatch/movie/30353414', 'release_date': '10.16', 'cover': {'url': 'https://img1.doubanio.com/view/photo/m_ratio_poster/public/p2537701268.jpg', 'width': 1969, 'shape': 'rectangle', 'height': 3500}, 'uri': 'douban://douban.com/movie/30353414', 'subtype': '', 'directors': ['楊俊漢'], 'reviewer_name': '', 'null_rating_reason': ''}, {'original_price': None, 'rating': {'count': 527, 'max': 10, 'value': 7.8}, 'actions': ['可播放'], 'year': '2018', 'card_subtitle': '2018 / 中國大陸 / 愛情 動畫 / 金承仁 / 陳張太康 佟心竹', 'id': '30156266', 'title': '我是江小白 劇場版', 'label': None, 'actors': ['陳張太康', '佟心竹', '李蘭陵'], 'interest': None, 'type': 'movie', 'forum_info': None, 'description': '', 'has_linewatch': True, 'price': None, 'date': None, 'info': '中國大陸 / 愛情 動畫 / 金承仁 / 陳張太康 佟心竹', 'url': 'https://www.douban.com/doubanapp/dispatch/movie/30156266', 'release_date': '05.25', 'cover': {'url': 'https://img3.doubanio.com/view/photo/m_ratio_poster/public/p2523138791.jpg', 'width': 650, 'shape': 'rectangle', 'height': 1048}, 'uri': 'douban://douban.com/movie/30156266', 'subtype': '', 'directors': ['金承仁'], 'reviewer_name': '', 'null_rating_reason': ''}, {'original_price': None, 'rating': {'count': 37981, 'max': 10, 'value': 2.0}, 'actions': ['可播放'], 'year': '2018', 'card_subtitle': '2018 / 中國大陸 / 真人秀 / 何炅 迪麗熱巴', 'id': '30352998', 'title': '第12屆中國金鷹電視藝術節頒獎典禮', 'label': None, 'actors': ['何炅', '迪麗熱巴', '李易峰'], 'interest': None, 'type': 'movie', 'forum_info': None, 'description': '', 'has_linewatch': True, 'price': None, 'date': None, 'info': '中國大陸 / 真人秀 / 何炅 迪麗熱巴', 'url': 'https://www.douban.com/doubanapp/dispatch/movie/30352998', 'release_date': '10.12', 'cover': {'url': 'https://img1.doubanio.com/view/photo/m_ratio_poster/public/p2539033188.jpg', 'width': 1461, 'shape': 'rectangle', 'height': 2019}, 'uri': 'douban://douban.com/movie/30352998', 'subtype': '', 'directors': [], 'reviewer_name': '', 'null_rating_reason': ''}, {'original_price': None, 'rating': {'count': 934, 'max': 10, 'value': 6.8}, 'actions': ['可播放'], 'year': '2018', 'card_subtitle': '2018 / 中國大陸 / 動畫 短片 / Andrew Chesworth(安德魯•查斯沃斯) Bobby Pontillas(巴比•龐迪亞斯)', 'id': '30217440', 'title': '衝破天際', 'label': None, 'actors': [], 'interest': None, 'type': 'movie', 'forum_info': None, 'description': '', 'has_linewatch': True, 'price': None, 'date': None, 'info': '中國大陸 / 動畫 短片 / Andrew Chesworth(安德魯•查斯沃斯) / ', 'url': 'https://www.douban.com/doubanapp/dispatch/movie/30217440', 'release_date': '06.24', 'cover': {'url': 'https://img1.doubanio.com/view/photo/m_ratio_poster/public/p2534695097.jpg', 'width': 960, 'shape': 'rectangle', 'height': 1440}, 'uri': 'douban://douban.com/movie/30217440', 'subtype': '', 'directors': ['Andrew Chesworth(安德魯•查斯沃斯)'], 'reviewer_name': '', 'null_rating_reason': ''}, {'original_price': None, 'rating': {'count': 526, 'max': 10, 'value': 8.4}, 'actions': ['可播放'], 'year': '2018', 'card_subtitle': '2018 / 中國大陸 / 紀錄片 / 陳鶴庭 / 穆飛 高鳴', 'id': '30290809', 'title': '獨行', 'label': None, 'actors': ['穆飛', '高鳴', '李遠揚'], 'interest': None, 'type': 'movie', 'forum_info': None, 'description': '', 'has_linewatch': True, 'price': None, 'date': None, 'info': '中國大陸 / 紀錄片 / 陳鶴庭 / 穆飛 高鳴', 'url': 'https://www.douban.com/doubanapp/dispatch/movie/30290809', 'release_date': '08.18', 'cover': {'url': 'https://img3.doubanio.com/view/photo/m_ratio_poster/public/p2531116444.jpg', 'width': 1346, 'shape': 'rectangle', 'height': 1984}, 'uri': 'douban://douban.com/movie/30290809', 'subtype': '', 'directors': ['陳鶴庭'], 'reviewer_name': '', 'null_rating_reason': ''}, {'original_price': None, 'rating': {'count': 1126, 'max': 10, 'value': 3.2}, 'actions': ['可播放'], 'year': '2018', 'card_subtitle': '2018 / 中國大陸 / 動作 冒險 / 林珍釗 / 黃凱倫 鄭躍', 'id': '30306436', 'title': '大蛇', 'label': None, 'actors': ['黃凱倫', '鄭躍', '奚美麗'], 'interest': None, 'type': 'movie', 'forum_info': None, 'description': '', 'has_linewatch': True, 'price': None, 'date': None, 'info': '中國大陸 / 動作 冒險 / 林珍釗 / 黃凱倫 鄭躍', 'url': 'https://www.douban.com/doubanapp/dispatch/movie/30306436', 'release_date': '09.04', 'cover': {'url': 'https://img3.doubanio.com/view/photo/m_ratio_poster/public/p2531890522.jpg', 'width': 435, 'shape': 'rectangle', 'height': 615}, 'uri': 'douban://douban.com/movie/30306436', 'subtype': '', 'directors': ['林珍釗'], 'reviewer_name': '', 'null_rating_reason': ''}], 'total': 16, 'start': 0} 爬取完畢 ['movie_showing', 'movie_free_stream', 'movie_latest'] 正在爬取movie_latest的電影,請稍