Members of the marketing team have come up with another idea. They would like BigProject to be able to display the current outside temperature for where we are, so they wrote this:
Req. 21: Display the current temperature for a city.
This might seem a difficult requirement to fulfill, but Qt comes to the rescue: QtNetworkAccessManager makes it incredibly easy to retrieve data from internet sources that support HTTP or HTTPS access, so we will use it.
We will start by finding a weather API we can use, and then we will move on to retrieving weather information using QtNetworkAccessManager. Finally, we will test the code and make sure it really does what we want.