Hello


In my web2py app i am using scheduler. So far I have one task scheduled 
which runs a subprocess when called from controler (an external exe 
file/application)

Now i want to add another task which will do some background work

My code in *scheduler.py* till now was

def runWoshiEngine(scriptId, path):


# import os, sys# import timeimport subprocessprint "runWoshiEngine in 
progress......"
p = subprocess.Popen(['woshi_engine.exe', scriptId], shell=True, stdout = 
subprocess.PIPE, cwd=path)return dict(status = 1)

from gluon.scheduler import Scheduler
scheduler = Scheduler(db, heartbeat = 1)


so this way the scheduler started on client's request


after starting my app I run my scheduler with command


python web2py.py -K myapp


Now I want to add another function which will start every hour to do some 
background work.

What would you recommend and how to add it to scheduler because if i add 
anything to my line of code my initial task --> exe app is not started


thank you


best regards

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to