Tagged Questions

Tkinter is the standard python interface to the "Tk" graphical user interface (GUI) toolkit.

learn more… | top users | synonyms

22
votes
1answer
6k views

Pygtk VS Pyqt VS WxPython VS Tkinter

What is the most used of these library and why ? What are the differences ?
13
votes
3answers
1k views

Ubuntu System Tray in Python

How do I put a program in the system tray (I don't think it's called like that in Linux) in python TKINTER for UBUNTU 9.04.
13
votes
7answers
10k views

Nice IDE for wxPython or Tkinter GUI Development

I've had a little experience developing small command-line apps with Python, I want to move on to developing GUI's with Python, from all the GUI frameworks for Python the ones I feel most inclined to ...
12
votes
3answers
3k views

Code a timer in a python GUI in TKinter

I need to code a program with GUI in python (I'm thinking of using TKinter, 'cause it's easy, but I'm open to suggestions). My major problem is that I don't know how to code a timer (like a clock... ...
11
votes
5answers
1k views

is Tkinter worth learning?

I generally make my desktop interfaces with Qt, but some recent TK screenshots convince me Tk isn't just ugly motif any more. Additionally Tkinter comes bundled with Python, which makes distribution ...
10
votes
8answers
974 views

What is the most popular GUI library for Python in Windows?

What is the most popular GUI library for Python in Windows ?
10
votes
7answers
7k views

Need a GUI Builder for Tkinter / Python

I need a GUI Builder for Tkinter... was using something a couple of years ago, but I can't find it anymore (I remember something related to Komodo IDE, but perhaps I'm wrong). Please don't give me ...
10
votes
2answers
5k views

How do I handle the window close event (user clicking the 'X' button) in a Python Tkinter program?

How do I handle the window close event (user clicking the 'X' button) in a Python Tkinter program?
9
votes
7answers
4k views

Developing user interface in Python - TkInter Vs PyQt

If one wants to develop a user interface in Python, which one to go for: TkInter or PyQt? I just started with TkInter and I was able to get some simple UIs going with elementary widgets like label, ...
8
votes
2answers
2k views

Tix documentation for Python

I've recently starting playing around with Tix in Python, and I'm distressed at the lack of Python documentation for it online. Both the tutorial and book have plenty of code examples in Tcl and none ...
8
votes
3answers
6k views

How do I end a Python Tkinter program?

How do I end a Python Tkinter program? Let's say I have this code: from Tkinter import * def quit(): ??? root = Tk() Button(root, text="Quit", command=quit).pack() root.mainloop() How should ...
7
votes
3answers
1k views

Colour chart for Tkinter and Tix Using Python

This isn't a question but an answer to help others that might run into this issue. I wanted to visualise some basic colours so I could pick the appropriate ones for my colour scheme. I couldn't find ...
7
votes
3answers
1k views

Python/Tkinter: Interactively validating Entry widget content

What is the recommended technique for interactively validating content in a Tkinter Entry widget? I've read the posts about using validate=True and validatecommand=command and it appears that these ...
7
votes
4answers
1k views

Problem running python/matplotlib in background after ending ssh session

I have to VPN and then ssh from home to my work server and want to run a python script in the background, then log out of the ssh session. My script makes several histogram plots using matplotlib, and ...
7
votes
5answers
4k views

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

My little brother is just getting into programming, and for his Science Fair project, he's doing a simulation of a flock of birds in the sky. He's gotten most of his code written, and it works nicely, ...
6
votes
1answer
75 views

How to package a program to share with people. In python 3

I am new to python and coding in general , and I made a simple program for my friends using some things from the os module and a tk framework called easygui . Thing is I don't want all my friends to ...
6
votes
1answer
96 views

Trying to learn PyQt with knowledge from Tkinter

Maybe I'm jumping into the deep end, but I'll give it a shot. Here are some useful features of Tkinter: The Tkinter Canvas widget is an object oriented drawing canvas. The elements of the drawing ...
6
votes
1answer
401 views

python 3 tkinter cx_freeze

It amazes me that this topic hasn't been given much attention There are 3 or 4 stackoverflow threads on this topic. None have resolved the issue. I would very much like to have this answered so I'm ...
6
votes
5answers
360 views

