python requests库
Posted 玉树临风獾獾欢
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python requests库相关的知识,希望对你有一定的参考价值。
实例引入:
# coding=utf-8 import requests
response = requests.get(‘https://www.baidu.com/‘) #response get方式向服务器请求 print(type(response)) # 返回结果:<class ‘requests.models.Response‘> print(response.status_code) # 返回结果 一个状态码 200表示 服务器已成功处理了请求。 通常,这表示服务器提供了请求的网页。 print(type(response.text)) # response.text返回的是Unicode型的数据。 print(type(response.content)) # response.content返回的是bytes型也就是二进制的数据。 print(response.text) # 打印出unicode形式的数据 print(response.cookies) # 返回请求的cookies
以上是关于python requests库的主要内容,如果未能解决你的问题,请参考以下文章
django.core.exceptions.ImproperlyConfigured: Requested setting DEFAULT_INDEX_TABLESPACE的解决办法(转)(代码片段
[未解决问题记录]python asyncio+aiohttp出现Exception ignored:RuntimeError('Event loop is closed')(代码片段