12 lines
No EOL
487 B
Python
12 lines
No EOL
487 B
Python
from WeatherForecast import WeatherForecast
|
|
|
|
class WeatherInterface (object):
|
|
"""Interface for fetching and processing weather forecast information."""
|
|
def is_available (self):
|
|
raise NotImplementedError("Functions needs to be implemented")
|
|
|
|
def get_forecast_in_days (self, offset_by_days):
|
|
raise NotImplementedError("Functions needs to be implemented")
|
|
|
|
def get_today_forecast (self):
|
|
raise NotImplementedError("Functions needs to be implemented") |