An open API service indexing awesome lists of open source software.

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.

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
```

![img](GIF/analog_clocl.gif "Analog clock.")

```terminal
python digital_clock.py
```

![img](GIF/digital_clocl.gif "Digital clock.")

```terminal
python coin_flip.py
```

![img](GIF/coin_flip.gif "Coin flip.")

```terminal
python calculator.py
```

![img](GIF/calculator.gif "Scientific calculator.")

## Sources

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