Re: Dynamically scheduling Cron Jobs for Python Scripts.

2012-09-07 Thread Michael Ströder
Miki Tebeka wrote: >> I want to re run the script at that schedule time to send me a email. > > Calculate how much time until the meeting. And spawn the script that will > sleep that amount of time and then send email. And if the process gets interrupted in the meantime (e.g. because of reboot)?

Re: Dynamically scheduling Cron Jobs for Python Scripts.

2012-09-06 Thread Miki Tebeka
> I want to re run the script at that schedule time to send me a email. Calculate how much time until the meeting. And spawn the script that will sleep that amount of time and then send email. -- http://mail.python.org/mailman/listinfo/python-list

Re: Dynamically scheduling Cron Jobs for Python Scripts.

2012-09-06 Thread Vincent Vande Vyvre
On 06/09/12 08:21, coldfire wrote: > I have a web scrapper script which run every day at 0100 hrs using cron Job > over a shell account. > Now what I am looking for is to re run the same script. > 1> The script goes online to scrape some data including a schedule time for > my meeting. > I want t

Dynamically scheduling Cron Jobs for Python Scripts.

2012-09-05 Thread coldfire
I have a web scrapper script which run every day at 0100 hrs using cron Job over a shell account. Now what I am looking for is to re run the same script. 1> The script goes online to scrape some data including a schedule time for my meeting. I want to re run the script at that schedule time to se