views:

42

answers:

1

I want an app or python package that can

1.Dynamicly add python script to the background

2.Execute a specificed time

3.Check is this python script is running,

4.Also i can kill the current execute script.

Is already has such package,so i needn't care about cron,at,check processing is running etc.

Any advice is appreciated

Cron only can provide execute job periodly,AT provide execute job once at future. They didn't supply well wrapped python package,althrough there's a python-crontab,but it wasn't work

What i want is a process control management,like start,monitor process current status,I found the supervisor is exactly what i want,also it provide a web gui & xmlprc for intergate it into my app

I think supervisor is a better choice,and it's provide a high level API,i hope i have explain why i don't use Cron & AT clearly

A: 

Take a look at http://supervisord.org/.

djc