1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
# -*- coding: utf-8 -*-
import xbmc
DAYS = { "Mon": xbmc.getLocalizedString( 11 ),
"Tue": xbmc.getLocalizedString( 12 ),
"Wed": xbmc.getLocalizedString( 13 ),
"Thu": xbmc.getLocalizedString( 14 ),
"Fri": xbmc.getLocalizedString( 15 ),
"Sat": xbmc.getLocalizedString( 16 ),
"Sun": xbmc.getLocalizedString( 17 )}
WEATHER_CODES = { 'chanceflurries' : '41',
'chancerain' : '39',
'chancesleet' : '6',
'chancesnow' : '41',
'chancetstorms' : '38',
'clear' : '32',
'cloudy' : '26',
'flurries' : '13',
'fog' : '20',
'hazy' : '21',
'mostlycloudy' : '28',
'mostlysunny' : '34',
'partlycloudy' : '30',
'partlysunny' : '34',
'sleet' : '18',
'rain' : '11',
'snow' : '42',
'sunny' : '32',
'tstorms' : '35',
'unknown' : 'na',
'nt_chanceflurries' : '46',
'nt_chancerain' : '45',
'nt_chancesleet' : '45',
'nt_chancesnow' : '46',
'nt_chancetstorms' : '47',
'nt_clear' : '31',
'nt_cloudy' : '27',
'nt_flurries' : '46',
'nt_fog' : '20',
'nt_hazy' : '21',
'nt_mostlycloudy' : '27',
'nt_mostlysunny' : '33',
'nt_partlycloudy' : '29',
'nt_partlysunny' : '33',
'nt_sleet' : '45',
'nt_rain' : '45',
'nt_snow' : '46',
'nt_sunny' : '31',
'nt_tstorms' : '47',
'nt_unknown' : 'na'}
|