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!
I wrote a py .exe script and need to create a GUI for it
Share
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