環境:Windows10Pro
Pyhoon 3.6
Pythonの勉強でPyhtonからJSONを使って
Gmail送信のコード記述しました。
Jsonファイル
{ "ADDRESS":"メールアドレス", "PASSWORD":"Gmailのアプリパスワード", }
Pythonのコード
import json with open('sources/secret.json') as f: address_password = json.load(f)
ここで、エラーが発生しました
JSONDecodeError Traceback (most recent call last) <ipython-input-216-2eac7110f4af> in <module> 1 import json 2 with open('sources/secret.json') as f: ----> 3 address_password = json.load(f) ~\anaconda3\lib\json\__init__.py in load(fp, cls, object_hook, parse_float, parse_int, parse_constant, object_pairs_hook, **kw) 291 kwarg; otherwise ``JSONDecoder`` is used. 292 """ --> 293 return loads(fp.read(), 294 cls=cls, object_hook=object_hook, 295 parse_float=parse_float, parse_int=parse_int, ~\anaconda3\lib\json\__init__.py in loads(s, cls, object_hook, parse_float, parse_int, parse_constant, object_pairs_hook, **kw) 355 parse_int is None and parse_float is None and 356 parse_constant is None and object_pairs_hook is None and not kw): --> 357 return _default_decoder.decode(s) 358 if cls is None: 359 cls = JSONDecoder ~\anaconda3\lib\json\decoder.py in decode(self, s, _w) 335 336 """ --> 337 obj, end = self.raw_decode(s, idx=_w(s, 0).end()) 338 end = _w(s, end).end() 339 if end != len(s): ~\anaconda3\lib\json\decoder.py in raw_decode(self, s, idx) 351 """ 352 try: --> 353 obj, end = self.scan_once(s, idx) 354 except StopIteration as err: 355 raise JSONDecodeError("Expecting value", s, err.value) from None JSONDecodeError: Expecting property name enclosed in double quotes: line 4 column 1 (char 76)
このサイトで検索して
似たような症状を調べたのですが原因が分かりません。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/02/26 12:23