Re: Django read data

2015-04-05 Thread Larry Martell
On Sun, Apr 5, 2015 at 7:25 AM, YOUSSEF LOUMI wrote: > Hi, > > How to receive json data sended in url using django That depends. If it was sent in a POST in a parameter called json_content, then you could do: jsonIn = json.loads(request.POST['json_content']) -- You received this message becaus

Django read data

2015-04-05 Thread YOUSSEF LOUMI
Hi, How to receive json data sended in url using django best regards, -- 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, send an email to django-users+unsubscr...@googlegroups.c