首页 > 代码库 > 011 Python 爬虫库安装简单使用
011 Python 爬虫库安装简单使用
# Python 爬虫基础知识
● Python 爬虫基础知识
安装爬虫库
beautifulsoup4
pip install beautifulsoup4
lxml HTML 解析器
pip install html5lib
html5lib
pip install html5lib
● 使用库
设置 encoding=‘utf-8‘ 编码
1 # -*- coding: UTF-8 -*- 2 from bs4 import BeautifulSoup 3 import lxml 4 html_file = open(‘text.html‘,encoding=‘utf-8‘) 5 6 soup = BeautifulSoup(html_file, "lxml") 7 8 for item in soup.find_all(‘span‘): 9 print(item.attrs) 10 11 html_file.close() 12
011 Python 爬虫库安装简单使用
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。