Re: stop backgroundworker

2017-03-06 Thread Melvyn Sopacua
On Monday 06 March 2017 12:11:04 Shawn Milochik wrote: > You'll have to send something from the browser (submit a form, AXAX, > or websockets) to a Django view and update something somewhere -- in > Redis or your database, probably. Then have your infinite loop check > that location for an updated

Re: stop backgroundworker

2017-03-06 Thread Shawn Milochik
You'll have to send something from the browser (submit a form, AXAX, or websockets) to a Django view and update something somewhere -- in Redis or your database, probably. Then have your infinite loop check that location for an updated value. I recommend Redis for this purpose. -- You received th

stop backgroundworker

2017-03-06 Thread Tommy
Hi, I'm new to Django and would need some advice. I've got a process launched with a command: python manage.py myprocess. I've got an infinite loop there where i use Group("mygroup").send({'text': state_text}). Everything is well displayed on my html page. However i'd like to use buttons on m