49a7ee643e
- Refactored weather plugin/backend as Darksky plugin/backend
42 lines
1.2 KiB
Python
42 lines
1.2 KiB
Python
import time
|
|
|
|
from platypush.backend import Backend
|
|
from platypush.context import get_plugin
|
|
from platypush.message.event.weather import NewWeatherConditionEvent
|
|
|
|
|
|
class WeatherDarkskyBackend(Backend):
|
|
"""
|
|
Weather forecast backend - listens and propagates new weather events.
|
|
|
|
Triggers:
|
|
|
|
* :class:`platypush.message.event.weather.NewWeatherConditionEvent` when there is a weather condition update
|
|
|
|
Requires:
|
|
|
|
* The :class:`platypush.plugins.weather.darksky.WeatherDarkskyPlugin` plugin configured
|
|
"""
|
|
|
|
def __init__(self, poll_seconds, **kwargs):
|
|
super().__init__(**kwargs)
|
|
self.poll_seconds = poll_seconds
|
|
self.latest_update = {}
|
|
|
|
def run(self):
|
|
super().run()
|
|
weather = get_plugin('weather.darksky')
|
|
self.logger.info('Initialized weather forecast backend')
|
|
|
|
while not self.should_stop():
|
|
current_weather = weather.get_current_weather().output
|
|
del current_weather['time']
|
|
|
|
if current_weather != self.latest_update:
|
|
self.bus.post(NewWeatherConditionEvent(**current_weather))
|
|
|
|
self.latest_update = current_weather
|
|
time.sleep(self.poll_seconds)
|
|
|
|
|
|
# vim:sw=4:ts=4:et:
|