2018-08-07pyhton学习http(待续)

from requests import request

if __name__ == '__main__':
    # https: // www.apiopen.top / satinApi?type = 1 & page = 1
    # GET请求:参数以?号的形式拼接到url地址后面,参数名=值的形式,多个参数用&隔开
    # 1.确定url
    url = 'https://www.apiopen.top/satinApi?type=1&page=1'

    # 2.发送请求
    """
    request(请求方式,请求地址)
    返回值:响应
    """
    response = request('GET', url)
    print(type(response), response)

    # 1.以字符串的形式获取响应体(服务器返回的数据)
    text = response.text
    print(type(text), text)

    # 2.以json的形式获取响应体
    json = response.json()
    print(type(json),json)

    # 3.以二进制的形式获取响应体
    content = response.content
    print(type(content), content)

你可能感兴趣的:(2018-08-07pyhton学习http(待续))