An interactive desktop application written in Python using OpenWeatherMap API.
It allows you to check the current weather in a selected city.
- ☁️ Weather data for any city (temperature, humidity, wind speed, general conditions)
- 📦 Handles API errors and empty results
- Python 3.9+
- Libraries:
requeststkinter(included with Python)
Install dependencies:
pip install -r requirements.txt🛠️ How to Run
- Clone the repository:
git clone https://github.com/your-username/your-repo.git cd your-repo - Add your weather API key (OpenWeatherMap) to the code:
Create a file named config.py and add:
MY_API_KEY = "your_api_key_here"
- Run the app:
python app.py