Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Your program must prompt the user for their city or zip code and request weather forecast data from openweathermap.org. This is my API code is
Your program must prompt the user for their city or zip code and request weather forecast data from openweathermap.org. This is my API code is e7968327158f75e7decd40848e6d2a4d
Your program must display the weather information in a READABLE format to the user.
Requirements:
- Creat a Python Application which asks the user for their zip code or city.
- Use the zip code or city name in order to obtain weather forecast data from: http://openweathermap.org/
- Display the weather forecast in a readable format to the user.
- Use comments within the application, where appropriate, in order to document what the program is doing.
- Use functions including a main function.
- Allow the user to run the program multiple times.
- Validate whether the user entered valid data. If valid data isn't presented, notify the user.
- Use the Requests library in order to request data from the webservice.
- Use try blocks when establishing connections to the webservice. You must print a message to the user indicating whether or not the connection was successful.
Deliverables
- Pseudocode
- Flowchart
Step by Step Solution
★★★★★
3.49 Rating (146 Votes )
There are 3 Steps involved in it
Step: 1
import requests Your OpenWeatherMap API key apikey e7968327158f75e7decd40848e6d2a4d def getweatherdatalocation try Check if the users input is a zip c...Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started