I have a Django site, and on one page there is a button (or link) that, when clicked, launches a somewhat long task. Obviously, I want to run this task as a background task and immediately return the result to the user. I want to implement this using a simple approach that won't require me to install and learn a whole new messaging architecture like Celery. I do not want to use celery! I just want to use a simple approach that I can set up and run in the next half hour or so. Isn't there an easy way to do this in Django without adding (another) third-party package?
python asynchronous django deferred background-process
Marc
source share