首页 > 代码库 > python Requests模块的使用简介
python Requests模块的使用简介
Requests的安装:
pip install Requests
Requests的使用:
import requests url = "http://www.mzitu.com" response = requests.get(url) # 获得请求 response.encoding = "utf-8" # 改变其编码 html = response.text # 获得网页内容 binary__content = response.content # 获得二进制数据 raw = requests.get(url, stream=True) # 获得原始响应内容 headers = {‘user-agent‘: ‘my-app/0.0.1‘} # 定制请求头 r = requests.get(url, headers=headers) cookies = {"cookie": "# your cookie"} # cookie的使用 r = requests.get(url, cookies=cookies) # 后续
tips:
raw = requests.get(url, stream=True) # 将文本流保存到文件 filename = ‘example.jpg‘ with open(filename, ‘wb‘) as fd: for chunk in raw.iter_content(): fd.write(chunk) fd.close()
python Requests模块的使用简介
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。