Python爬虫包 BeautifulSoup 递归抓取实例详解

作者:lqh 时间:2023-03-06 11:46:26 

Python爬虫包 BeautifulSoup  递归抓取实例详解

概要:

爬虫的主要目的就是为了沿着网络抓取需要的内容。它们的本质是一种递归的过程。它们首先需要获得网页的内容,然后分析页面内容并找到另一个URL,然后获得这个URL的页面内容,不断重复这一个过程。

让我们以 * 为一个例子。

我们想要将 * 中凯文·贝肯词条里所有指向别的词条的链接提取出来。


# -*- coding: utf-8 -*-
# @Author: HaonanWu
# @Date:  2016-12-25 10:35:00
# @Last Modified by:  HaonanWu
# @Last Modified time: 2016-12-25 10:52:26
from urllib2 import urlopen
from bs4 import BeautifulSoup

html = urlopen('http://en.wikipedia.org/wiki/Kevin_Bacon')
bsObj = BeautifulSoup(html, "html.parser")

for link in bsObj.findAll("a"):
 if 'href' in link.attrs:
   print link.attrs['href']

上面这个代码能够将页面上的所有超链接都提取出来。


/wiki/Wikipedia:Protection_policy#semi
#mw-head
#p-search
/wiki/Kevin_Bacon_(disambiguation)
/wiki/File:Kevin_Bacon_SDCC_2014.jpg
/wiki/San_Diego_Comic-Con
/wiki/Philadelphia
/wiki/Pennsylvania
/wiki/Kyra_Sedgwick

首先,提取出来的URL可能会有一些重复的

其次,有一些URL是我们不需要的,如侧边栏、页眉、页脚、目录栏链接等等。

所以通过观察,我们可以发现所有指向词条页面的链接都有三个特点:

  • 它们都在id是bodyContent的div标签里

  • URL链接不包含冒号

  • URL链接都是以/wiki/开头的相对路径(也会爬到完整的有http开头的绝对路径)


from urllib2 import urlopen
from bs4 import BeautifulSoup
import datetime
import random
import re

pages = set()
random.seed(datetime.datetime.now())
def getLinks(articleUrl):
 html = urlopen("http://en.wikipedia.org"+articleUrl)
 bsObj = BeautifulSoup(html, "html.parser")
 return bsObj.find("div", {"id":"bodyContent"}).findAll("a", href=re.compile("^(/wiki/)((?!:).)*$"))

links = getLinks("/wiki/Kevin_Bacon")
while len(links) > 0:
 newArticle = links[random.randint(0, len(links)-1)].attrs["href"]
 if newArticle not in pages:
   print(newArticle)
   pages.add(newArticle)
   links = getLinks(newArticle)

其中getLinks的参数是/wiki/<词条名称>,并通过和 * 的绝对路径合并得到页面的URL。通过正则表达式捕获所有指向其他词条的URL,并返回给主函数。

主函数则通过调用递归getlinks并随机访问一条没有访问过的URL,直到没有了词条或者主动停止为止。

这份代码可以将整个 * 都抓取下来


from urllib.request import urlopen
from bs4 import BeautifulSoup
import re

pages = set()
def getLinks(pageUrl):
 global pages
 html = urlopen("http://en.wikipedia.org"+pageUrl)
 bsObj = BeautifulSoup(html, "html.parser")
 try:
   print(bsObj.h1.get_text())
   print(bsObj.find(id ="mw-content-text").findAll("p")[0])
   print(bsObj.find(id="ca-edit").find("span").find("a").attrs['href'])
 except AttributeError:
   print("This page is missing something! No worries though!")

for link in bsObj.findAll("a", href=re.compile("^(/wiki/)")):
   if 'href' in link.attrs:
     if link.attrs['href'] not in pages:
       #We have encountered a new page
       newPage = link.attrs['href']
       print("----------------\n"+newPage)
       pages.add(newPage)
       getLinks(newPage)
getLinks("")

一般来说Python的递归限制是1000次,所以需要人为地设置一个较大的递归计数器,或者用其他手段让代码在迭代1000次之后还能运行。

感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!

来源:http://blog.csdn.net/u013007900/article/details/53868703

标签:Python,BeautifulSoup,递归抓取
0
投稿

猜你喜欢

  • python实现三种随机请求头方式

    2022-01-17 17:06:39
  • Python语言中的数据类型-序列

    2023-08-31 14:36:24
  • python实现顺序表的简单代码

    2022-01-10 05:03:20
  • 用python写asp详细讲解

    2022-02-26 13:21:36
  • 常用的数据库访问方式是什么?

    2009-11-01 15:08:00
  • python实现两个经纬度点之间的距离和方位角的方法

    2022-03-15 02:41:27
  • 如何创建SQL Server 2000故障转移群集

    2024-01-23 17:00:23
  • Python简单获取网卡名称及其IP地址的方法【基于psutil模块】

    2022-10-07 19:52:15
  • Python 爬虫的工具列表大全

    2023-03-29 06:27:57
  • 分布式系统CAP定理中的P原理解析

    2022-09-04 11:16:15
  • PyCharm Community安装与配置的详细教程

    2022-05-03 18:20:40
  • 基于Python测试程序是否有错误

    2021-05-09 22:45:35
  • Python实现emoji表情的简单方法

    2023-07-09 13:10:22
  • js更好地截取字符串

    2008-03-11 19:00:00
  • 原生Js与jquery的多组处理, 仅展开一个区块的折叠效果

    2024-04-17 10:06:48
  • Django+Uwsgi+Nginx如何实现生产环境部署

    2023-02-08 00:48:48
  • Python cookbook(数据结构与算法)在字典中将键映射到多个值上的方法

    2023-07-14 14:37:00
  • python实现颜色rgb和hex相互转换的函数

    2021-10-05 23:18:13
  • SQL触发器实例讲解

    2012-04-13 11:52:48
  • pycharm激活方法到2099年(激活流程)

    2022-11-17 05:45:35
  • asp之家 网络编程 m.aspxhome.com