Using Cron to run a python program

2005-11-23 Thread vagrantbrad
I'm using python 2.4 running on Fedora Core 4. I have written a python program called ipscan.py that checks the external ip address of my cable internet connection, and on change, will update the dns records at my dns provider, zoneedit. So basically, I've setup dynamic dns using python. Once th

Re: Using Cron to run a python program

2005-11-24 Thread vagrantbrad
it works. Thanks, Brad Steve Holden wrote: > Carsten Haese wrote: > > On 23 Nov 2005 16:23:11 -0800, vagrantbrad wrote > > > >>I'm using python 2.4 running on Fedora Core 4. I have written a python > >>program called ipscan.py that checks the extern

Tkinter button not working as expected

2006-09-21 Thread vagrantbrad
I've created a short test program that uses tkFileDialog.askdirectory to help the user input a path into a tk entry widget. The problem I'm having is that when I run the code as listed below, the getPath function is called when the program initially runs, not when the button is pressed. from Tkin

Re: Tkinter button not working as expected

2006-09-22 Thread vagrantbrad
Thank you Fredrik. It makes total sense now that you've explained it this way. I frustrated at my ignorance on the assignment issue :) Fredrik Lundh wrote: > [EMAIL PROTECTED] wrote: > > > I've created a short test program that uses tkFileDialog.askdirectory > > to help the user input a path