码迷,mamicode.com
首页 > 编程语言 > 详细

python Requests模块的使用简介

时间:2016-12-03 01:23:20      阅读:225      评论:0      收藏:0      [点我收藏+]

标签:request   简介   tip   name   get   进制   text   color   file   

 

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模块的使用简介

标签:request   简介   tip   name   get   进制   text   color   file   

原文地址:http://www.cnblogs.com/sxhui/p/6127636.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!