https://search.twitter.com/search.json?q=doug
How do I read this like VIEW SOURCE, so that I know what I'm looking at? Is there a website that can prettify it for me?
BTW, I use python
https://search.twitter.com/search.json?q=doug
How do I read this like VIEW SOURCE, so that I know what I'm looking at? Is there a website that can prettify it for me?
BTW, I use python
Parse it, then use pprint
:
data = json.load(...)
pprint.pprint(data)
Insert a carriage return after every comma with your favorite search and replace utility. If you know Python then you shouldn't have any trouble getting it even prettier than that.