我只是试图在 Python 中逐行读取一个大的 json 文件(维基百科 json 转储)并得到错误:
Traceback (most recent call last):
File "C:/.../test_json_wiki_file.py", line 19, in <module>
test_fct()
File "C:/.../test_json_wiki_file.py", line 12, in test_fct
for line in f:
OSError: [Errno 9] Bad file descriptor
这是我的代码:
import json
def test_fct():
data = []
i = 0
with open('E:/.../20200713.json/20200713.json') as f:
for line in f:
data.append(json.loads(line))
i = i + 1
if i > 1:
input_file.close()
return data
test_data = test_fct()
文件大小约为 700GB,文件的说明 ( https://www.wikidata.org/wiki/Wikidata:Database_download ) 表明可以逐行阅读。我不知道这是否重要,但 E:/ 硬盘驱动器是外部驱动器。
提前谢谢你的帮助 :)
开心每一天1111
相关分类