django project avoid reload page where work algorithm

MRAB python at mrabarnett.plus.com
Sat Oct 7 21:56:28 EDT 2017


On 2017-10-08 01:40, Xristos Xristoou wrote:
> I have a website where the user can be put three numbers on my html template and get some results from my personal mathematical algorithm. the result save at user personal table on my database and can see in specific tab in my website.
> my problem is where the algorithm to calculate result maybe take time between 5-10 minutes in this time the browser stay on reload. if user change tab or close browser or maybe have problem with internet connection then loose that request and need again to put the numbers and again wait for results.
> I want after the user request from my form in html to keep this request and work my algorithm without reload the page and where the algorithm finish then to send the user some email or message or just need the user visit the tab of results to see new results.
> that I want to avoid the problems where the algorithm is in running and user loose data or request or time.
> is easy to do that using suproccess,celery or RabbitMQ ?
> any idea ?
[snip]

You mentioned email, so why not just ask for an email address to which 
you will send the result?



More information about the Python-list mailing list