Open file dialog?

Hi,
I am working on scripts using numpy, scipy and matplotlib to analyze some image data. I would like to be able to select the particular image I want to analyze, so I need a file selection dialog or similar. I know this can be done with any gui toolkit, but I was wondering if there isn't an easier way, less involved that getting into gui programming. Would it be hard to mimic the file open button in the toolbar to do what I want?

Thanks,

jorges

I need a file selection dialog or similar

Tkinter makes this pretty easy. E.g.,

    >>> import tkFileDialog as fd
    >>> fname = fd.askopenfilename(initialdir='c:/temp')
    >>> fname
    'C:/temp/note.jpg'

That's all, as long as you don't mind destroying
the Window manually. (Otherwise, you need just
a couple more lines.)

Cheers,
Alan Isaac

ยทยทยท

On 6/4/2009 3:59 AM jorgesmbox-ml@...1664... apparently wrote: