Questions tagged «jsonlines»

3
加载和解析具有多个JSON对象的JSON文件
我正在尝试在Python中加载和解析JSON文件。但是我在尝试加载文件时遇到了麻烦: import json json_data = open('file') data = json.load(json_data) 产量: ValueError: Extra data: line 2 column 1 - line 225116 column 1 (char 232 - 160128774) 我看着18.2。json— Python文档中的JSON编码器和解码器,但是通读这个看起来糟透了的文档非常令人沮丧。 前几行(用随机条目匿名): {"votes": {"funny": 2, "useful": 5, "cool": 1}, "user_id": "harveydennis", "name": "Jasmine Graham", "url": "http://example.org/user_details?userid=harveydennis", "average_stars": 3.5, "review_count": 12, "type": "user"} {"votes": …
101 python  json  file  jsonlines 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.