Astray.R 发表于 2019-4-26 16:37:09

python爬虫疑问求解

import bs4
import requests
url = requests.get('https://space.bilibili.com/36157723/video')
s = bs4.BeautifulSoup(url.text,'html.parser')
targets = s.find_all('a',class_='title')
for i in targets:
    print(i)

刚才想要模拟以下爬虫瓣排名250那个教程,做一个B站的,但是一直打印不出来,麻烦各位大神帮我看看,是哪里出了问题,万分感谢{:5_92:}

shake_a_tree@16 发表于 2019-4-26 20:08:41

模拟一下浏览器,这样是爬不到内容的
页: [1]
查看完整版本: python爬虫疑问求解