About 366,000 results
Open links in new tab
  1. 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 libraries with Python …

  2. How to create beautiful UI's with Python - Stack Overflow

    Mar 21, 2022 · I wonder if it's possible to create good looking desktop UI's with python? Could I use JS frameworks like Electron with python? Or are there any python libraries which provide modern …

  3. python - Tkinter: How to use threads to preventing main event loop …

    Jan 30, 2017 · I tried following along to A. Rodas' example code which works beautifully. But I cannot figure out how to implement his solution in the case of a Button widget that triggers an action. If I …

  4. 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...

  5. 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...

  6. Choosing a file in Python with simple Dialog - Stack Overflow

    Sep 12, 2017 · I would like to get file path as input in my Python console application. Currently I can only ask for full path as an input in the console. Is there a way to trigger a simple user interface where...

  7. Is it possible to style Python GUI like you would style HTML with CSS ...

    Dec 7, 2020 · Inside of python your options are quite less, but never none. You have options starting from ttk from tkinter, which uses your OS native widgets and with ttkthemes you can get more …

  8. How to select a directory and store the location using tkinter in Python

    I am creating a GUI with a browse button which I only want to return the path. I've been looking at solutions using code like below. Tkinter.Button(subframe, text = "Browse", command = self.

  9. Browse for file path in python - Stack Overflow

    13 I am trying to create a GUI with a browse window to locate a specific file. I found this question earlier: Browsing file or directory Dialog in Python although when I looked up the terms it didn't seem to be …

  10. Redirect command line results to a tkinter GUI - Stack Overflow

    Jan 17, 2015 · 6 Redirecting stdout to a write () method that updates your gui is one way to go, and probably the quickest - although running a subprocess is probably a more elegant solution. Only …