gpt4 book ai didi

json - 如何测试二进制的 API 响应

转载 作者:行者123 更新时间:2023-12-05 01:23:46 26 4
gpt4 key购买 nike

问题:
测试二进制响应的 API 响应的最简单方法是什么?

上下文:
我有一个函数可以对某些数据进行 API 调用。该 API 调用的响应 (api_response) 将是 JSON 或二进制。如果是 JSON,并且如果它包含 percent_complete,那么数据还没有准备好,我的函数使用 percent_complete key:pair 值来为用户更新进度条。

如果响应是 JSON 且包含 meta,那么我的数据已准备就绪并已作为 JSON 对象返回。

如果响应是二进制的,那么我的数据也准备好了,但是已经返回为 .xlsx [binary]。这是数据未准备好时的响应,您会看到 percent_complete 用于进度条 -

{
"data": {
"id": "2768510",
"type": "jobs",
"attributes": {
"job_type": "PORTFOLIO_VIEW_RESULTS",
"started_at": "2022-04-14T16:19:21Z",
"parameters": {
"end_date": "2022-04-14",
"output_type": "json",
"view_id": 304078,
"portfolio_id": 1,
"portfolio_type": "firm",
"start_date": "2022-04-14"
},
"percent_complete": 0.0,
"status": "In Progress"
},
"relationships": {
"creator": {
"links": {
"self": "/v1/jobs/2768510/relationships/creator",
"related": "/v1/jobs/2768510/creator"
},
"data": {
"type": "users",
"id": "731221"
}
}
},
"links": {
"self": "/v1/jobs/2768510"
}
},
"included": []

当前函数:
以下函数继续每 5 秒调用一次 API(根据上述 API,使用 self 中的 7 位代码对象),直到 meta 在 JSON 对象中返回(因此我的数据作为 JSON 对象返回)并将 JSON 对象作为 api_response 返回。

否则,API 调用每 5 秒继续一次,并简单地使用 percent_complete 更新状态栏(使用 enlighten 库)

def api_call():
# Calling function containing the JOBS API endpoint for calling, until its RESPONSE == data requested.
endpoint_url = endpoint_initializer()

# Calling function containing API credentials
key, secret, url, group_url = ini_reader()

# Setting variable for use in progress bar, used to reflect API 'percent_complete' key pair value.
BAR_FORMAT = u'{id_value} {percentage:3.0f}%|{bar}| ' u'[{elapsed}<{eta}, {rate:.2f} %/s]'
manager = enlighten.get_manager()

date = dt.datetime.today().strftime("%Y-%m-%d")
print("------------------------------------\n","API URL constructed for:", date, "\n------------------------------------")
print("----------------------------------------------------------------------\n","Addepar Endpoint:", endpoint_url, "\n----------------------------------------------------------------------")

# Setting variable with counter for progress bar.
pbar = manager.counter(total=100, bar_format=BAR_FORMAT)

while True:
response = requests.get(url = endpoint_url, auth = HTTPBasicAuth(key, secret), headers = {"Vendor-firm": "665"})
api_response = json.loads(response.text)

if "meta" not in api_response:
id_value = "id"
res1 = [val[id_value] for key, val in api_response.items() if id_value in val]
id_value = "".join(res1)
percent_value = "percent_complete"
res2 = api_response["data"]["attributes"].get("percent_complete", '')*100
pbar.count = res2
pbar.update(incr=0, id_value=id_value)
time.sleep(5)

elif "meta" in api_response:
pbar.count = 100
pbar.update(incr=0, id_value=id_value)
pbar.close()
return api_response

我如何扩展此函数以测试响应 (api_response) 是否包含二进制文件,如果是,则返回 api_response

最佳答案

一个普通的 http 服务器应该返回一个适当的内容类型。请检查:

response.headers['content-type']

关于json - 如何测试二进制的 API 响应,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/71874924/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com