[Django]-How to work with a JSON string returned by a remote URL (with Django)?

6šŸ‘

āœ…

That little // at the beginning threw me off too. Hereā€™s what you do:

import json
jsonData = json.loads(mystring[3:])

Now, I donā€™t know what any of the encoded data there means, but thatā€™s how you can get it as python objects.

Leave a comment