好得很程序员自学网

<tfoot draggable='sEl'></tfoot>

Python数据采集--Beautifulsoup的使用

Python网络数据采集1-Beautifulsoup的使用

来自此书: [美]Ryan Mitchell 《Python网络数据采集》 ,例子是照搬的,觉得跟着敲一遍还是有作用的,所以记录下来。

import requestsfrom bs4 import BeautifulSoup

res = requests.get('https://HdhCmsTestpythonscraping测试数据/pages/page1.html')
soup = BeautifulSoup(res.text, 'lxml')print(soup.h1) 

查看更多关于Python数据采集--Beautifulsoup的使用的详细内容...

  阅读:43次