Python-Requests库的安装和调用

Posted caizigary

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python-Requests库的安装和调用相关的知识,希望对你有一定的参考价值。

#使用pip或者pip3安装requests库
pip3 install requests

#requests库:
python #输入python进入命令行模式
在cmd命令行中依次运行以下代码,或者直接在PyCharm中直接运行:

import requests  # 导入requests库

# 添加请求头
headers = {
    User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.122 Safari/537.36}
# url定义为百度
url = http://www.baidu.com
# 调用requests库的get函数
response = requests.get(url, headers=headers)  # 调用requests库的get方法
# 查看response状态码是否为200
print(response.status_code)
# 获得baidu源代码
print(response.text)

 

获得Response状态码200和百度源代码

 

以上是关于Python-Requests库的安装和调用的主要内容,如果未能解决你的问题,请参考以下文章

Requests库

python-requests模拟上传文件-带参数

requests库的基础使用

Android 安装包优化使用 lib7zr.so 动态库处理压缩文件 ( jni 中 main 函数声明 | 命令行处理 | jni 调用 lib7zr.so 函数库处理压缩文件完整代码 )(代码片

XHR 请求在 Scrapy 中失败,但在 python-requests 中有效

python-requests包