This project demonstrates a simple Tkinter application that fetches data using the requests
module and displays it in a graphical user interface (GUI).
- Fetches data from a public API using
requests
. - Displays the result in a Tkinter window.
- Handles errors gracefully when the request fails.
Before running the project, ensure you have the following dependencies installed:
- Python 3.13
- Requests: Used to make HTTP requests.
- Tkinter: Used for creating the GUI (usually comes pre-installed with Python).
-
Clone the repository or download the files.
-
Install the required modules using
pip
:pip install requests