Re: parsing json using simplejson

2009-06-16 Thread Tim Roberts
deostroll wrote: > >I want to be able to parse it into python objects. Any ideas? What did you not like about the very useful replies you have already received? -- Tim Roberts, t...@probo.com Providenza & Boekelheide, Inc. -- http://mail.python.org/mailman/listinfo/python-list

Re: parsing json using simplejson

2009-06-15 Thread Mike Kazantsev
On Mon, 15 Jun 2009 20:01:58 -0700 (PDT) deostroll wrote: > I want to be able to parse it into python objects. Any ideas? JSON objects behave like python dicts (key:val pairs), so why not just use them? Both simplejson and py2.6-json (which is quite similar to the former) do just that, but if y

Re: parsing json using simplejson

2009-06-15 Thread Carl Banks
On Jun 15, 8:01 pm, deostroll wrote: > I want to be able to parse it into python objects. Any ideas? 1. If applicable, pay better attention in class. 2. Install simplejson and try to use it, then, if you still need help, come back and post your question along with your honest attempt to do it. P

Re: parsing json using simplejson

2009-06-15 Thread deostroll
I want to be able to parse it into python objects. Any ideas? --deostroll -- http://mail.python.org/mailman/listinfo/python-list

parsing json using simplejson

2009-06-15 Thread deostroll
I need to be able to parse a json data object using the simplejson package. First of all I need to know all the task needed for this job. --deostroll -- http://mail.python.org/mailman/listinfo/python-list

Re: parsing json using simplejson

2009-06-15 Thread Mike Kazantsev
On Sun, 14 Jun 2009 22:45:38 -0700 (PDT) deostroll wrote: > I need to be able to parse a json data object using the simplejson > package. First of all I need to know all the task needed for this job. Note that py2.6 has a bundled json module. -- Mike Kazantsev // fraggod.net signature.asc De

Re: parsing json using simplejson

2009-06-15 Thread Diez B. Roggisch
deostroll wrote: > I need to be able to parse a json data object using the simplejson > package. First of all I need to know all the task needed for this job. - install simplejson - read documentation of simplejson - use simplejson as documented - ??? - profit! Diez -- http://mail.python.o