JSON 파일 (fromt, stackexchange 및 stackoverflow api)에 대한 특정 URL에 액세스 중입니다. 다른 한편으로는 모든에stackexchange API를 json으로 열 때 JSON 객체를 디코딩 할 수 없습니다.
import urllib2
import json
url = "http://api.stackexchange.com/2.1/tags?order=desc&sort=popular&site=quant&pagesize=100&page=1"
data = json.loads(urllib2.urlopen(url).read())
<ipython-input-20-7540e91a8ff2> in <module>()
----> 1 data = json.loads(urllib2.urlopen(url).read())
/usr/lib/python2.7/json/__init__.pyc in loads(s, encoding, cls, object_hook, parse_float, parse_int, parse_constant, object_pairs_hook, **kw)
336 parse_int is None and parse_float is None and
337 parse_constant is None and object_pairs_hook is None and not kw):
--> 338 return _default_decoder.decode(s)
339 if cls is None:
340 cls = JSONDecoder
/usr/lib/python2.7/json/decoder.pyc in decode(self, s, _w)
363
364 """
--> 365 obj, end = self.raw_decode(s, idx=_w(s, 0).end())
366 end = _w(s, end).end()
367 if end != len(s):
/usr/lib/python2.7/json/decoder.pyc in raw_decode(self, s, idx)
381 obj, end = self.scan_once(s, idx)
382 except StopIteration:
--> 383 raise ValueError("No JSON object could be decoded")
384 return obj, end
ValueError: No JSON object could be decoded
트위터 API를 ... 왜 함께 잘 작동 다음 json.loads()
명령을 실행하는 동안 다음과 같은 오류가 보여?
감사 톤 동생 ...을! –
도움이 된 것을 기쁘게 생각합니다. 문제가 해결되면 대답을 수락하는 것을 잊지 마십시오 (왼쪽의 체크 표시를 클릭하십시오). –