Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
所附图像是来自 AWS Rekognition 的简单对象检测结果。我想知道是否有人可以帮助解决如何将响应保存到文件(CSV 或 TEXT 或 JSON)。
response = client.detect_labels( Image={ 'S3Object': { 'Bucket': 'arkladetest1', 'Name': photo}}) print(response)
代码和响应
JSON文件:
with open('response.txt', 'w') as outfile: json.dump(response, outfile)
from pathlib import Path import json json_file = json.dumps(response) Path('file_name.json').write_text(json_file)
您可以使用 pathlib 模块中的 Path 类写入 json 文件。