python filechooser ?

Hi,

Is there a python equivalent to the filechooser command?
Or a flag to get a filebrowser with the op().save() command?

Thanks
Vincent

Yup, it’s here:
derivative.ca/wiki088/index. … e=UI_Class

Great, thanks Malcolm.
I can’t get the filter to work though.
I’m doing
ui.chooseFile(load=False, fileTypes=“*.txt”)

Oh should be a list, ui.chooseFile(load=False, fileTypes=[“*.txt”]) works nicely.