About 373,000 results
Open links in new tab
  1. Choosing a file in Python with simple Dialog - Stack Overflow

    Sep 12, 2017 · Another option to consider is Zenity: . I had a situation where I was developing a Python server application (no GUI component) and hence didn't want to introduce a …

  2. Create a directly-executable cross-platform GUI app using Python

    318 First you will need some GUI library with Python bindings and then (if you want) some program that will convert your python scripts into standalone executables. Cross-platform GUI …

  3. python - How do I close a tkinter window? - Stack Overflow

    How do I end a Tkinter program? Let's say I have this code: from Tkinter import * def quit(): # code to exit root = Tk() Button(root, text="Quit", command=quit).pack() root.mainloop() How sh...

  4. Is there any Visual Studio-like tool for creating GUIs for Python?

    Jul 12, 2013 · Hear! Hear! I've been asking the same question. I love the ease of creating and programming a gui that visual studio provides. It is exactly what your girlfriend is talking about. …

  5. Is it possible to style Python GUI like you would style HTML with …

    Dec 7, 2020 · 3 First off, Web Design with CSS is a lot prettier, in Python you have less options. But there is an editor called QT Designer, it lets you create GUIs and use them in your C++ or …

  6. python - User input in dialog box - Stack Overflow

    May 21, 2018 · Is there any library available in python for the graphical user entry input. I know about tk but I believe it takes some line of codes to do that. I am looking for the shortest …

  7. python - How do you create a Tkinter GUI stop button to break an ...

    So I have a Tkinter GUI with two simple options, a start and stop button. I have defined the GUI layout: from Tkinter import * def scanning(): while True: print "hello" root = Tk() r...

  8. python - How do I create an automatically updating GUI using …

    Jul 20, 2014 · How do I create an automatically updating GUI using Tkinter? Asked 11 years, 4 months ago Modified 3 years, 10 months ago Viewed 62k times

  9. How do you run your own code alongside Tkinter's event loop?

    This is a life saver. Code outside the GUI should be checking for tkinter thread to be alive if you wan't to be able to exit the python script once exiting the gui. Something like while …

  10. python - Switch between two frames in tkinter? - Stack Overflow

    Over time people have asked other questions using this code (or an online tutorial that copied this code) as a starting point. You might want to read the answers to these questions: …