2012-09-13 23:39:14 +00:00
|
|
|
"weather, thanks to wunderground"
|
2010-01-17 04:24:36 +00:00
|
|
|
|
2010-04-23 03:47:41 +00:00
|
|
|
from util import hook, http
|
2010-01-17 04:24:36 +00:00
|
|
|
|
|
|
|
|
2013-01-27 22:40:31 +00:00
|
|
|
@hook.api_key('wunderground')
|
2010-05-07 23:16:44 +00:00
|
|
|
@hook.command(autohelp=False)
|
2013-01-27 22:40:31 +00:00
|
|
|
def weather(inp, nick='', server='', reply=None, db=None, api_key=None):
|
2012-09-13 23:39:14 +00:00
|
|
|
".weather <location> [dontsave] -- gets weather data from Wunderground "\
|
|
|
|
"http://wunderground.com/weather/api"
|
|
|
|
|
|
|
|
if not api_key:
|
|
|
|
return None
|
2010-02-02 04:42:34 +00:00
|
|
|
|
|
|
|
loc = inp
|
2010-02-01 08:33:06 +00:00
|
|
|
|
2010-01-17 04:24:36 +00:00
|
|
|
dontsave = loc.endswith(" dontsave")
|
|
|
|
if dontsave:
|
|
|
|
loc = loc[:-9].strip().lower()
|
2010-02-01 08:33:06 +00:00
|
|
|
|
2010-02-02 04:42:34 +00:00
|
|
|
db.execute("create table if not exists weather(nick primary key, loc)")
|
2010-02-01 08:33:06 +00:00
|
|
|
|
2010-03-01 02:32:41 +00:00
|
|
|
if not loc: # blank line
|
2010-02-02 04:42:34 +00:00
|
|
|
loc = db.execute("select loc from weather where nick=lower(?)",
|
|
|
|
(nick,)).fetchone()
|
2010-01-17 04:24:36 +00:00
|
|
|
if not loc:
|
|
|
|
return weather.__doc__
|
2010-02-01 08:33:06 +00:00
|
|
|
loc = loc[0]
|
2010-01-17 04:24:36 +00:00
|
|
|
|
2012-09-13 23:39:14 +00:00
|
|
|
loc, _, state = loc.partition(', ')
|
|
|
|
|
|
|
|
# Check to see if a lat, long pair is being passed. This could be done more
|
|
|
|
# completely with regex, and converting from DMS to decimal degrees. This
|
|
|
|
# is nice and simple, however.
|
|
|
|
try:
|
|
|
|
float(loc)
|
|
|
|
float(state)
|
|
|
|
|
|
|
|
loc = loc + ',' + state
|
|
|
|
state = ''
|
|
|
|
except ValueError:
|
|
|
|
if state:
|
|
|
|
state = http.quote_plus(state)
|
|
|
|
state += '/'
|
|
|
|
|
|
|
|
loc = http.quote_plus(loc)
|
|
|
|
|
|
|
|
url = 'http://api.wunderground.com/api/'
|
|
|
|
query = '{key}/geolookup/conditions/forecast/q/{state}{loc}.json' \
|
|
|
|
.format(key=api_key, state=state, loc=loc)
|
|
|
|
url += query
|
|
|
|
|
|
|
|
try:
|
|
|
|
parsed_json = http.get_json(url)
|
|
|
|
except IOError:
|
|
|
|
print 'Could not get data from Wunderground'
|
|
|
|
return None
|
|
|
|
|
|
|
|
info = {}
|
|
|
|
if 'current_observation' not in parsed_json:
|
|
|
|
resp = 'Could not find weather for {inp}. '.format(inp=inp)
|
|
|
|
|
|
|
|
# In the case of no observation, but results, print some possible
|
|
|
|
# location matches
|
|
|
|
if 'results' in parsed_json['response']:
|
|
|
|
resp += 'Possible matches include: '
|
|
|
|
results = parsed_json['response']['results']
|
|
|
|
|
|
|
|
for place in results[:6]:
|
|
|
|
resp += '{city} '.format(**place)
|
|
|
|
|
|
|
|
if place['state']:
|
|
|
|
resp += '{state} '.format(**place)
|
|
|
|
|
|
|
|
if place['country_name']:
|
|
|
|
resp += '{country_name}, '.format(**place)
|
2010-01-17 04:24:36 +00:00
|
|
|
|
2012-09-13 23:39:14 +00:00
|
|
|
resp = resp[:-2]
|
2010-01-17 04:24:36 +00:00
|
|
|
|
2012-09-13 23:39:14 +00:00
|
|
|
reply(resp)
|
|
|
|
return
|
2010-01-17 04:24:36 +00:00
|
|
|
|
2012-09-13 23:39:14 +00:00
|
|
|
obs = parsed_json['current_observation']
|
|
|
|
sf = parsed_json['forecast']['simpleforecast']['forecastday'][0]
|
|
|
|
info['city'] = obs['display_location']['full']
|
|
|
|
info['t_f'] = obs['temp_f']
|
|
|
|
info['t_c'] = obs['temp_c']
|
|
|
|
info['weather'] = obs['weather']
|
|
|
|
info['h_f'] = sf['high']['fahrenheit']
|
|
|
|
info['h_c'] = sf['high']['celsius']
|
|
|
|
info['l_f'] = sf['low']['fahrenheit']
|
|
|
|
info['l_c'] = sf['low']['celsius']
|
|
|
|
info['humid'] = obs['relative_humidity']
|
|
|
|
info['wind'] = 'Wind: {mph}mph/{kph}kph'\
|
|
|
|
.format(mph=obs['wind_mph'], kph=obs['wind_kph'])
|
|
|
|
reply('{city}: {weather}, {t_f}F/{t_c}C'\
|
|
|
|
'(H:{h_f}F/{h_c}C L:{l_f}F/{l_c}C)' \
|
|
|
|
', Humidity: {humid}, {wind}'.format(**info))
|
2010-01-17 04:24:36 +00:00
|
|
|
|
2010-02-02 04:42:34 +00:00
|
|
|
if inp and not dontsave:
|
|
|
|
db.execute("insert or replace into weather(nick, loc) values (?,?)",
|
|
|
|
(nick.lower(), loc))
|
|
|
|
db.commit()
|