#爬取猫眼电影排名前100的电影
import requests #电脑向服务器发送的请求库
from requests.exceptions import RequestException
import re #正则表达式
import json #dumps()函数实现字典的序列化
import time
#获取一页内容
def get_one_page(url):try:headers = {'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.162 Safari/537.36'}response = requests.get(url, headers= headers)if response.status_code == 200:return response.textreturn Noneexcept RequestException:return None#解析得到的HTML网页,抓取我们想要的东西
def parse_one_page(html):''' 正则表达式这里太长了,容易出问题。导致我第一次没有结果pattern = re.compile('<dd>.*?board-index.*?>(.*?)</i>.*?data-src="(.*?)".*?name.*?>a.*?>(.*?)</a>.*?star.*?>(.*?)</p>.*?''releasetime.*?>(.*?)</p>.*?integer.*?>(.*?)</i>.*?fraction.*?>(.*?)</i>.*?</dd>', re.S) #'''pattern = re.compile('<dd>.*?board-index.*?>(.*?)</i>.*?data-src="(.*?)".*?name"><a'+ '.*?>(.*?)</a>.*?star">(.*?)</p>.*?releasetime">(.*?)</p>'+ '.*?integer">(.*?)</i>.*?fraction">(.*?)</i>.*?</dd>', re.S)items = re.findall(pattern, html) #列表格式,每个元素都是一个括号包围的逗号分隔的小字符串for item in items: #列表转化为字典形式yield {'index': item[0],'image': item[1],'title': item[2].strip(),'actor': item[3].strip()[3:],       # if len(item[3] >3 else '','time': item[4].strip()[5:] ,        #, if len(item[4] >5 else '','score': item[5] + item[6]       }#把提取的东西写入文档里。dumps()函数实现字典的序列化,ensure_ascii保证输出中文不是unicode编码
def write_to_file(content):with open('result.txt', 'a', encoding = 'utf-8') as f:print(type(json.dumps(content)))f.write(json.dumps(content, ensure_ascii=False)+'\n')#主函数,分页爬去,http://maoyan.com/board/4?offset=10
def main(offset):url = 'http://maoyan.com/board/4?offset=' + str(offset)  #网站每翻一页,都会增加数字,从0,10,20一次增加html = get_one_page(url)#print(html)for item in parse_one_page(html):print(item)write_to_file(item)if __name__ == '__main__':for i in range(10):main(offset=i*10) time.sleep(1) #延时等待,应对网站的反爬虫机制。如果向服务器发送请求频率过高,就会被封锁IP'''
输出如下
{'index': '1', 'score': '9.6', 'title': '霸王别姬', 'time': '1993-01-01(中国香港)', 'actor': '张国荣,张丰毅,巩俐', 'image': 'http://p1.meituan.net/movie/20803f59291c47e1e116c11963ce019e68711.jpg@160w_220h_1e_1c'}
<class 'str'>
{'index': '2', 'score': '9.5', 'title': '肖申克的救赎', 'time': '1994-10-14(美国)', 'actor': '蒂姆·罗宾斯,摩根·弗里曼,鲍勃·冈顿', 'image': 'http://p0.meituan.net/movie/283292171619cdfd5b240c8fd093f1eb255670.jpg@160w_220h_1e_1c'}
<class 'str'>
{'index': '3', 'score': '9.1', 'title': '罗马假日', 'time': '1953-09-02(美国)', 'actor': '格利高里·派克,奥黛丽·赫本,埃迪·艾伯特', 'image': 'http://p0.meituan.net/movie/54617769d96807e4d81804284ffe2a27239007.jpg@160w_220h_1e_1c'}
<class 'str'>
{'index': '4', 'score': '9.5', 'title': '这个杀手不太冷', 'time': '1994-09-14(法国)', 'actor': '让·雷诺,加里·奥德曼,娜塔莉·波特曼', 'image': 'http://p0.meituan.net/movie/e55ec5d18ccc83ba7db68caae54f165f95924.jpg@160w_220h_1e_1c'}
<class 'str'>
{'index': '5', 'score': '9.3', 'title': '教父', 'time': '1972-03-24(美国)', 'actor': '马龙·白兰度,阿尔·帕西诺,詹姆斯·肯恩', 'image': 'http://p1.meituan.net/movie/f5a924f362f050881f2b8f82e852747c118515.jpg@160w_220h_1e_1c'}
<class 'str'>
{'index': '6', 'score': '9.5', 'title': '泰坦尼克号', 'time': '1998-04-03', 'actor': '莱昂纳多·迪卡普里奥,凯特·温丝莱特,比利·赞恩', 'image': 'http://p1.meituan.net/movie/0699ac97c82cf01638aa5023562d6134351277.jpg@160w_220h_1e_1c'}
<class 'str'>
{'index': '7', 'score': '9.2', 'title': '龙猫', 'time': '1988-04-16(日本)', 'actor': '日高法子,坂本千夏,糸井重里', 'image': 'http://p0.meituan.net/movie/b03e9c52c585635d2cb6a3f7c08a8a50112441.jpg@160w_220h_1e_1c'}
<class 'str'>
{'index': '8', 'score': '9.2', 'title': '唐伯虎点秋香', 'time': '1993-07-01(中国香港)', 'actor': '周星驰,巩俐,郑佩佩', 'image': 'http://p0.meituan.net/movie/da64660f82b98cdc1b8a3804e69609e041108.jpg@160w_220h_1e_1c'}
<class 'str'>
{'index': '9', 'score': '9.3', 'title': '千与千寻', 'time': '2001-07-20(日本)', 'actor': '柊瑠美,入野自由,夏木真理', 'image': 'http://p0.meituan.net/movie/b076ce63e9860ecf1ee9839badee5228329384.jpg@160w_220h_1e_1c'}
<class 'str'>
{'index': '10', 'score': '9.2', 'title': '魂断蓝桥', 'time': '1940-05-17(美国)', 'actor': '费雯·丽,罗伯特·泰勒,露塞尔·沃特森', 'image': 'http://p0.meituan.net/movie/46c29a8b8d8424bdda7715e6fd779c66235684.jpg@160w_220h_1e_1c'}
<class 'str'>
{'index': '11', 'score': '9.1', 'title': '乱世佳人', 'time': '1939-12-15(美国)', 'actor': '费雯·丽,克拉克·盖博,奥利维娅·德哈维兰', 'image': 'http://p0.meituan.net/movie/230e71d398e0c54730d58dc4bb6e4cca51662.jpg@160w_220h_1e_1c'}
<class 'str'>
{'index': '12', 'score': '9.2', 'title': '喜剧之王', 'time': '1999-02-13(中国香港)', 'actor': '周星驰,莫文蔚,张柏芝', 'image': 'http://p1.meituan.net/movie/18e3191039d5e71562477659301f04aa61905.jpg@160w_220h_1e_1c'}
<class 'str'>
{'index': '13', 'score': '9.1', 'title': '天空之城', 'time': '1992', 'actor': '寺田农,鹫尾真知子,龟山助清', 'image': 'http://p1.meituan.net/movie/ba1ed511668402605ed369350ab779d6319397.jpg@160w_220h_1e_1c'}
<class 'str'>
{'index': '14', 'score': '9.0', 'title': '大闹天宫', 'time': '1965-12-31', 'actor': '邱岳峰,毕克,富润生', 'image': 'http://p1.meituan.net/movie/14a7b337e8063e3ce05a5993ed80176b74208.jpg@160w_220h_1e_1c'}
<class 'str'>
{'index': '15', 'score': '9.2', 'title': '辛德勒的名单', 'time': '1993-12-15(美国)', 'actor': '连姆·尼森,拉尔夫·费因斯,本·金斯利', 'image': 'http://p1.meituan.net/movie/39ed7a0941a3604bba78d299b11a18ce119679.jpg@160w_220h_1e_1c'}
<class 'str'>
{'index': '16', 'score': '9.0', 'title': '音乐之声', 'time': '1965-03-02(美国)', 'actor': '朱莉·安德鲁斯,克里斯托弗·普卢默,埃琳诺·帕克', 'image': 'http://p1.meituan.net/movie/6bc004d57358ee6875faa5e9a1239140128550.jpg@160w_220h_1e_1c'}
<class 'str'>
{'index': '17', 'score': '9.2', 'title': '春光乍泄', 'time': '1997-05-30(中国香港)', 'actor': '张国荣,梁朝伟,张震', 'image': 'http://p0.meituan.net/movie/ae7245920d95c03765fe1615f3a1fe3865785.jpg@160w_220h_1e_1c'}
<class 'str'>
{'index': '18', 'score': '8.8', 'title': '剪刀手爱德华', 'time': '1990-12-06(美国)', 'actor': '约翰尼·德普,薇诺娜·瑞德,黛安·韦斯特', 'image': 'http://p1.meituan.net/movie/0e91ffcfa7e53449216cc29ee8af513a75791.jpg@160w_220h_1e_1c'}
<class 'str'>
{'index': '19', 'score': '9.3', 'title': '美丽人生', 'time': '1997-12-20(意大利)', 'actor': '罗伯托·贝尼尼,尼可莱塔·布拉斯基,乔治·坎塔里尼', 'image': 'http://p0.meituan.net/movie/43d259ecbcd53e8bbe902632772281d6327525.jpg@160w_220h_1e_1c'}
<class 'str'>
{'index': '20', 'score': '9.2', 'title': '海上钢琴师', 'time': '1998-10-28(意大利)', 'actor': '蒂姆·罗斯,普路特·泰勒·文斯,比尔·努恩', 'image': 'http://p1.meituan.net/movie/c15b7623cce2f51c75562a3baefe507b68290.jpg@160w_220h_1e_1c'}
<class 'str'>
{'index': '21', 'score': '9.0', 'title': '黑客帝国', 'time': '2000-01-14', 'actor': '基努·里维斯,凯瑞-安·莫斯,劳伦斯·菲什伯恩', 'image': 'http://p1.meituan.net/movie/d981a12f59d3cc92ff666094404ad8f0211220.jpg@160w_220h_1e_1c'}
<class 'str'>
{'index': '22', 'score': '9.2', 'title': '指环王3:王者无敌', 'time': '2004-03-15', 'actor': '伊莱贾·伍德,伊恩·麦克莱恩,丽芙·泰勒', 'image': 'http://p0.meituan.net/movie/932bdfbef5be3543e6b136246aeb99b8123736.jpg@160w_220h_1e_1c'}
<class 'str'>
{'index': '23', 'score': '8.9', 'title': '加勒比海盗', 'time': '2003-11-21', 'actor': '约翰尼·德普,凯拉·奈特莉,奥兰多·布鲁姆', 'image': 'http://p1.meituan.net/movie/b449893ebc63d5c54eb4a5b60341f334383831.jpg@160w_220h_1e_1c'}
<class 'str'>
{'index': '24', 'score': '9.1', 'title': '哈利·波特与魔法石', 'time': '2002-01-26', 'actor': '丹尼尔·雷德克里夫,鲁伯特·格林特,艾玛·沃森', 'image': 'http://p1.meituan.net/movie/aacb9ed2a6601bfe515ef0970add1715623792.jpg@160w_220h_1e_1c'}
<class 'str'>
{'index': '25', 'score': '9.3', 'title': '蝙蝠侠:黑暗骑士', 'time': '2008-07-18(美国)', 'actor': '克里斯蒂安·贝尔,希斯·莱杰,艾伦·艾克哈特', 'image': 'http://p0.meituan.net/movie/d12a1c198ad9ffac72b5db57feacb449294699.jpg@160w_220h_1e_1c'}
<class 'str'>
{'index': '26', 'score': '8.9', 'title': '楚门的世界', 'time': '1998-06-01(美国)', 'actor': '金·凯瑞,劳拉·琳妮,诺亚·艾默里奇', 'image': 'http://p0.meituan.net/movie/8959888ee0c399b0fe53a714bc8a5a17460048.jpg@160w_220h_1e_1c'}
<class 'str'>
{'index': '27', 'score': '8.9', 'title': '射雕英雄传之东成西就', 'time': '1993-02-05(中国香港)', 'actor': '张国荣,梁朝伟,张学友', 'image': 'http://p1.meituan.net/movie/53b6f0b66882a53b08896c92076515a8236400.jpg@160w_220h_1e_1c'}
<class 'str'>
{'index': '28', 'score': '9.1', 'title': '无间道', 'time': '2003-09-05', 'actor': '刘德华,梁朝伟,黄秋生', 'image': 'http://p1.meituan.net/movie/0d93b5b585ce29c6688e43f3989fb41f86421.jpg@160w_220h_1e_1c'}
<class 'str'>
{'index': '29', 'score': '9.0', 'title': '教父2', 'time': '1974-12-12(美国)', 'actor': '阿尔·帕西诺,罗伯特·德尼罗,黛安·基顿', 'image': 'http://p1.meituan.net/movie/7bac8bfa6739c18620065132ce9c64fa85110.jpg@160w_220h_1e_1c'}
<class 'str'>
{'index': '30', 'score': '9.1', 'title': '指环王2:双塔奇兵', 'time': '2003-04-25', 'actor': '伊莱贾·伍德,伊恩·麦克莱恩,丽芙·泰勒', 'image': 'http://p0.meituan.net/movie/5cfa597a98b35ee4ee598695942641ba287922.jpg@160w_220h_1e_1c'}
<class 'str'>
{'index': '31', 'score': '9.3', 'title': '机器人总动员', 'time': '2008-06-27(美国)', 'actor': '本·贝尔特,艾丽莎·奈特,杰夫·格尔林', 'image': 'http://p1.meituan.net/movie/4592eef6b6dffcd1d950f55f41ab098f239816.jpg@160w_220h_1e_1c'}
<class 'str'>
{'index': '32', 'score': '9.0', 'title': '活着', 'time': '1994-05-18(法国)', 'actor': '葛优,巩俐,牛犇', 'image': 'http://p0.meituan.net/movie/4c41068ef7608c1d4fbfbe6016e589f7204391.jpg@160w_220h_1e_1c'}
<class 'str'>
{'index': '33', 'score': '8.9', 'title': '拯救大兵瑞恩', 'time': '1998-07-24(美国)', 'actor': '汤姆·汉克斯,马特·达蒙,汤姆·塞兹摩尔', 'image': 'http://p1.meituan.net/movie/779bcc212a50a2526343362778f6b63c334618.jpg@160w_220h_1e_1c'}
<class 'str'>
{'index': '34', 'score': '9.2', 'title': '天堂电影院', 'time': '1988-11-17(意大利)', 'actor': '菲利普·努瓦雷,赛尔乔·卡斯特利托,蒂兹亚娜·罗达托', 'image': 'http://p1.meituan.net/movie/618e57ddb3173de6bbf2e278946b11f279679.jpg@160w_220h_1e_1c'}
<class 'str'>
{'index': '35', 'score': '9.0', 'title': '哈尔的移动城堡', 'time': '2004-11-20(日本)', 'actor': '倍赏千惠子,木村拓哉,美轮明宏', 'image': 'http://p0.meituan.net/movie/0127b451d5b8f0679c6f81c8ed414bb2432442.jpg@160w_220h_1e_1c'}
<class 'str'>
{'index': '36', 'score': '9.3', 'title': '忠犬八公的故事', 'time': '2010-03-12(英国)', 'actor': 'Forest,理查·基尔,琼·艾伦', 'image': 'http://p0.meituan.net/movie/7787c10ad5e95b03cf83ef9473500d8e282796.jpg@160w_220h_1e_1c'}
<class 'str'>
{'index': '37', 'score': '8.9', 'title': '东邪西毒', 'time': '1994-09-17', 'actor': '张国荣,梁朝伟,刘嘉玲', 'image': 'http://p1.meituan.net/movie/7e471a9171a410ebc9413b2f1de67afc130067.jpg@160w_220h_1e_1c'}
<class 'str'>
{'index': '38', 'score': '8.9', 'title': '幽灵公主', 'time': '1997-07-12(日本)', 'actor': '松田洋治,石田百合子,田中裕子', 'image': 'http://p0.meituan.net/movie/6ab1882a217e848acceb240365043d53329196.jpg@160w_220h_1e_1c'}
<class 'str'>
{'index': '39', 'score': '9.2', 'title': '盗梦空间', 'time': '2010-09-01', 'actor': '莱昂纳多·迪卡普里奥,渡边谦,约瑟夫·高登-莱维特', 'image': 'http://p1.meituan.net/movie/2f344a9f9575edbcae9f0abe0578bc90339773.jpg@160w_220h_1e_1c'}
<class 'str'>
{'index': '40', 'score': '8.8', 'title': '搏击俱乐部', 'time': '1999-10-15(美国)', 'actor': '爱德华·诺顿,布拉德·皮特,海伦娜·伯翰·卡特', 'image': 'http://p1.meituan.net/movie/c5e76795bf7a78b12a2ffabb4a0c5c11112921.jpg@160w_220h_1e_1c'}
<class 'str'>
{'index': '41', 'score': '9.5', 'title': '疯狂原始人', 'time': '2013-04-20', 'actor': '尼古拉斯·凯奇,艾玛·斯通,瑞恩·雷诺兹', 'image': 'http://p1.meituan.net/movie/d5e5e53ef9bbd98223e83df261b51b84103223.jpg@160w_220h_1e_1c'}
<class 'str'>
{'index': '42', 'score': '9.0', 'title': '阿凡达', 'time': '2010-01-04', 'actor': '萨姆·沃辛顿,佐伊·索尔达娜,米歇尔·罗德里格兹', 'image': 'http://p1.meituan.net/movie/91f575ec93f019f428d1f33e3ceca7c5115495.jpg@160w_220h_1e_1c'}
<class 'str'>
{'index': '43', 'score': '8.8', 'title': 'V字仇杀队', 'time': '2006-03-17(美国)', 'actor': '娜塔莉·波特曼,雨果·维文,斯蒂芬·瑞', 'image': 'http://p1.meituan.net/movie/4a4c84aa103ab47202f1aa907c5542a4128882.jpg@160w_220h_1e_1c'}
<class 'str'>
{'index': '44', 'score': '8.9', 'title': '风之谷', 'time': '1992', 'actor': '岛本须美,永井一郎,坂本千夏', 'image': 'http://p0.meituan.net/movie/4f9638ba234c3fb673f23a09968db875371576.jpg@160w_220h_1e_1c'}
<class 'str'>
{'index': '45', 'score': '8.9', 'title': '放牛班的春天', 'time': '2004-10-16', 'actor': '热拉尔·朱尼奥,尚-巴堤·莫里耶,玛丽·布奈尔', 'image': 'http://p0.meituan.net/movie/7cd18fcf0b4f9180500124711e81492994030.jpg@160w_220h_1e_1c'}
<class 'str'>
{'index': '46', 'score': '8.9', 'title': '当幸福来敲门', 'time': '2008-01-17', 'actor': '威尔·史密斯,贾登·史密斯,坦迪·牛顿', 'image': 'http://p1.meituan.net/movie/5896de3c1474277730e321c9b1db04a9205644.jpg@160w_220h_1e_1c'}
<class 'str'>
{'index': '47', 'score': '9.1', 'title': '十二怒汉', 'time': '1957-04-13(美国)', 'actor': '亨利·方达,李·科布,马丁·鲍尔萨姆', 'image': 'http://p0.meituan.net/movie/df15efd261060d3094a73ef679888d4f238149.jpg@160w_220h_1e_1c'}
<class 'str'>
{'index': '48', 'score': '9.2', 'title': '速度与激情5', 'time': '2011-05-12', 'actor': '范·迪塞尔,保罗·沃克,道恩·强森', 'image': 'http://p1.meituan.net/movie/1d0fa86bcf7a44484b9c16ac6af5be68191952.jpg@160w_220h_1e_1c'}
<class 'str'>
{'index': '49', 'score': '9.0', 'title': '驯龙高手', 'time': '2010-05-14', 'actor': '杰伊·巴鲁切尔,杰拉德·巴特勒,亚美莉卡·费雷拉', 'image': 'http://p1.meituan.net/movie/8194ae885ed9419aadf35c196af86ba4239039.jpg@160w_220h_1e_1c'}
<class 'str'>
{'index': '50', 'score': '8.8', 'title': '勇敢的心', 'time': '1995-05-24(美国)', 'actor': '梅尔·吉布森,苏菲·玛索,帕特里克·麦高汉', 'image': 'http://p1.meituan.net/movie/f8e9d5a90224746d15dfdbd53d4fae3d209420.jpg@160w_220h_1e_1c'}
<class 'str'>
{'index': '51', 'score': '9.0', 'title': '神偷奶爸', 'time': '2010-07-09(美国)', 'actor': '史蒂夫·卡瑞尔,杰森·席格尔,拉塞尔·布兰德', 'image': 'http://p0.meituan.net/movie/85c2bfba6025bfbfb53291ae5924c215308805.jpg@160w_220h_1e_1c'}
<class 'str'>
{'index': '52', 'score': '8.9', 'title': '飞屋环游记', 'time': '2009-08-04', 'actor': '爱德华·阿斯纳,乔丹·长井,鲍勃·彼德森', 'image': 'http://p0.meituan.net/movie/47dd790e19dad72b50580641de5608c5199014.jpg@160w_220h_1e_1c'}
<class 'str'>
{'index': '53', 'score': '8.8', 'title': '黑客帝国3:矩阵革命', 'time': '2003-11-05', 'actor': '基努·里维斯,雨果·维文,凯瑞-安·莫斯', 'image': 'http://p1.meituan.net/movie/5ca6ffcbb994a51cd6215e7c4fff2d9b71039.jpg@160w_220h_1e_1c'}
<class 'str'>
{'index': '54', 'score': '8.9', 'title': '怦然心动', 'time': '2010-08-06(美国)', 'actor': '玛德琳·卡罗尔,卡兰·麦克奥利菲,艾丹·奎因', 'image': 'http://p0.meituan.net/movie/457a35fda360cb72090fa6dcbd1db3c1275333.jpg@160w_220h_1e_1c'}
<class 'str'>
{'index': '55', 'score': '9.1', 'title': '三傻大闹宝莱坞', 'time': '2011-12-08', 'actor': '阿米尔·汗,黄渤,卡琳娜·卡普尔', 'image': 'http://p0.meituan.net/movie/4bb144bc0a674ba6908349018fd092e6330929.jpg@160w_220h_1e_1c'}
<class 'str'>
{'index': '56', 'score': '9.0', 'title': '断背山', 'time': '2006-01-13(美国)', 'actor': '希斯·莱杰,杰克·吉伦哈尔,米歇尔·威廉姆斯', 'image': 'http://p0.meituan.net/movie/e71affe126eeb4f8bfcc738cbddeebc8288766.jpg@160w_220h_1e_1c'}
<class 'str'>
{'index': '57', 'score': '8.8', 'title': '闻香识女人', 'time': '1992-12-23(美国)', 'actor': '阿尔·帕西诺,克里斯·奥唐纳,加布里埃尔·安瓦尔', 'image': 'http://p0.meituan.net/movie/7cb7965469cb7ff95613714389f1ea3d87743.jpg@160w_220h_1e_1c'}
<class 'str'>
{'index': '58', 'score': '8.9', 'title': '鬼子来了', 'time': '2000-05-12(法国戛纳)', 'actor': '姜文,姜宏波,陈强', 'image': 'http://p1.meituan.net/movie/0b507aa44c4dfbbcc91949b69b1b39a168922.jpg@160w_220h_1e_1c'}
<class 'str'>
{'index': '59', 'score': '8.8', 'title': '飞越疯人院', 'time': '1975-11-19(美国)', 'actor': '杰克·尼科尔森,路易丝·弗莱彻,威尔·萨姆森', 'image': 'http://p1.meituan.net/movie/4dddd98730274c3b1464ff0a0ad195e5233381.jpg@160w_220h_1e_1c'}
<class 'str'>
{'index': '60', 'score': '9.1', 'title': '美国往事', 'time': '1984-02-17(美国)', 'actor': '罗伯特·德尼罗,詹姆斯·伍兹,伊丽莎白·麦戈文', 'image': 'http://p1.meituan.net/movie/92198a6fc8c3f5d13aa1bdf203572c0f99438.jpg@160w_220h_1e_1c'}
<class 'str'>
{'index': '61', 'score': '8.8', 'title': '致命魔术', 'time': '2006-10-20(美国)', 'actor': '休·杰克曼,克里斯蒂安·贝尔,迈克尔·凯恩', 'image': 'http://p1.meituan.net/movie/75c0d3eb584be030a01f2e26741a8f41251454.jpg@160w_220h_1e_1c'}
<class 'str'>
{'index': '62', 'score': '9.1', 'title': '少年派的奇幻漂流', 'time': '2012-11-22', 'actor': '苏拉·沙玛,伊尔凡·可汗,塔布', 'image': 'http://p0.meituan.net/movie/34998e31c6d07475f1add6b8b16fd21d192579.jpg@160w_220h_1e_1c'}
<class 'str'>
{'index': '63', 'score': '8.8', 'title': '美丽心灵', 'time': '2001-12-21(美国)', 'actor': '罗素·克劳,詹妮弗·康纳利,艾德·哈里斯', 'image': 'http://p0.meituan.net/movie/7b7d1f8aa36d7a15463ce6942708a1a7265296.jpg@160w_220h_1e_1c'}
<class 'str'>
{'index': '64', 'score': '9.0', 'title': '哈利·波特与死亡圣器(下)', 'time': '2011-08-04', 'actor': '丹尼尔·雷德克里夫,鲁伯特·格林特,艾玛·沃森', 'image': 'http://p1.meituan.net/movie/68fa7db99e958c47d7aa07d015845a6f335154.jpg@160w_220h_1e_1c'}
<class 'str'>
{'index': '65', 'score': '8.8', 'title': '夜访吸血鬼', 'time': '1994-11-11(美国)', 'actor': '汤姆·克鲁斯,布拉德·皮特,克斯汀·邓斯特', 'image': 'http://p0.meituan.net/movie/7ec873ba943f13e3c63789d899bd0e23256871.jpg@160w_220h_1e_1c'}
<class 'str'>
{'index': '66', 'score': '9.6', 'title': '大话西游之月光宝盒', 'time': '2014-10-24', 'actor': '周星驰,莫文蔚,吴孟达', 'image': 'http://p0.meituan.net/movie/92eb862c42c49f8e41e459c369c4512b226610.jpg@160w_220h_1e_1c'}
<class 'str'>
{'index': '67', 'score': '8.9', 'title': '蝙蝠侠:黑暗骑士崛起', 'time': '2012-08-27', 'actor': '克里斯蒂安·贝尔,迈克尔·凯恩,加里·奥德曼', 'image': 'http://p1.meituan.net/movie/96bb58f3e9d213fb0438987d16d27561379209.jpg@160w_220h_1e_1c'}
<class 'str'>
{'index': '68', 'score': '8.8', 'title': '钢琴家', 'time': '2002-09-25(法国)', 'actor': '艾德里安·布洛迪,艾米莉娅·福克斯,米哈乌·热布罗夫斯基', 'image': 'http://p1.meituan.net/movie/484171372de45945e8bbbcc97db57e09136701.jpg@160w_220h_1e_1c'}
<class 'str'>
{'index': '69', 'score': '9.0', 'title': '无敌破坏王', 'time': '2012-11-06', 'actor': '约翰·C·赖利,萨拉·西尔弗曼,简·林奇', 'image': 'http://p0.meituan.net/movie/fcc17667b8343131101eeb4c67d90bf9150883.jpg@160w_220h_1e_1c'}
<class 'str'>
{'index': '70', 'score': '9.1', 'title': '倩女幽魂', 'time': '2011-04-30', 'actor': '张国荣,王祖贤,午马', 'image': 'http://p1.meituan.net/movie/6d0510f326bf145dcf49a901fb949b77278838.jpg@160w_220h_1e_1c'}
<class 'str'>
{'index': '71', 'score': '8.8', 'title': '本杰明·巴顿奇事', 'time': '2008-12-25(美国)', 'actor': '布拉德·皮特,凯特·布兰切特,塔拉吉·P·汉森', 'image': 'http://p0.meituan.net/movie/2526f77c650bf7cf3d5ee2dccdeac332244951.jpg@160w_220h_1e_1c'}
<class 'str'>
{'index': '72', 'score': '8.8', 'title': '初恋这件小事', 'time': '2012-06-05', 'actor': '马里奥·毛瑞尔,平采娜·乐维瑟派布恩,阿查拉那·阿瑞亚卫考', 'image': 'http://p1.meituan.net/movie/7ed07b8ea8c0e0d0c7b685d20e3ec64e232004.jpg@160w_220h_1e_1c'}
<class 'str'>
{'index': '73', 'score': '8.8', 'title': '新龙门客栈', 'time': '2012-02-24', 'actor': '张曼玉,梁家辉,甄子丹', 'image': 'http://p0.meituan.net/movie/9e9f12cfc1f54c973dda6c85bd3a139d334520.jpg@160w_220h_1e_1c'}
<class 'str'>
{'index': '74', 'score': '9.2', 'title': '甜蜜蜜', 'time': '2015-02-13', 'actor': '黎明,张曼玉,曾志伟', 'image': 'http://p1.meituan.net/movie/8ad5a0f521fb15637dfdf9cab38d414453783.jpg@160w_220h_1e_1c'}
<class 'str'>
{'index': '75', 'score': '9.1', 'title': '触不可及', 'time': '2011-11-02(法国)', 'actor': '弗朗索瓦·克鲁塞,奥玛·希,安娜·勒尼', 'image': 'http://p0.meituan.net/movie/7874ba1378033b0b491df0cc56c43d25221208.jpg@160w_220h_1e_1c'}
<class 'str'>
{'index': '76', 'score': '8.8', 'title': '熔炉', 'time': '2011-09-22(韩国)', 'actor': '孔刘,郑有美,金智英', 'image': 'http://p0.meituan.net/movie/40/9791315.jpg@160w_220h_1e_1c'}
<class 'str'>
{'index': '77', 'score': '8.8', 'title': '大话西游之大圣娶亲', 'time': '2014-10-24', 'actor': '周星驰,朱茵,莫文蔚', 'image': 'http://p1.meituan.net/movie/dc2246233a6f5ac1e34c7176b602c8ca174557.jpg@160w_220h_1e_1c'}
<class 'str'>
{'index': '78', 'score': '9.1', 'title': '小鞋子', 'time': '1999-01-22(美国)', 'actor': '默罕默德·阿米尔·纳吉,Kamal Mirkarimi,Behzad Rafi', 'image': 'http://p1.meituan.net/movie/bc7b6ababa54e11577d45c05e84a33af54072.jpg@160w_220h_1e_1c'}
<class 'str'>
{'index': '79', 'score': '9.1', 'title': '素媛', 'time': '2013-10-02(韩国)', 'actor': '李来,薛耿求,严志媛', 'image': 'http://p0.meituan.net/movie/4cc4c55c29b77b090485ce9943bf6f87274708.jpg@160w_220h_1e_1c'}
<class 'str'>
{'index': '80', 'score': '9.0', 'title': '萤火之森', 'time': '2011-09-17(日本)', 'actor': '内山昂辉,佐仓绫音,后藤弘树', 'image': 'http://p0.meituan.net/movie/5420be40e3b755ffe04779b9b199e935256906.jpg@160w_220h_1e_1c'}
<class 'str'>
{'index': '81', 'score': '9.0', 'title': '窃听风暴', 'time': '2006-03-23(德国)', 'actor': '乌尔里希·穆埃,塞巴斯蒂安·科赫,马蒂娜·格德克', 'image': 'http://p0.meituan.net/movie/3985eaf3858bea0f2a3d966bf7ee2103178217.jpg@160w_220h_1e_1c'}
<class 'str'>
{'index': '82', 'score': '9.0', 'title': '穿条纹睡衣的男孩', 'time': '2008-09-12(英国)', 'actor': '阿萨·巴特菲尔德,维拉·法米加,大卫·休里斯', 'image': 'http://p1.meituan.net/movie/a0e0426a4390f5ecb49d25770a184dc0150779.jpg@160w_220h_1e_1c'}
<class 'str'>
{'index': '83', 'score': '8.9', 'title': '时空恋旅人', 'time': '2013-09-04(英国)', 'actor': '瑞秋·麦克亚当斯,多姆纳尔·格里森,比尔·奈伊', 'image': 'http://p0.meituan.net/movie/4abc8c932cfacfc0089e2883765d02d1295222.jpg@160w_220h_1e_1c'}
<class 'str'>
{'index': '84', 'score': '8.8', 'title': '借东西的小人阿莉埃蒂', 'time': '2010-07-17(日本)', 'actor': '志田未来,神木隆之介,大竹忍', 'image': 'http://p0.meituan.net/movie/ce262f261f69fc3d679020402336a4af270365.jpg@160w_220h_1e_1c'}
<class 'str'>
{'index': '85', 'score': '8.8', 'title': '恐怖直播', 'time': '2013-07-31(韩国)', 'actor': '河正宇,李璟荣,李大为', 'image': 'http://p0.meituan.net/movie/b5ff0216e689b3fcc065590c48cd5105255305.jpg@160w_220h_1e_1c'}
<class 'str'>
{'index': '86', 'score': '8.9', 'title': '7号房的礼物', 'time': '2013-01-23(韩国)', 'actor': '柳承龙,郑镇荣,朴信惠', 'image': 'http://p1.meituan.net/movie/6a6e74b2c289f9fa4433dd2dc04a7741331638.jpg@160w_220h_1e_1c'}
<class 'str'>
{'index': '87', 'score': '8.9', 'title': '海豚湾', 'time': '2009-07-31(美国)', 'actor': '里克·奥巴瑞,路易·西霍尤斯,哈迪·琼斯', 'image': 'http://p0.meituan.net/movie/7373dbba07b50ce6f24336edb96b2ea4271536.jpg@160w_220h_1e_1c'}
<class 'str'>
{'index': '88', 'score': '9.0', 'title': '忠犬八公物语', 'time': '1987-08-01(日本)', 'actor': '仲代达矢,春川真澄,井川比佐志', 'image': 'http://p1.meituan.net/movie/c835b3588d0061ed3b992388a0a96f15160913.jpg@160w_220h_1e_1c'}
<class 'str'>
{'index': '89', 'score': '8.9', 'title': '上帝之城', 'time': '2002-08-30(巴西)', 'actor': '亚历桑德雷·罗德里格斯,艾莉丝·布拉加,莱安德鲁·菲尔米诺', 'image': 'http://p1.meituan.net/movie/b553d13f30100db731ab6cf45668e52d94703.jpg@160w_220h_1e_1c'}
<class 'str'>
{'index': '90', 'score': '8.8', 'title': '辩护人', 'time': '2013-12-18(韩国)', 'actor': '宋康昊,郭度沅,吴达洙', 'image': 'http://p0.meituan.net/movie/8fabf3894b7d12d3d2f6e66404813670265761.jpg@160w_220h_1e_1c'}
<class 'str'>
{'index': '91', 'score': '9.1', 'title': '七武士', 'time': '1954-04-26(日本)', 'actor': '三船敏郎,志村乔,千秋实', 'image': 'http://p1.meituan.net/movie/73349facab53529ab9e079c6c8c7c059281729.jpg@160w_220h_1e_1c'}
<class 'str'>
{'index': '92', 'score': '8.9', 'title': '一一', 'time': '2000-09-20(法国)', 'actor': '吴念真,金燕玲,李凯莉', 'image': 'http://p1.meituan.net/movie/2c0a5fedf4b43d142121b91c6ccabe1b59051.jpg@160w_220h_1e_1c'}
<class 'str'>
{'index': '93', 'score': '8.9', 'title': '完美的世界', 'time': '1993-11-24(美国)', 'actor': '凯文·科斯特纳,克林特·伊斯特伍德,T·J·劳瑟', 'image': 'http://p1.meituan.net/movie/30310858fdab34c7a17cfd7ec8ad8bfc112201.jpg@160w_220h_1e_1c'}
<class 'str'>
{'index': '94', 'score': '9.0', 'title': '海洋', 'time': '2011-08-12', 'actor': '雅克·贝汉,姜文,兰斯洛特·贝汉', 'image': 'http://p0.meituan.net/movie/0018b57299d0d4540330a31244c880a9112971.jpg@160w_220h_1e_1c'}
<class 'str'>
{'index': '95', 'score': '9.0', 'title': '爱·回家', 'time': '2002-04-05(韩国)', 'actor': '俞承豪,金艺芬,童孝熙', 'image': 'http://p1.meituan.net/movie/36a893c53a13f9bb934071b86ae3b5c492427.jpg@160w_220h_1e_1c'}
<class 'str'>
{'index': '96', 'score': '8.9', 'title': '黄金三镖客', 'time': '1966-12-23(意大利)', 'actor': '克林特·伊斯特伍德,李·范·克里夫,埃里·瓦拉赫', 'image': 'http://p1.meituan.net/movie/9bff56ed3ea38bb1825daa1d354bc92352781.jpg@160w_220h_1e_1c'}
<class 'str'>
{'index': '97', 'score': '9.0', 'title': '我爱你', 'time': '2011-02-17(韩国)', 'actor': '宋在浩,李顺才,尹秀晶', 'image': 'http://p1.meituan.net/movie/ed50b58bf636d207c56989872a91f4cf305138.jpg@160w_220h_1e_1c'}
<class 'str'>
{'index': '98', 'score': '9.1', 'title': '迁徙的鸟', 'time': '2001-12-12(法国)', 'actor': '雅克·贝汉,Philippe Labro', 'image': 'http://p1.meituan.net/movie/a1634f4e49c8517ae0a3e4adcac6b0dc43994.jpg@160w_220h_1e_1c'}
<class 'str'>
{'index': '99', 'score': '8.8', 'title': '阿飞正传', 'time': '2018-06-25', 'actor': '张国荣,张曼玉,刘德华', 'image': 'http://p0.meituan.net/movie/885fc379c614a2b4175587b95ac98eb95045650.jpg@160w_220h_1e_1c'}
<class 'str'>
{'index': '100', 'score': '9.2', 'title': '英雄本色', 'time': '2017-11-17', 'actor': '狄龙,张国荣,周润发', 'image': 'http://p0.meituan.net/movie/3e5f5f3aa4b7e5576521e26c2c7c894d253975.jpg@160w_220h_1e_1c'}
<class 'str'>
[Finished in 15.7s]
''''''
import urllib.request #request实现请求发送和响应。urllib是Python内置的HTTP请求库
response = urllib.request.urlopen('https://www.python.org') #urlopen函数简单网页的GET请求抓取
#print(response.read().decode('utf-8')) #得到网页的内容
print(response.status) #得到状态码:200,成功,404找不到
print(response.getheaders())  #响应头所有内容
print(response.getheader('Server')) #得到响应头中server对应的内容
#http://localhost:5000/import requests
r = requests.get('https://www.baidu.com/')
print("r.text")http://maoyan.com/
http://maoyan.com/board
http://maoyan.com/board/4
http://maoyan.com/board/4?offset=10
http://maoyan.com/board/4?offset=20
排名信息
<i class="board-index board-index-1">1</i>
影片名字<p class="name"><a href="/films/1203" title="霸王别姬" data-act="boarditem-click" data-val="{movieId:1203}">霸王别姬</a></p>'''

Python语言实现用requests和正则表达式方法爬取猫眼电影排行榜前100部电影相关推荐

  1. python爬虫:爬取猫眼TOP100榜的100部高分经典电影

    1.问题描述: 爬取猫眼TOP100榜的100部高分经典电影,并将数据存储到CSV文件中 2.思路分析: (1)目标网址:http://maoyan.com/board/4 (2)代码结构: (3) ...

  2. Python爬取B站排行榜前100视频信息!

    前言 本文的文字及图片来源于网络,仅供学习.交流使用,不具有任何商业用途,如有问题请及时联系我们以作处理. PS:如有需要Python学习资料的小伙伴可以加点击下方链接自行获取 python免费学习资 ...

  3. Python爬取B站排行榜前100视频信息

    前言 本文的文字及图片来源于网络,仅供学习.交流使用,不具有任何商业用途,如有问题请及时联系我们以作处理. PS:如有需要Python学习资料的小伙伴可以加点击下方链接自行获取 python免费学习资 ...

  4. 多种方法爬取猫眼电影并分析(附代码)

    数据科学俱乐部 中国数据科学家社区 ♚ 作者:苏克,零基础转行python爬虫与数据分析 博客:https://www.makcyun.top 摘要: 作为小白,爬虫可以说是入门python最快和最容 ...

  5. 使用Requests库+re库爬取猫眼电影评分

    使用Requests库+re库爬取猫眼电影评分 作者:小胖 0x1: 分析 在简单的翻页中,我们可以知道.网页涵盖了以下几个规律 1.offset参数的值是除以30就是当前的页面 2.每个页面只有30 ...

  6. Python爬虫实战(1) | 爬取豆瓣网排名前250的电影(下)

    在Python爬虫实战(1) | 爬取豆瓣网排名前250的电影(上)中,我们最后爬出来的结果不是很完美,这对于"精益求精.追求完美的"程序猿来说怎么能够甘心 所以,今天,用pyth ...

  7. Python爬虫实战(1) | 爬取豆瓣网排名前250的电影(上)

    今天我们来爬取一下豆瓣网上排名前250的电影. 需求:爬取豆瓣网上排名前250的电影,然后将结果保存至一个记事本里. 开发环境: python3.9 pycharm2021专业版 我们先观察网页,看看 ...

  8. 利用requests库和Xpath爬取猫眼电影榜单【Python】

    博主的前几篇有关定向网络爬虫的博客,在解析HTML界面时,都是运用了BeautifulSoup和re库进行解析,这篇博客写一下怎么用Xpath语法进行HTML界面解析,从而得到我们想要的结果. 说明 ...

  9. 【python爬虫自学笔记】(实战)----爬取猫眼电影榜单Top100

    目的:爬取猫眼电影榜单TOP100的信息并保存在文档中. 查看网站结构,确定思路: 首先请求网页的地址为maoyan.com/board/4,电影信息的内容包含在一个个dd标签之中,分析dd标签中的内 ...

最新文章

  1. 如何在Python中获取字符串的子字符串?
  2. Linux内核分析--内核中的数据结构双向链表续【转】
  3. 学python是看书还是看视频-零基础自学Python是看书还是看视频?
  4. 【Android 事件分发】ItemTouchHelper 简介 ( 拖动/滑动事件 | ItemTouchHelper.Callback 回调 )
  5. 学Python一定要知道的十段经典代码
  6. Android组件化开发实践(九):自定义Gradle插件
  7. Ajax--WebService返回复杂二维数组
  8. Node.js与io.js那些事儿
  9. 深度好文:云网络丢包故障定位,看这一篇就够了~
  10. SAP ABAP 培训测试 试卷 答案
  11. Gantt - attachEvent事件监听 - 两个参数事件
  12. 三菱FX3UFX2NFX1N PLC 模拟器模拟通信功能,模拟PLC实体
  13. 服务器没有网卡驱动怎么看网卡型号,[怎么看网卡设备]怎么查看网卡驱动
  14. dva的state引用及connect连接
  15. Pixel3 支持中国电信2G语音、4G网络、VOLTE
  16. android投影到win7,求教,如何把安卓手机屏幕投射到win7电脑上-win7投屏设置,手机投屏到电脑win7...
  17. BurpSuite-Proxy使用
  18. 斯塔克尔伯格竞争模型
  19. 【控制工程】基础知识
  20. matlab 产生每次都一样的随机数

热门文章

  1. PHP生成登录图片验证码
  2. C语言复习4_while循环
  3. cogs62 [HNOI2004] 宠物收养所
  4. 2017《时间的朋友》思维导图(脑图整理版)
  5. [转] WebService开发笔记 1 -- 利用cxf开发WebService竟然如此简单
  6. 求解数组中子数组连续元素的之和的最大值
  7. Infragistics.NetAdvantage.WinForm.2012.v2 ComboBoxEditor的小Bug
  8. 二叉排序树查找不成功的平均查找长度
  9. 【Ubuntu】VMware下Ubuntu和主机的共享文件夹
  10. oracle中的case when then else end 用法