[google-appengine] Re: necessary libs for parsing json?

2009-06-15 Thread Dam
Maybe return it in a response: (With django) response = http.HttpResponse(simplejson.dumps(repr), mimetype='application/json') ... On Jun 15, 9:37 am, deostroll wrote: > Now I want to know how to parse? > > --deostroll > > PS: I've nev done this exercise before. I just don't understand what > n

[google-appengine] Re: necessary libs for parsing json?

2009-06-15 Thread Scott Seely
:37 AM To: Google App Engine Subject: [google-appengine] Re: necessary libs for parsing json? Now I want to know how to parse? --deostroll PS: I've nev done this exercise before. I just don't understand what next to do after dumps()... --~--~-~--~~~---

[google-appengine] Re: necessary libs for parsing json?

2009-06-15 Thread deostroll
Now I want to know how to parse? --deostroll PS: I've nev done this exercise before. I just don't understand what next to do after dumps()... --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google App Engine" group

[google-appengine] Re: necessary libs for parsing json?

2009-06-14 Thread Sylvain
simplejson is included with django (and so with GAE) or you can use any other pure python libraries : http://deron.meranda.us/python/comparing_json_modules/ On 15 juin, 00:58, Alkis Evlogimenos ('Αλκης Ευλογημένος) wrote: > It is part of the bundled django (from django.utils import simplejson).

[google-appengine] Re: necessary libs for parsing json?

2009-06-14 Thread 'Αλκης Ευλογημένος
It is part of the bundled django (from django.utils import simplejson). You can also drop in simplejson in your project directory and use it directly. On Mon, Jun 15, 2009 at 12:02 AM, deostroll wrote: > > Does the appengine have python support for parsing json-ed data? > > --deostroll > > > -