beautifulsoup 包中是否有允许用户在站点内设置爬取深度的功能?我对 Python 比较陌生,但我之前在 R 中使用过 Rcrawler,并且 Rcrawler 提供了“MaxDepth”,因此爬虫将进入该域内主页的一定数量的链接。
Rcrawler(Website = "https://stackoverflow.com/", no_cores = 4, no_conn = 4, ExtractCSSPat = c("div"), ****MaxDepth=5****)
我当前使用 Python 编写的脚本的基础知识会解析页面上的所有可见文本,但我想设置一个爬行深度。
from bs4 import BeautifulSoup
import bs4 as bs
import urllib.request
def tag_visible(element):
if element.parent.name in ['style', 'script', 'head', 'title', 'meta', '[document]']:
return False
elif isinstance(element,bs.element.Comment):
return False
return True
def text_from_html(body):
soup = BeautifulSoup(html, 'lxml')
texts = soup.findAll(text=True)
visible_texts = filter(tag_visible, texts)
return u" ".join(t.strip() for t in visible_texts)
html = urllib.request.urlopen('https://stackoverflow.com/').read()
print(text_from_html(html))
任何见解或方向表示赞赏。