55 lines
2 KiB
Python
55 lines
2 KiB
Python
|
#!/usr/bin/env python2.5
|
||
|
# -*- coding: utf-8 -*-
|
||
|
__author__ = "Soeren Apel (abraxa@dar-clan.de), Frank Gau (fgau@gau-net.de), Thomas Gstaedner (thomas (a) gstaedtner (.) net)"
|
||
|
__version__ = "prototype"
|
||
|
__copyright__ = "Copyright (c) 2008"
|
||
|
__license__ = "GPL3"
|
||
|
|
||
|
ZIP_CODE = 'GMXX0007' #GMXX0007 Berlin, GMXX0049 Hamburg
|
||
|
TEMP_UNIT = 'c'
|
||
|
|
||
|
WEATHER_URL = 'http://xml.weather.yahoo.com/forecastrss?p=%s&u=%s'
|
||
|
WEATHER_NS = 'http://xml.weather.yahoo.com/ns/rss/1.0'
|
||
|
|
||
|
from epydial import *
|
||
|
import urllib
|
||
|
from xml.dom import minidom
|
||
|
|
||
|
class WeatherScreen(EdjeGroup):
|
||
|
def __init__(self, screen_manager):
|
||
|
EdjeGroup.__init__(self, screen_manager, WEATHER_SCREEN_NAME)
|
||
|
self.weather_for_zip(ZIP_CODE, TEMP_UNIT)
|
||
|
|
||
|
def weather_for_zip(self, zip_code, unit):
|
||
|
url = WEATHER_URL % (zip_code, unit)
|
||
|
dom = minidom.parse(urllib.urlopen(url))
|
||
|
forecasts = []
|
||
|
for node in dom.getElementsByTagNameNS(WEATHER_NS, 'forecast'):
|
||
|
forecasts.append({
|
||
|
'date': node.getAttribute('date'),
|
||
|
'low': node.getAttribute('low'),
|
||
|
'high': node.getAttribute('high'),
|
||
|
'condition': node.getAttribute('text')
|
||
|
})
|
||
|
ycondition = dom.getElementsByTagNameNS(WEATHER_NS, 'condition')[0]
|
||
|
|
||
|
self.part_text_set("location", "dom.getElementsByTagName('title')[0].firstChild.data[17:]")
|
||
|
|
||
|
self.part_text_set("current", "current condition: %s<br>current temp: %s" % (ycondition.getAttribute('text'), ycondition.getAttribute('temp')))
|
||
|
#print forecasts.pop(1)['date']
|
||
|
|
||
|
self.part_text_set("forecasts", "forecasts:<br>date: %s<br>low: %s<br>high: %s<br>condition: %s" % (forecasts[1]['date'], forecasts[1]['low'], forecasts[1]['high'], forecasts[1]['condition']))
|
||
|
|
||
|
# return {
|
||
|
# 'current_condition': ycondition.getAttribute('text'),
|
||
|
# 'current_temp': ycondition.getAttribute('temp'),
|
||
|
# 'forecasts': forecasts,
|
||
|
# 'title': dom.getElementsByTagName('title')[0].firstChild.data
|
||
|
# }
|
||
|
|
||
|
@edje.decorators.signal_callback("mouse,up,1", "*")
|
||
|
def on_edje_signal_dialer_status_triggered(self, emission, source):
|
||
|
if source == "button_12":
|
||
|
PyneoController.show_dialer_screen()
|
||
|
print 'source: ', source
|