python用requests实现http请求代码实例
时间:2021-01-03 15:29:49|栏目:Python代码|点击: 次
这篇文章主要介绍了python用requests实现http请求过程解析,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下
1. get
import requests
# 最简单的get请求
r = requests.get(url)
print(r.status_code)
print(r.json())
# url 中?key=value&key=value
r = requests.get(url, params=params)
# form 表单
params = {"username":"name", "password":"passw0rd"}
headers = {'Content-Type':'application/x-www-form-urlencoded'}
r = requests.get(url, params=params, headers=headers)
# 下载
r = requests.get(url)
r.raise_for_status()
with open(target, 'wb') as f:
for ch in r.iter_content(10000):
result_file_size += f.write(ch)
2. post请求
data = {'name':'train', 'device':'CN0989'}
r = requests.post(url, json=data)
#上传
files = {
"file": (os.path.basename(filepath), open(filepath, "rb"), "application/zip")
}
print('POST %s'%url)
with open(filepath, 'rb') as f:
r = requests.post(url, files=files)
3. 登录
_session = requests.Session()
# login
url = '%s/login'%_basic_url
params = {"username":"admin", "password":"admin"}
headers = {'Content-Type':'application/x-www-form-urlencoded'}
r = _session.post(url, params=params, headers=headers)
#做其他请求
r = _session.get(url)
_session.close()
上一篇:python实现五子棋小游戏
栏 目:Python代码
本文标题:python用requests实现http请求代码实例
本文地址:http://www.codeinn.net/misctech/39832.html






