关于一点爬虫的问题
# 找出一共有多少个页面def find_depth(res):
soup = bs4.BeautifulSoup(res.text, 'html.parser')
depth = soup.find('span', class_='next').previous_sibling.previous_sibling.text
return int(depth)
这里的这个(previous_sibling)是什么意思呢 上一个兄弟节点~~
另外建议楼主先百度,百度比来发个帖子快多了~~ bs使用:https://gitee.com/python3webspider/Python3WebSpider/blob/master/4.2-BeautifulSoup%E7%9A%84%E4%BD%BF%E7%94%A8.md
基础打好,事半功倍。
爬虫教程:https://gitee.com/Python3WebSpider/Python3WebSpider
页:
[1]