如何在 jupyter notebook 中导入 ndjson 文件
How do you import a ndjson file in jupyter notebook
我试过下面的代码,但它不起作用
import json
with open("/Users/elton/20210228test2.ndjson") as f:
test2data = ndjson.load(f)
这对我有用。 import ndjson
而不是 import json
。在此处查看更多信息:https://pypi.org/project/ndjson/
import ndjson
# load from file-like objects
with open('data.ndjson') as f:
data = ndjson.load(f)
我试过下面的代码,但它不起作用
import json
with open("/Users/elton/20210228test2.ndjson") as f:
test2data = ndjson.load(f)
这对我有用。 import ndjson
而不是 import json
。在此处查看更多信息:https://pypi.org/project/ndjson/
import ndjson
# load from file-like objects
with open('data.ndjson') as f:
data = ndjson.load(f)