Skip to content

Latest commit

 

History

History
18 lines (12 loc) · 433 Bytes

File metadata and controls

18 lines (12 loc) · 433 Bytes

Python Tkinter Examples

Small collection of Tkinter GUI demos.

Structure

  • basic-examples/ → simple standalone widgets (entry, checkboxes, radio, order form)
  • database-app/ → mini CRUD app with MySQL

Run

# Basic examples (no extra install needed after tkinter)
python3 basic-examples/simple_entry_show_example.py

# Database app
pip install -r requirements.txt
python3 database-app/game_database_gui.py