python实现http接口请求并解析json格式数据

在Python项目开发中,如果需要与其他服务进行接口调用,可以使用requests库来发送HTTP请求,并使用json库来解析JSON响应。以下是如何实现一个HTTP接口请求并解析JSON响应的步骤:

步骤一:安装requests库

如果还没有安装requests库,可以使用以下命令进行安装:

pip install requests

步骤二:发送HTTP请求并解析JSON响应

以下是一个完整的示例代码,展示如何使用requests库发送HTTP请求,并使用json库解析响应中的JSON数据。

import requests
import json

def get_json_response(url, params=None, headers=None):
    try:
        response = requests.get(url, params=params, headers=headers)
        response.raise_for_status()  # 检查请求是否成功
        return response.json()  # 解析并返回JSON响应
    except requests.exceptions.HTTPError as http_err:
        print(f"HTTP error occurred: {http_err}")
    except requests.exceptions.RequestException as req_err:
        print(f"Request error occurred: {req_err}")
    except json.JSONDecodeError as json_err:
        print(f"JSON decode error: {json_err}")
    return None

# 示例使用
url = "https://api.example.com/data"
params = {'param1': 'value1', 'param2': 'value2'}
headers = {'Authorization': 'Bearer your_token'}

json_data = get_json_response(url, params, headers)
if json_data:
    print(json.dumps(json_data, indent=4))  # 美化输出JSON数据
else:
    print("Failed to retrieve data")

代码说明

导入库:

requests库用于发送HTTP请求。

json库用于解析JSON数据。

定义函数get_json_response:

该函数接受URL、查询参数(可选)和请求头(可选)作为参数。

使用requests.get方法发送GET请求。

使用response.raise_for_status()方法检查请求是否成功(状态码200)。

使用response.json()方法解析并返回JSON响应。

捕获并处理可能发生的HTTP错误、请求错误和JSON解析错误。

示例使用:

设置请求的URL、查询参数和请求头。

调用get_json_response函数获取JSON数据。

如果获取成功,使用json.dumps方法美化输出JSON数据。

完整示例代码

import requests
import json

def get_json_response(url, params=None, headers=None):
    try:
        response = requests.get(url, params=params, headers=headers)
        response.raise_for_status()  # 检查请求是否成功
        return response.json()  # 解析并返回JSON响应
    except requests.exceptions.HTTPError as http_err:
        print(f"HTTP error occurred: {http_err}")
    except requests.exceptions.RequestException as req_err:
        print(f"Request error occurred: {req_err}")
    except json.JSONDecodeError as json_err:
        print(f"JSON decode error: {json_err}")
    return None

# 示例使用
url = "https://api.example.com/data"
params = {'param1': 'value1', 'param2': 'value2'}
headers = {'Authorization': 'Bearer your_token'}

json_data = get_json_response(url, params, headers)
if json_data:
    print(json.dumps(json_data, indent=4))  # 美化输出JSON数据
else:
    print("Failed to retrieve data")

以上就是使用python调用接口的方法步骤,这里我们可以优化一下,在多少次调用后失败返回:

python 复制代码
   while True:
        try:
            if fails >= 3:
                # print('设备已失去链接: ', fails)
                logger.info('===============设备已失去链接:===============================:' + url)
                text = ''
                break
            #cert = '/root/ssl/myCert.crt'
            cert=('/root/ssl/myCert.crt','/root//ssl/myKey.key')
         
            else:
                fails += 1
                logger.info('===============网络请求状态错误:===============================:' + str(ret))
                # print('网络连接出现问题, 正在尝试再次请求: ', fails)
                continue
        except Exception as ex:
            #logger.info('===============证书认证错误::===============================:' + str(ex))
            #print('------------请求连接出现异常------------'+str(ex))
            #print('接口请求异常' + str(ex))
相关推荐
云空10 分钟前
《Python 与 SQLite:强大的数据库组合》
数据库·python·sqlite
凤枭香1 小时前
Python OpenCV 傅里叶变换
开发语言·图像处理·python·opencv
测试杂货铺1 小时前
外包干了2年,快要废了。。
自动化测试·软件测试·python·功能测试·测试工具·面试·职场和发展
艾派森1 小时前
大数据分析案例-基于随机森林算法的智能手机价格预测模型
人工智能·python·随机森林·机器学习·数据挖掘
小码的头发丝、1 小时前
Django中ListView 和 DetailView类的区别
数据库·python·django
阑梦清川2 小时前
JavaEE初阶---网络原理(五)---HTTP协议
网络·http·java-ee
阿尔帕兹2 小时前
构建 HTTP 服务端与 Docker 镜像:从开发到测试
网络协议·http·docker
Chef_Chen2 小时前
从0开始机器学习--Day17--神经网络反向传播作业
python·神经网络·机器学习
千澜空3 小时前
celery在django项目中实现并发任务和定时任务
python·django·celery·定时任务·异步任务
斯凯利.瑞恩3 小时前
Python决策树、随机森林、朴素贝叶斯、KNN(K-最近邻居)分类分析银行拉新活动挖掘潜在贷款客户附数据代码
python·决策树·随机森林