我想在 Python 中将 JSONL 文件加载为 JSON 对象。有没有简单的方法可以做到这一点?
我想在 Python 中将 JSONL 文件加载为 JSON 对象。有没有简单的方法可以做到这一点?
分割 splitlines 可以为您解决这个问题,因此一般来说,下面的代码适合您:
import json
result = [json.loads(jline) for jline in jsonl_content.splitlines()]
如果这是响应对象,则结果将是:
result = [json.loads(jline) for jline in response.read().splitlines()]