As a newbie, where should I go if I want to create a small GUI program?

I'm a newbie with a little experience writing in BASIC, Python and, of all things, a smidgeon of assembler (as part of a videogame ROM hack). I wanted to create small tool for modifying the hex values ...
6
votes
1answer
345 views

displaying a large amount of formated text in Python

I have two large identical-sized files. One is ASCII plain text, and the other is a colour-coded overlay, one byte per text character in the corresponding file. These files can be large - upto 2.5 ...
6
votes
1answer
3k views

TkInter Invoke Event in Main Loop

How do you invoke a tKInter event from a separate object? I'm looking for something like wxWidgets wx.CallAfter. For example, If I create a child object and pass it my root Tkinter.Tk() and then try ...
5
votes
2answers
80 views

In Tkinter, how can I add a lot of Buttons to the frame efficiently?

I want to add ten buttons to Tkinter, named One to Ten. I basically just used the brute force method, adding each button as I went, in the init function of my application's class. It works, but I want ...
5
votes
4answers
134 views

What would be the most pythonic way to make an attribute that can be used in a lambda?

More specifically, I want to be able to support lambda: <some_or_other_setter>, but I want to keep the code clear and to a concise. I have to validate the value, so I need a setter of some kind. ...
5
votes
1answer
2k views

matplotlib Update a Plot

I'm having issues with redrawing the figure here. I allow the user to specify the units in the time scale (x-axis) and then I recalculate and call this function plots(). I want the plot to simply ...
5
votes
3answers
758 views

Tkinter button command activates upon running program?

I'm trying to make a build retrieval form, and seem to have issues with the buttons... I'm a novice at Python/tkinter GUI programming (and GUI programming in general) and borrowed the skeleton of a ...
5
votes
3answers
1k views

Python Tkinter “X” button control (the button that close the window)

I am doing saving jobs when user presses my "Close" button in GUI environment written in Python with Tkinter library. However, if user pushes the X button on top the window to close the window, I ...
5
votes
1answer
4k views

How do you set a Tkinter frame size?

This is the code that's giving me trouble. f = Frame(root, width=1000, bg="blue") f.pack(fill=X, expand=True) l = Label(f, text="hi", width=10, bg="red", fg="white") l.pack() If I comment out the ...
4
votes
1answer
96 views

Programatically opening URLs in web browser in Python

I have a tkinter script. I was wondering is there anyway to have is so when you hit a button it takes you to a Web Site from tkinter import * app = Tk() app.geometry("250x400") app.title("Links") ...
4
votes
1answer
101 views

python and tkinter: using scrollbars on a canvas

I've been searching around the web and I can't seem to figure this one out. I'm fairly new to tkinter, but figured this has a simple solution that's just eluding me. I'm trying to make a canvas ...
4
votes
2answers
77 views

My Tkinter GUI is too … static?

I use a Tkinter GUI to intiate a measurement and analysis process, which basically gets going with a clicked button. Since those measurements can take a while, I tried to include a progress bar, ...
4
votes
2answers
162 views

tkinter: inherit from Frame or not

I've seen two basic ways of setting up a tkinter program. Is there any reason to prefer one to the other? from Tkinter import * class Application(): def __init__(self, root, title): ...
4
votes
4answers
343 views

Way to play video files in Tkinter?

Is there a way to play video files like AVI, MP4, etc.? I need this solution to work on the Windows platform. I tried using PyMedia, but apparently it only works with Pygame. What is the solution to ...
4
votes
2answers
203 views

Making a window not resizable in Windows

I've been working with Windows API calls so that I can get some native Windows window styles working with Tkinter. I've run into problems when I try to prevent the window from being resizable. Using ...
4
votes
1answer
158 views

Python, Pyinstaller creating shortcuts in windows

I am making a python script that creates a shortcut (.lnk) file, using win32com.client module, I am using pyinstaller to convert it to exe. I'm also using Tkinter, so I need --tk support in ...
4
votes
3answers
135 views

Is there anyway to hook up Python/Tkinter to an already running Tcl/Tk app?

I work a lot on Pure Data, an app written in Tcl/Tk and C. I'd like to be able to make a python API for plugins for modifying the Tcl/Tk GUI. To do this, it seems that I would need to be able to ...
4
votes
1answer
120 views

How to read text from a Tkinter Text Widget

from Tkinter import * window = Tk() frame=Frame(window) frame.pack() text_area = Text(frame) text_area.pack() text1 = text_area.get('0.0',END) def cipher(data): As,Ts,Cs,Gs, = 0,0,0,0 for ...
4
votes
2answers
1k views

Tkinter: “Python may not be configured for Tk”

Today I wanted to start working with Tkinter, but I have some problems. Python 3.2 (r32:88445, Mar 28 2011, 04:14:07) [GCC 4.4.5] on linux2 Type "help", "copyright", "credits" or "license" for more ...
4
votes
1answer
237 views

Python program getting stuck

I am new to Python and I am writing a program just for fun. My program consists of three .py files (let's say a.py, b.py, c.py). a will either call on the functions within either b or c, depending on ...
4
votes
2answers
973 views

Python Copy text to clipboard [Platform Independent]

I am trying to write a function that copies a string parameter to the clipboard. I intend to use this in a python shell script I've been working on. This is what I have so far (Found most this snippet ...
4
votes
3answers
416 views

Making Matplotlib run faster

Snippet: ax = Axes3D(self.fig) u = np.linspace(0, 2 * np.pi, 100) v = np.linspace(0, np.pi, 100) x = self.prop * np.outer(np.cos(u), np.sin(v)) y = self.prop * np.outer(np.sin(u), np.sin(v)) z = ...
4
votes
1answer
222 views

Trying to update a 3D graphs coordinates with matplotlib

I have a function that will graph a 3D sphere with matplotlib in tkinter. However, every successive time I call the function the performance when orbiting the sphere drops. Also the graph only updates ...
4
votes
2answers
169 views

How do I run unittest on a Tkinter app?

I've just begun learning about TDD, and I'm developing a program using a Tkinter GUI. The only problem is that once the .mainloop() method is called, the test suite hangs until the window is closed. ...
4
votes
1answer
511 views

Why does Tkinter frame resize when text box is added to it?

With this code, the window is 500 by 500, which is what I'm going for: from tkinter import * root = Tk() frame = Frame(root, width=500, height=500) frame.pack() root.mainloop() When I add a text ...
4
votes
1answer
441 views

Calling Tcl procedures with Function pointers as argument from Python

Is it possible to call Tcl procedures that have function pointers (or callback functions) from Python? I am using Tkinter to call Tcl procedures from Python. Python Snippet : proc callbackFunc(): ...
4
votes
1answer
864 views

How do I make Tkinter support PNG transparency?

I put in a partially transparent PNG image in Tkinter and all I get is this How do I make the dark triangle on the right clear? (like it's supposed to be) This is python 2.6 on Windows 7, btw.
4
votes
3answers
220 views

Replacing a single color in PIL?

I have an Image, I'd like to replace all the pixels of one color with those in a different color, what is the simplest way to go about that? More or less I have an image in tkinter, and when a ...
4
votes
4answers
105 views

Coloring close points

I have a dense set of points in the plane. I want them colored so that points that are close to each other have the same color, and a different color if they're far away. For simplicity assume that ...
4
votes
3answers
1k views

Calculating the pixel size of a string with Python

I have a Python script which needs to calculate the exact size of arbitrary strings displayed in arbitrary fonts in order to generate simple diagrams. I can easily do it with Tkinter. import Tkinter ...
4
votes
2answers
648 views

Why do I get a segmentation fault while redirecting sys.stdout to Tkinter.Text widget in Python?

I'm in the process of building a GUI-based application with Python/Tkinter that builds on top of the existing Python bdb module. In this application, I want to silence all stdout/stderr from the ...
4
votes
2answers
2k views

Using multiple listboxes in python tkinter

from Tkinter import * master = Tk() listbox = Listbox(master) listbox.pack() listbox.insert(END, "a list entry") for item in ["one", "two", "three", "four"]: listbox.insert(END, item) ...

1 2 3 4 5 22