vote up 7 vote down star
9

I'm looking for a library in Python which will provide at and cron like functionality.

I'd quite like have a pure Python solution, rather than relying on tools installed on the box; this way I run on machines with no cron.

For those unfamiliar with cron: you can schedule tasks based upon an expression like:

 0 2 * * 7 /usr/bin/run-backup # run the backups at 0200 on Every Sunday
 0 9-17/2 * * 1-5 /usr/bin/purge-temps # run the purge temps command, every 2 hours between 9am and 5pm on Mondays to Fridays.

The cron time expression syntax is less important, but I would like to have something with this sort of flexibility.

If there isn't something that does this for me out-the-box, any suggestions for the building blocks to make something like this would be gratefully received.

Edit I'm not interested in launching processes, just "jobs" also written in Python - python functions. By necessity I think this would be a different thread, but not in a different process.

To this end, I'm looking for the expressivity of the cron time expression, but in Python.

Cron has been around for years, but I'm trying to be as portable as possible. I cannot rely on its presence.

flag

55% accept rate
I also would like to know how to do this. It would be more useful to have a cross platform solution than depend on platform specific components. – Sean Dec 17 '08 at 1:41

7 Answers

vote up 8 vote down check

You could just use normal Python argument passing syntax to specify your crontab. For example, suppose we define an Event class as below:

from datetime import datetime, timedelta
import time

# Some utility classes / functions first
class AllMatch(set):
    """Universal set - match everything"""
    def __contains__(self, item): return True

allMatch = AllMatch()

def conv_to_set(obj):  # Allow single integer to be provided
    if isinstance(obj, (int,long)):
        return set([obj])  # Single item
    if not isinstance(obj, set):
        obj = set(obj)
    return obj

# The actual Event class
class Event(object):
    def __init__(self, action, min=allMatch, hour=allMatch, 
                       day=allMatch, month=allMatch, dow=allMatch, 
                       args=(), kwargs={}):
        self.mins = conv_to_set(min)
        self.hours= conv_to_set(hour)
        self.days = conv_to_set(day)
        self.months = conv_to_set(month)
        self.dow = conv_to_set(dow)
        self.action = action
        self.args = args
        self.kwargs = kwargs

    def matchtime(self, t):
        """Return True if this event should trigger at the specified datetime"""
        return ((t.minute     in self.mins) and
                (t.hour       in self.hours) and
                (t.day        in self.days) and
                (t.month      in self.months) and
                (t.weekday()  in self.dow))

    def check(self, t):
        if self.matchtime(t):
            self.action(*self.args, **self.kwargs)

(Note: Not thoroughly tested)

Then your CronTab can be specified in normal python syntax as:

c = CronTab(
  Event(perform_backup, 0, 2, dow=6 ),
  Event(purge_temps, 0, range(9,18,2), dow=range(0,5))
)

This way you get the full power of Python's argument mechanics (mixing positional and keyword args, and can use symbolic names for names of weeks and months)

The CronTab class would be defined as simply sleeping in minute increments, and calling check() on each event. (There are probably some subtleties with daylight savings time / timezones to be wary of though). Here's a quick implementation:

class CronTab(object):
    def __init__(self, *events):
        self.events = events

    def run(self):
        t=datetime(*datetime.now().timetuple()[:5])
        while 1:
            for e in self.events:
                e.check(t)

            t += timedelta(minutes=1)
            while datetime.now() < t:
                time.sleep((t - datetime.now()).seconds)

A few things to note: Python's weekdays / months are zero indexed (unlike cron), and that range excludes the last element, hence syntax like "1-5" becomes range(0,5) - ie [0,1,2,3,4]. If you prefer cron syntax, parsing it shouldn't be too difficult however.

link|flag
You might want to add some import statements for the inexperienced. I ended up putting all the classes in a single file with from datetime import * from time import sleep and changed time.sleep to sleep. Nice, simple elegant solution. Thanks. – mavnn May 8 at 11:17
Good point - I've added the imports. – Brian May 11 at 17:09
vote up 4 vote down

One thing that in my searches I've seen is python's sched module which might be the kind of thing you're looking for.

link|flag
sched has a number of issues, the principle of which is that it doesn't seem to support absolute scheduling (run this function every Friday at 2pm), just relative (run this function once in 10 hours 52 minutes and 30 seconds). – jamesh Dec 17 '08 at 8:56
1  
@jamesh: start with sched and add features. You have the source. – S.Lott Dec 17 '08 at 21:26
@S.Lott, yes, you're right. Right now, I'm just trying to see if I can avoid inventing a square wheel. – jamesh Dec 19 '08 at 11:26
vote up 4 vote down

TurboGears ships with scheduled task capability based on Kronos

I've never used Kronos directly, but the scheduling in TG has a decent set of features and is solid.

link|flag
Thanks. This looks good. I shall evaluate and set this the answer if it is. – jamesh Dec 17 '08 at 8:59
vote up 1 vote down

There isn't a "pure python" way to do this because some other process would have to launch python in order to run your solution. Every platform will have one or twenty different ways to launch processes and monitor their progress. On unix platforms, cron is the old standard. On Mac OS X there is also launchd, which combines cron-like launching with watchdog functionality that can keep your process alive if that's what you want. Once python is running, then you can use the sched module to schedule tasks.

link|flag
vote up 1 vote down

Just in case, if you are using windows, there exists a pycron. Check out http://sourceforge.net/projects/pycron/ . For linux,I will go by either cron or sched.

link|flag
vote up -1 vote down

I don't know if something like that already exists. It would be easy to write your own with time, datetime and/or calendar modules, see http://docs.python.org/library/time.html

The only concern for a python solution is that your job needs to be always running and possibly be automatically "resurrected" after a reboot, something for which you do need to rely on system dependent solutions.

link|flag
Roll your own is an option - though the best code is code you don't have to write. Resurrection, I suppose is something I may need to consider. – jamesh Dec 17 '08 at 9:01
vote up -1 vote down

Isn't it much more likely to run into a system with cron and not Python, than vice versa? I mean, cron's been around for a long time.

link|flag
Scheduling is just a component of the program. I cannot change the programming language. Windows has neither python nor cron. – jamesh Dec 17 '08 at 8:54

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.