Re: [Tutor] Python Job Scheduling package

2011-10-16 Thread Rafael Durán Castañeda
And what about celery??? 2011/10/16 Steven D'Aprano > bod...@googlemail.com wrote: > >> Have you thought about writing your own? Others have posted some >> useful links, but in all honesty you could hack something together to >> achieve that in next to no time >> > > Anyone can "hack something to

Re: [Tutor] Python Job Scheduling package

2011-10-15 Thread Steven D'Aprano
bod...@googlemail.com wrote: Have you thought about writing your own? Others have posted some useful links, but in all honesty you could hack something together to achieve that in next to no time Anyone can "hack something together" in next to no time, but getting a quality package that is wel

Re: [Tutor] Python Job Scheduling package

2011-10-14 Thread Japhy Bartlett
Is this a thing people would use? I've built this as part of a larger project.. do you think it'd be worth splitting out and polishing up? On Oct 14, 2011 3:55 AM, wrote: Have you thought about writing your own? Others have posted some useful links, but in all honesty you could hack something t

Re: [Tutor] Python Job Scheduling package

2011-10-14 Thread bodsda
=googlemail@python.org Date: Thu, 13 Oct 2011 15:23:04 To: Subject: [Tutor] Python Job Scheduling package ___ Tutor maillist - Tutor@python.org To unsubscribe or change subscription options: http://mail.python.org/mailman/listinfo/tutor

Re: [Tutor] Python Job Scheduling package

2011-10-13 Thread Vince Spicer
You could take a peak at these. Both work without external dependencies http://packages.python.org/APScheduler/#features http://pypi.python.org/pypi/TGScheduler/1.6.2 VInce On Thu, Oct 13, 2011 at 3:53 AM, harish bansal wrote: > Has anyone seen a python job scheduling framework that could provi

[Tutor] Python Job Scheduling package

2011-10-13 Thread harish bansal
Has anyone seen a python job scheduling framework that could provide the following features - Add/remove job from the queue - View job list - check job status - Run concurrent jobs. I am looking for something similar to coalition( http://code.google.com/p/coalition/) -- Harry __