Skip to content

Python projects that are used to explore GUI programming.

Notifications You must be signed in to change notification settings

AaronBachmann/GUI_Python

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 

Repository files navigation

GUI_Python

Python projects that are used to explore GUI programming using Tkinter.

Digital Clock with Timer

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/

  1. Run the program.
  2. Enter your desired time in minutes in the entry box. Program will convert to seconds.
  3. Select Set Timer.
  4. Select Start.

image

  1. Timer will chime with the desired sound when the counter reaches 0.
  2. Program will display “BREAK TIME”.
  3. Enter a new time in the entry box to continue. Select Set Timer > select Start.
  4. Select X to exit out of the program.

image

Simple Calculator

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

image

Weather App

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.

Tutorial: https://www.youtube.com/watch?v=D8-snVfekto

image

About

Python projects that are used to explore GUI programming.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages