博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Python爬虫学习==>第十章:使用Requests+正则表达式爬取猫眼电影
阅读量:6420 次
发布时间:2019-06-23

本文共 2022 字,大约阅读时间需要 6 分钟。

学习目的:

   通过一个一个简单的爬虫应用,初窥门径。

 

正式步骤


 

Step1:流程框架

  1.  抓取单页内容:利用requests请求目标站点,得到单个页面的html代码,返回结果;
  2. 正则表达式分析:根据html页面代码分析得到猫眼电影的名称、主演、上映时间、评分、图片信息等;
  3. 保存至文件:通过文件的形式将结果保存,每一部电影一个结果一行json字符串;
  4. 开启循环及多线程:对页面内容进行遍历,开启多线程提高抓取效率

 

Step2:实际步骤+分析

1. 在pycharm中新建一个Python项目,新建一个文件spider.py

2.运行代码:

# -*-  coding:utf-8 -*-import requestsimport reimport jsonfrom requests.exceptions import RequestExceptionfrom multiprocessing import Pooldef get_page_html(url):    #设置headers是猫眼加了反爬机制    headers = {        'user-agent': 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36'    }    try:        response = requests.get(url,headers=headers)        if response.status_code == 200:            return response.text        return None  #如果页面状态码不为200,则函数终止    except RequestException:        return None  #如果测试代码异常,则无返回,函数结束def parse_page_html(html):    pattern = re.compile('
.*?board-index.*?>(\d+).*?data-src="(.*?)".*?name">
(.*?).*?star">(.*?)

.*?releasetime">(.*?)

' +'.*?integer">(.*?).*?fraction">(.*?).*?
',re.S) items = re.findall(pattern,html) for item in items: yield { 'index':item[0], 'image':item[1], 'name':item[2], 'actor':item[3].strip()[3:], 'date':item[4].strip()[5:], 'score':item[5]+item[6] }def save_file(content): with open("detail.txt",'a',encoding='utf-8') as f: f.write(json.dumps(content,ensure_ascii=False)+'\n') f.close()def main(offset): url = "http://maoyan.com/board/4?offset=" + str(offset) html = get_page_html(url) for detail in parse_page_html(html): save_file(detail)if __name__ == '__main__': # for offset in range(10): # main(offset*10) pool = Pool() pool.map(main,[i*10 for i in range(10)])

 

运行结果不添加了,此外,最后注释掉的代码,功能是非多线程的 

 

 

学习总结:


 

   爬虫涉及的Python基础应用非常多,还是那个8/2原则,先掌握20%最常用的,最重要的,再慢慢熟悉80%需要学会用即可的功能

转载于:https://www.cnblogs.com/wuzhiming/p/8723002.html

你可能感兴趣的文章
linux下mongodb定时备份指定的集合
查看>>
SMP架构多线程程序的一种性能衰退现象—False Sharing
查看>>
oVirt JBAS server start failed, ajp proxy cann't server correct. ovirt-engine URL cann't open
查看>>
CDP WebConsole上线公告
查看>>
ubuntu下安装摄像头应用程序xawtv
查看>>
GFS2,GFS,EXT2,EXT3 SEQ-write performance compare
查看>>
PostgreSQL 如何比较两个表的定义是否一致
查看>>
PHPCMS2008利用EXP
查看>>
扩展android-volley来开发Android restful client
查看>>
Linux Mint下Kindle Fire调试android程序
查看>>
自定义Background
查看>>
git笔记
查看>>
Android开源中国客户端学习 配置文件读写 以及其他一些工具类 <13>
查看>>
国外的opencv识别文档
查看>>
java获取指定字符串的下一个
查看>>
多行数据提交到Struts的ActionForm的List属性中
查看>>
理解RESTful架构
查看>>
Linux自动压缩备份目录文件与恢复
查看>>
Android 图片相关整理
查看>>
创建一个Hello World(React),组件的作用
查看>>