JSON recieving backend

2014-09-05 Thread Meghdeep Ray
Hi, I am working on an Android Application which will have to send JSONs to and receive them from a Backend which I plan to build in Django. Does anyone have any good resources for this specific thing ? Or does anyone know of a GitHub project which already does this ? Any help is greatly appreciat

Re: JSON recieving backend

2014-09-05 Thread Avraham Serour
take a look at tastypie: http://tastypieapi.org/ http://django-tastypie.readthedocs.org/en/latest/index.html On Fri, Sep 5, 2014 at 1:42 PM, Meghdeep Ray wrote: > Hi, > I am working on an Android Application which will have to send JSONs to > and receive them from a Backend which I plan to buil

Re: JSON recieving backend

2014-09-05 Thread François Schiettecatte
Aren't all the pieces already there with json.dumps() and json.loads() ? Like this: jsonRequest = request.body.strip() jsonRequestDict = json.loads(jsonRequest) François On Sep 5, 2014, at 6:42 AM, Meghdeep Ray wrote: > Hi, > I am working on an Android Application whi

Re: JSON recieving backend

2014-09-05 Thread Russell Keith-Magee
Another option, and one that is seeing a bit more momentum at the moment is Django ReST Framework: http://www.django-rest-framework.org Yours, Russ Magee %-) On Fri, Sep 5, 2014 at 4:42 AM, Avraham Serour wrote: > take a look at tastypie: > http://tastypieapi.org/ > http://django-tastypie.read

Re: JSON recieving backend

2014-09-05 Thread Collin Anderson
There's also a native JSONResponse in django 1.7 https://docs.djangoproject.com/en/dev/ref/request-response/#jsonresponse-objects -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it,