web-dev-qa-db-ja.com

Python 3でJSONファイルを読み取る

私はPython 3.5.2 Windows 10 x64で使用しています。私が読んでいるJSONファイルは this これはJSONさらに2つの配列を含む配列。

JSONモジュールを使用して、このjsonファイルを解析しようとしています。 docs で説明されているように、JSONファイルはRFC 7159に準拠している必要があります。ファイルを確認しました hereRFC 7159形式で完全に問題ないことがわかりますが、このシンプルなpythonコードを使用して読み取ろうとすると:

with open(absolute_json_file_path, encoding='utf-8-sig') as json_file:
    text = json_file.read()
    json_data = json.load(json_file)
    print(json_data)

私はこの例外を受け取っています:

Traceback (most recent call last):
  File "C:\Program Files (x86)\JetBrains\PyCharm 4.0.5\helpers\pydev\pydevd.py", line 2217, in <module>
    globals = debugger.run(setup['file'], None, None)
  File "C:\Program Files (x86)\JetBrains\PyCharm 4.0.5\helpers\pydev\pydevd.py", line 1643, in run
    pydev_imports.execfile(file, globals, locals)  # execute the script
  File "C:\Program Files (x86)\JetBrains\PyCharm 4.0.5\helpers\pydev\_pydev_imps\_pydev_execfile.py", line 18, in execfile
    exec(compile(contents+"\n", file, 'exec'), glob, loc) 
  File "C:/Users/Andres Torti/Git-Repos/MCF/Sur3D.App/shapes-json-checker.py", line 14, in <module>
    json_data = json.load(json_file)
  File "C:\Users\Andres Torti\AppData\Local\Programs\Python\Python35-32\lib\json\__init__.py", line 268, in load
    parse_constant=parse_constant, object_pairs_hook=object_pairs_hook, **kw)
  File "C:\Users\Andres Torti\AppData\Local\Programs\Python\Python35-32\lib\json\__init__.py", line 319, in loads
    return _default_decoder.decode(s)
  File "C:\Users\Andres Torti\AppData\Local\Programs\Python\Python35-32\lib\json\decoder.py", line 339, in decode
    obj, end = self.raw_decode(s, idx=_w(s, 0).end())
  File "C:\Users\Andres Torti\AppData\Local\Programs\Python\Python35-32\lib\json\decoder.py", line 357, in raw_decode
    raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)

この正確なファイルをJavascriptで完全に読むことはできますが、解析するためにPythonを取得できません。私のファイルに何か問題があるか、またはPythonパーサー?

14
Andres

documentation をもう一度読むと、3行目を次のように変更する必要があるようです。

_json_data = json.loads(text)
_

または行を削除します

_text = json_file.read()
_

read()により、ファイルのインデックスがファイルの最後に到達するためです。 (あるいは、ファイルのインデックスをリセットできると思います)。

13
Will Molter

これを試して

import json

with open('filename.txt', 'r') as f:
    array = json.load(f)

print (array)
33
lcastillov