You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A command-line tool in Python that utilizes the OpenWeatherMap API to retrieve and display the current weather forecast for a given city.
The tool accepts a city name as input, communicates with the OpenWeatherMap API to fetch the weather data, parses the JSON response, and presents the relevant weather information, including the city name, temperature, and description.
It also includes error handling to handle potential exceptions during the API request and response processes.
Prerequisites:
Python 3.x installed on your system
requests library installed (you can install it by running pip install requests)
geopy library installed (you can install it by running pip install geopy)
Getting Started:
Clone or download this repository to your local machine.
Open the Weather_forecast.py file in a text editor.
Replace "api_key" with your actual OpenWeatherMap API key.
Usage:
Run the command-line tool by executing the Weather_forecast.py script from the command line and providing a city name as an argument.
Working:
The script constructs the API endpoint URL using the provided city name and your OpenWeatherMap API key.
It sends a GET request to the OpenWeatherMap API using the requests library.
If the response status code is 200, the JSON response is parsed, and relevant weather information is extracted.
The extracted weather information, including the city name, temperature, and description, is printed to the console.
Error Handling:
If the API request fails, an appropriate error message is displayed.
If the API response status code is not 200, an error message with the status code is shown.
If no city name is provided as a command-line argument, an error message is displayed.
Ouput:
About
Command-line tool that accepts a city's name and returns the current weather forecast. Leveraging OpenWeatherMap API to fetch weather data and parsing it using Python.