-
Notifications
You must be signed in to change notification settings - Fork 221
Description
Hi Im having the following issue just by trying to create a Stock('GOOG'):
JSONDecodeError Traceback (most recent call last)
in ()
----> 1 s = ws.Stock('GOOG')
~\Anaconda3\lib\site-packages\wallstreet\wallstreet.py in init(self, quote, exchange)
45
46 jayson = r.text.replace('\n','')
---> 47 jayson = json.loads(jayson[2:])[0]
48
49 try:
~\Anaconda3\lib\json_init_.py in loads(s, encoding, cls, object_hook, parse_float, parse_int, parse_constant, object_pairs_hook, **kw)
352 parse_int is None and parse_float is None and
353 parse_constant is None and object_pairs_hook is None and not kw):
--> 354 return _default_decoder.decode(s)
355 if cls is None:
356 cls = JSONDecoder
~\Anaconda3\lib\json\decoder.py in decode(self, s, _w)
337
338 """
--> 339 obj, end = self.raw_decode(s, idx=_w(s, 0).end())
340 end = _w(s, end).end()
341 if end != len(s):
~\Anaconda3\lib\json\decoder.py in raw_decode(self, s, idx)
355 obj, end = self.scan_once(s, idx)
356 except StopIteration as err:
--> 357 raise JSONDecodeError("Expecting value", s, err.value) from None
358 return obj, end
JSONDecodeError: Expecting value: line 1 column 1 (char 0)
Can someone help with that ?
Thanks.
Willian