Hi
What is the best way to load JSON string in Python.
Here is my code which give problem for loading json strings...
import json
json.loads(str_to_load)
I also tried supplying 'encoding' parameter with value 'utf-16', but that didn't work either...
Can you please help me solve this problem?
Thanks