About 364,000 results
Open links in new tab
  1. How to hide console window in python? - Stack Overflow

    I am writing an IRC bot in Python. I wish to make stand-alone binaries for Linux and Windows of it. And mainly I wish that when the bot initiates, the console window should hide and the user shou...

  2. python - Build a simple GUI that runs full Blender in the background ...

    For this use, I want to build a simple GUI that "wrappers" Blender inside. For example, I can add a button that sets an object invisible in rendering. Another important feature I need is the user being …

  3. 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 …

  4. python - Run blender without GUI? - Blender Stack Exchange

    Jul 29, 2015 · Python scripting will be involved in this, naturally-not sure how to do this without using the logic editor, though...I need some way to be able to run these scripts and have Blender output some …

  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. What's the simplest cross-platform way to pop up graphical dialogs in ...

    I want the simplest possible way to pop up simple dialogs in Python scripts. Ideally, the solution would: Work on Windows, OS X, Gnome, KDE Look like a native dialog on any OS Require minimal code...

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

  8. user interface - Python: GUI and back-end - Stack Overflow

    Python: GUI and back-end Asked 5 years, 2 months ago Modified 5 years, 2 months ago Viewed 2k times

  9. Modern GUI programming in Python 3.3 - Stack Overflow

    I am putting together a few programs, and it's about time to start making GUI's for some of them. The code is currently written in Python 3.3. I have researched a few GUI's for Python, namely Tkin...

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