在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))