day18Url

作者: liuperson | 来源:发表于2018-09-12 17:33 被阅读0次
    image.png image.png image.png image.png image.png image.png image.png image.png

    网络请求

    
    import requests
    
    #1.准备url(),其实是地址,请求的是接口数据
    url='https://www.apiopen.top/satinApi?type=1&page=1'
    
    #2.发送请求(GET)
    """
    get(url,参数对应字典)
    post(url,参数对应字典)
    返回值是服务器返回的响应
    """
    #1.这是自己拼
    response=requests.get(url)
    
    #2.别人帮你拼
    # requests.get('https://www.apiopen.top/satinApi?',{type:1})
    
    print(response)
    
    # 3.通过响应获取服务器返回的数据
    # a。获取字符串类型的数据
    print(response.text)
    # b.获取json格式的数据
    print(response.json()['data'])
    # c.获取二进制格式的数据
    print(response.content)
    # d.获取响应头
    print(response.headers)
    
    

    相关文章

      网友评论

          本文标题:day18Url

          本文链接:https://www.haomeiwen.com/subject/qdkbgftx.html