python应用之爬虫实战2 请求库与解析库
Posted woz333333
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python应用之爬虫实战2 请求库与解析库相关的知识,希望对你有一定的参考价值。
知识内容:
1.requests库
2.selenium库
3.BeautifulSoup4库
一、requests库
1.安装及简单使用
(1)安装
1 pip3 install requests
(2)简单使用
1 import requests 2 3 r = requests.get("http://www.baidu.com") # 发起get请求 4 print(r.status_code) # 打印状态码 5 r.encoding = "utf-8" # 指定编码 6 print(r.text) # 输出文本内容
2.基于GET请求
requests.get(url, params=None, **kwargs)
3.基于POST请求
4.响应Response
以上是关于python应用之爬虫实战2 请求库与解析库的主要内容,如果未能解决你的问题,请参考以下文章
Python爬虫:通过爬取CSDN博客信息,学习lxml库与XPath语法
Python爬虫技术栈 | urllib库&&urllib3库
Python爬虫技术栈 | urllib库&&urllib3库