Re: automating python programs

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Dan Upton

    Re: automating python programs

    On Mon, Jul 21, 2008 at 2:12 PM, Zach Hobesh <hobesh@gmail.c omwrote:
    Hi,
    >
    I'm trying to figure out how to run a python program on a schedule, maybe
    every half an hour... Is this possible?
    >
    Thanks!
    >
    -Zach
    >
    --

    >
    On Linux, man cron.
  • Anish Chapagain

    #2
    Re: automating python programs

    On Jul 21, 7:28 pm, "Dan Upton" <up...@virginia .eduwrote:
    On Mon, Jul 21, 2008 at 2:12 PM, Zach Hobesh <hob...@gmail.c omwrote:
    Hi,
    >
    I'm trying to figure out how to run a python program on a schedule, maybe
    every half an hour...  Is this possible?
    >
    Thanks!
    >
    -Zach
    >>
    On Linux, man cron.
    Hi!!
    I hope if you have written the Python code in Class and module then
    you can call the execution of module
    in main module using yourroot.after( millisecond,mod uletobe executed)
    like,
    parent_root.aft er(3000, child1_root.des troy)#will destroy the
    child1_root module after 3second at this stage in mainmodule.
    parent_root.mai nloop()

    anish

    Comment

    Working...