# Lab Exercise 13 (Weather Notifier)
## Task
You are creating a push notification system that works for multiple platforms. You want to distribute information about the current weather and news headlines. This system will be potentially used on many platforms so you have to think about the maintainability issues for adding new platform support.
```python
class Headline:
def __init__(self, headline:str, details:str, source:str):
self.__headline = headline
self.__details = details
self.__source = source
def __str__(self) -> str:
return "%s(%s)\n%s" % (self.__headline, self.__source, self.__details)
class Weather:
def __init__(self, temp:float, humidity:float, outlook:str):
self.__temp = temp
self.__humidity = humidity
self.__outlook = outlook
def __str__(self) -> str:
return "%s: %.1fC %.1f" % (self.__outlook, self.__temp, self.__humidity)
h = Headline("Dalai Lama Triumphantly Names Successor After Discovering Woman With ‘The Purpose Of Our Lives Is To Be Happy’ Twitter Bio","Details","The Onion")
w = Weather(25.0,0.7,"Cloudy")
print(h)
print(w)
```
To implement this, you have to apply the observer pattern. Your subject would be `Weather` data and `Headline` data (which are their own classes). These subjects should be encapsulated into a single publisher class (which will be called `PushNotifier`).
Any platform, that is interested in the changes to the subject should realize a `Subscriber` abstraction (Observer), which contains the abstract method update().

- for `EmailSubscriber` you can simulate email updates by simply printing the new weather and headline
- foe `FileLogger` you actually need to perform file writing on a file called `filename`
**Complete the system using the observer pattern.**
## Assessment Criteria
- Completeness of the pattern - 40
- Elegance of method and attribute naming - 10