This is the conclusion to the first tutorial LOCATED HERE
This tutorial covers:
- adding templates to support the views
- integrating the web-service
- adding an interactive form
- and a few other odds & ends
While reviewing the video after uploading I did make an error in the code that is not immediately obvious. I wrote an error checking mechanism:
if (current.Success or forecast.Success) == False:
This code would fail if one of the services returned false but not the other. This should have been something along the lines of:
if (current.Success == False) or (forecast.Success == False):
Oh well – that’s what I get for recording myself coding
Enjoy.
Right-Click here and select “Save Link As” to download the video or stream it below: