How to add placeholder to an Entry in tkinter?
I have created a login window in tkinter which has two Entry field, first one is Username and second one is Password.
code
I have created a login window in tkinter which has two Entry field, first one is Username and second one is Password.
code
I would like to get file path as input in my Python console application.
How do I add an image in Tkinter?
I have a program with a GUI that runs an external program through a Popen call:
I would like to display my program’s “live” output on GUI (all what printed in it). how can i access to my output? and what the right way to display it for example in text box?
I have created a program that prints results on command line.
(It is server and it prints log on command line.)
I have a simple code to visualise some data using tkinter. A button click is bound to the function that redraws the next “frame” of data. However, I’d like to have the option to redraw automatically with a certain frequency. I’m very green when it comes to GUI programming (I don’t have to do a lot for this code), so most of my tkinter knowledge comes from following and modifying examples. I guess I can use root.after to achieve this, but I’m not quite sure I understand how from other codes. The basic structure of my program is as follows:
Is there a way to change a Tkinter widget’s font style without knowing the widget’s font family and font size?
I need to to build an application that has multiple windows. In one of these windows, I need to be able to play a simple game and another window has to display questions and get response from a user that influences the game.
I want to create a very simple HTML/AJAX based GUI for a Python program. So the frontend is a HTML page which communicates with the program via AJAX. Can you give me a minimal implementation for the server-side using the python SimpleHTTPServer.SimpleHTTPRequestHandler?