Python 爬虫

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python 爬虫相关的知识,希望对你有一定的参考价值。

1.用Requests爬去你想要的爬取的网站

1
2
3
4
import requests
 
= requests.get(‘https://www.baidu.com‘)
print r.text # 打印网站源代码

注意:使用Requests前需要安装Requests库,安装方法,命令行输入:

1
pip install requests

2. 用Beautiful Soup解析网站源代码

安装:

1
pip install beautifulsoup4

解析:

1
2
3
4
5
6
7
8
from bs4 import BeautifulSoup # 引用BeautifulSoup库
import requests               # 引用Requests库
 
= requests.get(‘https://www.baidu.com‘)
html = r.text                 # 获取网站源代码
soup = BeautifulSoup(html)    #创建 beautifulsoup 对象
print soup.a                  # 获取网页的链接 (a标签)
# ...

PS:

Requests库的具体用法,见 http://docs.python-requests.org/zh_CN/latest/

BeautifulSoup库的具体用法,见 https://www.crummy.com/software/BeautifulSoup/bs4/doc.zh/

以上是关于Python 爬虫的主要内容,如果未能解决你的问题,请参考以下文章

Python练习册 第 0013 题: 用 Python 写一个爬图片的程序,爬 这个链接里的日本妹子图片 :-),(http://tieba.baidu.com/p/2166231880)(代码片段

python爬虫学习笔记-M3U8流视频数据爬虫

爬虫遇到头疼的验证码?Python实战讲解弹窗处理和验证码识别

python网络爬虫

Python 利用爬虫爬取网页内容 (div节点的疑惑)

为啥我的python爬虫界面与博主不一样