https://github.com/fabriziomusacchio/tkinter_gui_examples
This is just a brief collection of some Tkinter GUI examples.
https://github.com/fabriziomusacchio/tkinter_gui_examples
python python-teach tkinter tkinter-graphic-interface tkinter-gui tkinter-python
Last synced: about 1 year ago
JSON representation
This is just a brief collection of some Tkinter GUI examples.
- Host: GitHub
- URL: https://github.com/fabriziomusacchio/tkinter_gui_examples
- Owner: FabrizioMusacchio
- Created: 2022-10-30T08:22:00.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2022-10-30T21:17:11.000Z (over 3 years ago)
- Last Synced: 2025-01-12T17:25:19.112Z (about 1 year ago)
- Topics: python, python-teach, tkinter, tkinter-graphic-interface, tkinter-gui, tkinter-python
- Language: Python
- Homepage: https://www.fabriziomusacchio.com/blog/2022-10-31-GitHub/
- Size: 1.29 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Tkinter GUI examples
This is just a brief collection of some Tkinter GUI examples.
## Installation and usage
1. cd to the downloaded and extracted repo folder.
2. Create a virtual environment and install the requirements:
* with conda:
```terminal
conda create -n Tkinter_tests -y python=3.9 pip
conda activate Tkinter_tests
pip install -r requirements.txt
```
* with pip:
```terminal
python -m venv Tkinter_test
source Tkinter_test/bin/activate
pip install -r requirements.txt
```
To run one of the scripts, simply execute:
```terminal
python analog_clock.py
```

```terminal
python digital_clock.py
```

```terminal
python coin_flip.py
```

```terminal
python calculator.py
```

## Sources
* Analog Clock:
* Digital Clock:
* Calculator:
* Coin Flip: