Re: Query Regarding Django Signals

2018-05-04 Thread jacob duyon
You can also just write a Celery task to do your async stuff and trigger it from signals.py On Fri, May 4, 2018 at 4:13 PM, Jani Tiainen wrote: > Hi, > > Signals are also good for decoupling things. > > For example you want to do some post save action for third party models. > > 4.5.2018 19.10 "

Re: Need Help With integrating Python Scripts with Django Frame Work

2018-04-16 Thread jacob duyon
I'm not sure how many users you have for this, but it's best practice to use an asynchronous task queue (like Celery) to run the actual powerpoint creation code. If you simply run the script inside the view it will block the response from happening. You create a celery task (which in your case woul

Re: What were your best resources in learning programming, python, ultimately django?

2018-04-09 Thread jacob duyon
Do the class completely. Don't skip anything, especially things that are hard. Always try to figure something out on your own, and take breaks when you are completely stuck. If you are ever stuck, ask yourself why you are stuck, and usually its because you don't understand some dependency. Google e