Python projects that are used to explore GUI programming using Tkinter.
A simple digital clock with a built in timer. It was built in Python 3.
import tkinter
install playsound or similar module. {pip install playsound}
I used a Star Trek TNG sound effect for the timer: https://www.trekcore.com/audio/
- Run the program.
- Enter your desired time in minutes in the entry box. Program will convert to seconds.
- Select Set Timer.
- Select Start.
- Timer will chime with the desired sound when the counter reaches 0.
- Program will display “BREAK TIME”.
- Enter a new time in the entry box to continue. Select Set Timer > select Start.
- Select X to exit out of the program.
A simple calculator built in Python 3 using Tkinter.
Performs addition, subtraction, multiplication, and division.
import tkinter
Tutorial: https://www.youtube.com/watch?v=F5PfbC5ld-Q
A weather app built in Python 3 using Tkinter and OpenWeatherMap.org API parameters.
import tkinter
import requests
install pillow {pip install pillow}
from PIL import Image, Image Tk
You will need to register for a free OpenWeatherMap.org account to obtain a unique API key.



