Questions tagged [tkinter]
Tkinter is the standard Python interface to the "Tk" graphical user interface toolkit.
359 questions
10
votes
4
answers
1k
views
Yet Another Python Weather Visualizer using Open-Meteo
As a personal project to build my portfolio, I've created a simple weather app that displays temperature, precipitation, and wind for any given city. This is my first time building a GUI using ...
4
votes
1
answer
222
views
CSV TimeSheet Calculator
This program takes in a CSV timesheet for my current job, groups the hours worked by employee then outputs it to a txt file. I used a simple GUI with tkinter and ...
3
votes
1
answer
189
views
Synchronize clock tick for timed action
The code shown below goes back to the tutorial How to Use a Timer in Tkinter.
I first simplified the tkinter import by restriction to Python 3.
Then I found a ...
2
votes
1
answer
114
views
Design for this automated menu-building method in GUI
I have a github repository where I uploaded the code of a sample Python-tkinter application for illustrate how to do a GUI with i18n following the MVC pattern and good practices.
The thing is that I ...
7
votes
1
answer
175
views
Crossword game with python and flask
I recently finished my first major software project, aiming to provide an educational crossword product for my school assignment that can generate and display always-unique crosswords. I learned a bit ...
3
votes
3
answers
135
views
Arithmetic practice script in a tkinter window
I wrote a script that gives the user a quick arithmetic quiz and results using a tkinter window.
I am very new to programming, and this is also my first time using <...
2
votes
1
answer
143
views
Birthday database and emailer
This is my third project for review; I would like feedback on:
code readability
code efficiency
particularly good parts
The project is called BirthdayBackup. It's a
GUI app that allows you manage a ...
4
votes
1
answer
191
views
Python - beginner - GUI
I have been learning python for 1.5 month now I am learning in my free time between job and other life commitments so my progress may be slow. It may take time for me to reply but I am interested in ...
1
vote
1
answer
217
views
Python - beginner level - password manager GUI
I have been learning Python for 1.5 months now. I am learning in my free time between jobs and other life commitments so my progress may be slow or it may take time for me to reply but I am interested ...
2
votes
1
answer
111
views
Application for restaurant patrons to know how long they have to wait in line
This application is for restaurant patrons to know how long they have to wait in line.
We would like to design a more sophisticated GUI interface, but do not know how to go about it.
Please let me ...
1
vote
0
answers
116
views
Tkinter threadpool with callback implementation - alternative approach feedback
This is an attempt to create a usable alternative to the "normal" method of implementing concurrency with tkinter. The "normal" method seems to be by pro-actively polling a result ...
2
votes
1
answer
98
views
Clock time validation app, cognitive exercise, minimal viable product
How to improve this code, how to make it accessible to get user feedback?
This is a minimal clock time validation app. There is a clock face and the user is asked to validate the time the clock hands ...
3
votes
1
answer
162
views
Python tic-tac-toe using tkinter
I recently made this tic-tac-toe program using tkinter, but I am quite new to tkinter, so I would be grateful for tips on how to improve the program. Note that the actual tic-tac-toe logic is being ...
4
votes
2
answers
531
views
Simple calculator in python using tkinter
I just learned Python and Tkinter and I've just made a simple calculator using Tkinter for a small project at my school. It can do addition, subtraction, multiplication and division. I think that my ...
1
vote
0
answers
146
views
"Sticky Note" App
The code below is a Sticky Note App.
...