-1

所附图像是来自 AWS Rekognition 的简单对象检测结果。我想知道是否有人可以帮助解决如何将响应保存到文件(CSV 或 TEXT 或 JSON)。

response = client.detect_labels(
    Image={ 'S3Object': {
            'Bucket': 'arkladetest1',
            'Name': photo}})           
print(response)

代码和响应

4

2 回答 2

0

JSON文件:

with open('response.txt', 'w') as outfile:
    json.dump(response, outfile)
于 2020-08-25T03:22:10.157 回答
0
from pathlib import Path
import json

json_file = json.dumps(response)
Path('file_name.json').write_text(json_file)

您可以使用 pathlib 模块中的 Path 类写入 json 文件。

于 2020-08-25T03:33:53.750 回答