def GET(self):
     plain_weather_utils = PlainWeatherUtils()
     recent = plain_weather_utils.get_recent_locations(5)
     return render.plainweather(name='plainweather', recent_locations = recent)
 def GET(self):
     plain_weather_utils = PlainWeatherUtils()
     recent = plain_weather_utils.get_recent_locations(5)
     return json.dumps(recent)