I have been messing around with some scripts, and would soon like to start making a few gui apps. I plan on using either tkinter, or possibly pygame, or pygtk. Are there modules already built that will allow you to browse graphically? for instance, choosing a file, or directory, using a gui button? It would be such a common feature, I would think this is already been done.
shanenin 0 Posting Whiz in Training
Recommended Answers
Jump to PostTyping
help('FileDialog')
or
help('tkFileDialog')
in the Python shell will bring up the details.
I am still looking for a good example. This is all I have ...#from Tkinter import * import tkFileDialog help('tkFileDialog') #root = Tk() filename = tkFileDialog.askopenfilename() print filename #root.mainloop()
You can uncomment the …
All 3 Replies
G-Do 19 Junior Poster
shanenin 0 Posting Whiz in Training
vegaseat 1,735 DaniWeb's Hypocrite Team Colleague
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.