011 Python 爬虫库安装简单使用

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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 爬虫库安装简单使用的主要内容,如果未能解决你的问题,请参考以下文章

爬虫基础库

爬虫基本库

Python:requests库BeautifulSoup4库的基本使用(实现简单的网络爬虫)

python应用之爬虫实战2 请求库与解析库

Python简单的爬虫

Python爬虫学习使用Beautiful Soup库