attaching Tkinter Listbox to python list object

2007-03-12 Thread Steve Potter
I am trying to find some method of attaching a Listbox object to a list object so as the contents of the list are changed the contents of the Listbox will be updated to match. I have found a few references to something like this in this old post http://groups.google.com/group/comp.lang.python/brow

Re: running python on xp command prompt

2007-03-17 Thread Steve Potter
On Mar 17, 2:15 pm, [EMAIL PROTECTED] wrote: > Hi, > > I have a simple question about running python on windows xp command > prompt. The file is as follows and is named spam.py: > > print 2**8 > print 'the bright side' + 'of life' > print "hello world" > > I run this on the command prompt as follow

Pickle and Instance Methods

2007-03-17 Thread Steve Potter
I have a class that I am trying to pickle. One of the attributes is used to set a callback e.g. self.attribute.setCallback(self.callbackfunction). I understand that this cannot be saved by pickle. My question is, is there another way of setting a callback that would agree with pickle? If not is t

mirroring files and data via http

2008-07-06 Thread Steve Potter
I'm working on a project to create a central administration interface for several websites located on different physical servers. You can think of the websites as a blog type application. My administration application will be used to create new blog posts with associated media (images, etc..) So

Re: mirroring files and data via http

2008-07-06 Thread Steve Potter
On Jul 6, 8:19 pm, Matt Nordhoff <[EMAIL PROTECTED]> wrote: > Steve Potter wrote: > > I'm working on a project to create a central administration interface > > for several websites located on different physical servers. > > > You can think of the webs