I wrote a py .exe script and need to create a GUI for it with a file path input field, a 'cancel' and 'ok' buttons. How can I accomplish it best? Do I need to bind it with any C libraries? I know I could easily create a web based interface but I do not want a web app, I need a .exe app. Please, help!
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
For such a simple GUI, Python comes with a built in library: TkInter. It's somewhat ugly, but it might be fine for your purposes - requires nothing 3rd party, so no additional installations. If you want something more full featured, I'd suggest PyQt |
|||||
|
|
wxPython is the best thing I can think of. |
||||
|
|
Have a look at easydialogs for window http://www.averdevelopment.com/python/EasyDialogs.html |
|||
|
|
