PYTHON:使用 json 行读取 .jl 文件导致第 json 行。我需要所有 json 行
PYTHON: reading .jl file using jsonlines is resulting in line of json. I need all the json lines
我试图从路径中读取文件并添加到字典中,但是,我最终得到了第一个 json 行,并且有大约 230MB 的数据。
我有像这里这样的文件夹
# folder path
folder = os.path.expanduser("~/topic_2022-05-30T23-15-20.jl")
#Initialise the dictionary
items = {}
with open(folder, 'rb') as f:
for item in json_lines.reader(f):
# adding next item to items
items.update(item)
import json
file = open(folder)
items = {}
data = json.load(file)
for k, v in data.items():
items.update(k:v)
file.close()
itmes = data
也可以。
我试图从路径中读取文件并添加到字典中,但是,我最终得到了第一个 json 行,并且有大约 230MB 的数据。
我有像这里这样的文件夹
# folder path
folder = os.path.expanduser("~/topic_2022-05-30T23-15-20.jl")
#Initialise the dictionary
items = {}
with open(folder, 'rb') as f:
for item in json_lines.reader(f):
# adding next item to items
items.update(item)
import json
file = open(folder)
items = {}
data = json.load(file)
for k, v in data.items():
items.update(k:v)
file.close()
itmes = data
也可以。