W1ND123 发表于 2021-11-30 12:33:57

关于一点爬虫的问题

# 找出一共有多少个页面
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)是什么意思呢

lightninng 发表于 2021-11-30 12:55:56

上一个兄弟节点~~
另外建议楼主先百度,百度比来发个帖子快多了~~

suchocolate 发表于 2021-11-30 13:08:17

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]
查看完整版本: 关于一点爬虫的问题