- 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.
- Python 3.x installed on your system
requests
library installed (you can install it by runningpip install requests
)geopy
library installed (you can install it by runningpip install geopy
)
- Clone or download this repository to your local machine.
- Sign up on the OpenWeatherMap to obtain an API key.
- Open the
Weather_forecast.py
file in a text editor. - Replace
"api_key"
with your actual OpenWeatherMap API key.
- Run the command-line tool by executing the
Weather_forecast.py
script from the command line and providing a city name as an argument.
- 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.
- 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.