python爬虫基础教程:requests库(二)代码实例
作者:嗨学编程 时间:2023-05-31 07:56:35
get请求
简单使用
import requests
'''
想要学习Python?Python学习交流群:973783996满足你的需求,资料都已经上传群文件,可以自行下载!
'''
response = requests.get("https://www.baidu.com/")
#text返回的是unicode的字符串,可能会出现乱码情况
# print(response.text)
#content返回的是字节,需要解码
print(response.content.decode('utf-8'))
# print(response.url) #https://www.baidu.com/
# print(response.status_code) #200
# print(response.encoding) #ISO-8859-1
添加headers和params
import requests
params = {
'wd':'python'
}
headers = {
'User-Agent':'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36'
}
response = requests.get("https://www.baidu.com/s",params=params,headers=headers)
#content返回的是字节,需要解码
with open('baidu.html','w',encoding='utf-8') as f:
f.write(response.content.decode('utf-8'))
POST请求
爬去拉钩网职位信息
import requests
url = "https://www.lagou.com/jobs/positionAjax.json?city=%E5%8C%97%E4%BA%AC&needAddtionalResult=false"
data = {
'first':'true',
'pn':1,
'kd':'python'
}
headers = {
"User-Agent":"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36",
"Referer":"https://www.lagou.com/jobs/list_python?city=%E5%8C%97%E4%BA%AC&cl=false&fromSearch=true&labelWords=&suginput="
}
response = requests.post(url,data=data,headers=headers)
# print(response.text)
print(type(response.text)) #<class 'str'>
print(type(response.json())) #<class 'dict'>
print(response.json()) #获取为字典的形式
使用代理
import requests
proxy = {'http':'115.210.31.236.55:9000'}
response = requests.get("https://www.baidu.com/",proxies=proxy)
print(response.content.decode('utf-8'))
session登录
# _*_ coding:utf-8 _*_
import requests
# 1. 创建session对象,可以保存Cookie值
ssion = requests.session()
# 2. 处理 headers
headers = {'User-Agent':'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.101 Safari/537.36'}
# 3. 需要登录的用户名和密码
data = {"email":"158xxxxxxxx", "password":"pythonxxxxxxx"}
# 4. 发送附带用户名和密码的请求,并获取登录后的Cookie值,保存在ssion里
ssion.post("http://www.renren.com/PLogin.do", data = data)
# 5. ssion包含用户登录后的Cookie值,可以直接访问那些登录后才可以访问的页面
response = ssion.get("http://zhibo.renren.com/news/108")
# 6. 打印响应内容
print(response.text)
以上所述是小编给大家介绍的python爬虫基础教程:requests库(二)详解整合网站的支持!
来源:https://blog.csdn.net/fei347795790/article/details/89153257
标签:python,爬虫,requests
0
投稿
猜你喜欢
分析运行中的 Python 进程详细解析
2021-09-19 14:47:30
Springboot连接数据库及查询数据完整流程
2024-01-18 07:25:29
Python抓包程序mitmproxy安装和使用过程图解
2023-12-09 19:45:12
JavaScript中变量、指针和引用功能与操作示例
2024-04-17 10:07:16
JavaScript中的全局对象介绍
2024-04-22 22:41:29
Python+Tkinter制作专属图形化界面
2022-10-26 23:31:19
Python常见内置高阶函数即高阶函数用法
2021-03-19 20:38:07
Go JSON编码与解码的实现
2024-02-18 23:53:56
mysql多版本并发控制MVCC的实现
2024-01-23 21:49:28
Python爬取视频时长场景实践示例
2021-08-14 01:32:56
Python对列表的操作知识点详解
2022-05-08 09:06:39
python 找出list中最大或者最小几个数的索引方法
2022-08-12 13:23:11
如何用python写个模板引擎
2022-07-29 06:09:45
SqlServer数据库远程连接案例教程
2024-01-21 10:16:08
使用豆瓣提供的国内pypi源 <font color=red>原创</font>
2023-05-31 20:39:09
Go语法糖之‘...’ 的使用实例详解
2024-04-26 17:16:43
理解生产者消费者模型及在Python编程中的运用实例
2021-04-07 01:01:59
JS实现常用导航鼠标下经过下方横线自动跟随效果
2024-04-17 10:11:55
带你从内存的角度看Python中的变量
2021-02-13 13:27:50
用Python的Tornado框架结合memcached页面改善博客性能
2023-07-21 09:14:20