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的使用的详细内容...
声明:本文来自网络,不代表【好得很程序员自学网】立场,转载请注明出处:http://www.haodehen.cn/did84704