This is a command-line tool that accepts a city's name as input and returns the current weather forecast using the OpenWeatherMap API. Leveraging OpenWeatherMap API to fetch weather data and parsing it using Python.
- 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 website to obtain an API key.
- Open the
weather_forecast.py
file in a text editor. - Replace
"api_key"
with your actual OpenWeatherMap API key (line 8).
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.
This code was written using GitHub Copilot, which can help you with API usage, data parsing, and error handling. For example, if you are not sure how to construct the URL for the OpenWeatherMap API, GitHub Copilot can suggest code that will help you. Or, if you are having trouble parsing the JSON response from the API, GitHub Copilot can suggest code that will help you extract the relevant data. GitHub Copilot can also help you to handle errors that may occur when you are fetching weather data from the API.