Questions tagged [tkinter]
Tkinter is the standard Python interface to the "Tk" graphical user interface toolkit.
355 questions
2
votes
1
answer
97
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
141
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
112
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
126
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
169
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
182
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
90
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
96
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
75
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
152
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 ...
3
votes
2
answers
503
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
129
views
"Sticky Note" App
The code below is a Sticky Note App.
...
3
votes
1
answer
127
views
Messy Sudoku solver
I have made a simple Sudoku solver in python and TKinter. However, I have used code from many different sources, so it is not neat. I can only write ugly code, so it is just about impossible for me to ...
2
votes
1
answer
185
views
Pomodoro Work Timer with GUI
My first actual code using GUI. Based off a class I took. Code criticism much appreciated. (I was all over the place with this one)
Resources
Picture:
Sound: https://www.freesoundslibrary.com/success-...
3
votes
1
answer
114
views
Simple Python MVC app for incrementing numbers using buttons
Intro:
I am learning about the model view controller (MVC) architecture and I am looking for feedback from more experienced/knowledgeable people so I can check if my understanding is sound, and learn ...