What is the practical difference between xml, json

2019-03-28 11:48发布

I'm new to web services and as an introduction I'm playing around with the Twitter API using the Twisted framework in python. I've read up on the different formats they offer, but it's still not clear to me which one I should use in my fairly simple project. Specifically the practical difference between using JSON or XML is something I'd like guidance on. All I'm doing is requesting the public timeline and caching it locally.

Thanks.

3条回答
Rolldiameter
2楼-- · 2019-03-28 12:15

I would say the amount of data being sent over the wire is one factor. XML data stream will be bigger than JSON for the same data. But you can use whatever you know more/have more experience.

I would recommend JSON, as it's more "pythonic" than XML.

查看更多
我只想做你的唯一
3楼-- · 2019-03-28 12:18

For me it boils down to convenience. Using XML, I have to parse the response in to a DOM (or more usually an ElementTree). Using JSON, one call to simplejson.loads(json_string) and I have a native Python data structure (lists, dictionaries, strings etc) which I can start iterating over and processing. Anything that means writing a few less lines of code is usually a good idea in my opinion.

I often use JSON to move data structures between PHP, Python and JavaScript - again, because it saves me having to figure out an XML serialization and then parse it at the other end.

And like jinzo said, JSON ends up being slightly fewer bytes on the wire.

You might find my blog entry on JSON from a couple of years ago useful: http://simonwillison.net/2006/Dec/20/json/

查看更多
forever°为你锁心
4楼-- · 2019-03-28 12:37

RSS and Atom are XML formats.

JSON is a string which can be evaluated as Javascript code.

查看更多
登录 后发表回答