Re: Weird messages in my console

2018-10-28 Thread Vineet Kothari
As admin is abstracted a lot how will you able to make out man. Try to understand find these name by doing find all then maybe if some print statement is outputting them you may find it. On Fri 26 Oct, 2018, 10:00 PM Mark Phillips, wrote: > I am building a django 2.0 application, and I have noti

Re: Django to serve JSON: overkill?

2018-10-28 Thread Vineet Kothari
You can use falcon/flask if you only want to create api as these are minimalistic frameworks and very easy to understand On Mon 29 Oct, 2018, 4:45 AM PASCUAL Eric, wrote: > Hi Charley, > > > You should not regret this choice. > > Sometimes Django seems a bit overkill at the first glance. But mos

Re: Django to serve JSON: overkill?

2018-10-28 Thread PASCUAL Eric
Hi Charley, You should not regret this choice. Sometimes Django seems a bit overkill at the first glance. But most of the times, once the project has made some progress you'll quickly appreciate the fact it is like Python : batteries included. No need to hunt for external add-ons which will i

Re: Django to serve JSON: overkill?

2018-10-28 Thread Charley Paulus
Hi Eric, Yes that helps a lot. I have data models and related DB. I’ll go with Django. Thanks. Best regards, Charley -- 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 ema

Re: Celery/Redis Django 2.0 Design Question

2018-10-28 Thread hunter.cur...@gmail.com
I think you are on the right track. I am doing something similar with photos and gps tracks uploaded by users and the celery/redis combo makes it easy to run a compute intensive task without blocking the site. I'm not sure if the celery-signals approach is strictly necessary, however. I am foll

Re: Should I use Django-Rest-Framework for performance reasons, despite not needing an externally-consumable API?

2018-10-28 Thread PASCUAL Eric
Hi, Do you think there's any reason to use DRF despite not needing an externally-consumable API? None that I can think about. But I don't pretend to be an expert on the topic ;) IMHO it is just a matter of planing for the future. If you are certain that nothing else but your current app will

Re: Django to serve JSON: overkill?

2018-10-28 Thread PASCUAL Eric
Hi, If the JSON is related to a data model, and if this model is elaborated and subject to evolution in the furure, Django can help a lot. Add Django RESTFramework to the combo to take care of the REST stuff. If not, I'd suggest Falcon (https://falconframework.org/), which is a light and ver