def get_weather():
    city = id = ""
    lat, lon = wa.get_current_lat_lon()
    # Call api from www.openweathermap.org
    w, f = wa.get_weather_dicts(lat, lon, city, id)
    w = wa.get_current_weather(w)
    f = wa.get_forecast(f)
    fmt = "{}\n{}\nWeather information provided by openweathermap.org"
    return fmt.format(w, f)