I agree with Takashi, you could use something like simplejson or
python-json or one of the other JSON libraries to parse the response
from the server. Usually these JSON libraries take in a string, and
you can use the gdata library to get the JSON for a feed or entry as a
string, then pass the string to a library.
To request the JSON as a string, you could do something like this
client = gdata.service.GDataService()
json_str = client.Get('
http://www.google.com/base/feeds/snippets?
alt=json', converter=str)
Remeber to add 'alt=json' to the URL parameters when you make your
request :)
Happy coding,
Jeff
On Aug 18, 6:14 pm, "Takashi Matsuo" <
matsuo.taka...@gmail.com> wrote:
> Hi Shri,
>
> In my opinion, to parse a JSON format data stream is beyond the scope
> of gdata python client library.
> Perhaps you could use simplejson or something like that for it.
>
> Regards,
>
> -- Takashi Matsuo
>