Python code stopped working after upgrade

I upgraded Anaconda, my working code now has a hitch I’ve been unable to figure it out. Would you have some time to help, have you run into these errors with data=json.loads(response.text) and decoding. The error log is below. I appreciate any time on this.

Thank you


JSONDecodeError Traceback (most recent call last)
Input In [5], in <cell line: 7>()
8 url = “https://yh-finance.p.rapidapi.com/stock/v3/get-statistics
9 response = requests.request(“GET”, url, headers=headers, params=querystring)
—> 10 data=json.loads(response.text)
11 data=convertToRaw(data)
12 sort=False

File ~\anaconda3\lib\json_init_.py:346, in loads(s, cls, object_hook, parse_float, parse_int, parse_constant, object_pairs_hook, **kw)
341 s = s.decode(detect_encoding(s), ‘surrogatepass’)
343 if (cls is None and object_hook is None and
344 parse_int is None and parse_float is None and
345 parse_constant is None and object_pairs_hook is None and not kw):
→ 346 return _default_decoder.decode(s)
347 if cls is None:
348 cls = JSONDecoder

File ~\anaconda3\lib\json\decoder.py:337, in JSONDecoder.decode(self, s, _w)
332 def decode(self, s, _w=WHITESPACE.match):
333 “”“Return the Python representation of s (a str instance
334 containing a JSON document).
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):

File ~\anaconda3\lib\json\decoder.py:355, in JSONDecoder.raw_decode(self, s, idx)
353 obj, end = self.scan_once(s, idx)
354 except StopIteration as err:
→ 355 raise JSONDecodeError(“Expecting value”, s, err.value) from None
356 return obj, end

JSONDecodeError: Expecting value: line 1 column 1 (char 0)

This most likely isn’t a Jupyter question. If you ran this directly as Python code in a script or in the console, you most likely would see the same issue.

That being said, you may be using outdated approaches here. What you have shared isn’t in a code block and doesn’t have a corresponding code block shared, and so it isn’t easy to test. For example, no import statements, we don’t know what headers is defined as, etc.
Please see here for help about sharing code here where you bracket it with three backticks.

Have you tried any of the replies to here to debug it?