phenny/modules/tfw.py

85 lines
2.4 KiB
Python
Raw Normal View History

2011-10-19 18:56:04 -04:00
#!/usr/bin/python3
"""
tfw.py - the fucking weather module
author: mutantmonkey <mutantmonkey@mutantmonkey.in>
"""
2011-09-22 14:17:27 -04:00
from urllib.parse import quote as urlquote
from urllib.error import HTTPError
import web
import lxml.html
2011-04-04 16:37:27 -04:00
def tfw(phenny, input, fahrenheit=False, celsius=False):
2011-12-04 19:46:28 -05:00
""".tfw <city/zip> - Show the fucking weather at the specified location."""
2011-12-04 19:46:28 -05:00
zipcode = input.group(2)
if not zipcode:
# default to Blacksburg, VA
zipcode = "24060"
2010-12-06 17:39:08 -05:00
2011-12-04 19:46:28 -05:00
if fahrenheit:
celsius_param = ""
else:
celsius_param = "&CELSIUS=yes"
2011-12-04 19:46:28 -05:00
try:
req = web.get("http://thefuckingweather.com/?zipcode=%s%s" % (urlquote(zipcode), celsius_param))
except (HTTPError, IOError):
phenny.say("THE INTERNET IS FUCKING BROKEN. Please try again later.")
return
2011-12-04 19:46:28 -05:00
doc = lxml.html.fromstring(req)
2011-12-04 19:43:46 -05:00
try:
2011-12-04 19:46:28 -05:00
location = doc.find_class('small')[0].text_content()
weather = doc.get_element_by_id('content')
except (IndexError, KeyError):
phenny.say("UNKNOWN FUCKING LOCATION. Try another?")
return
2011-12-04 19:46:28 -05:00
main = weather.find_class('large')
2011-12-04 19:46:28 -05:00
# temperature is everything up to first <br />
tempt = ""
for c in main[0].text:
if c.isdigit() or c == '-':
tempt += c
temp = int(tempt)
deg = chr(176)
# add units and convert if necessary
if fahrenheit:
temp = "%d%cF?!" % (temp, deg)
elif celsius:
temp = "%d%cC?!" % (temp, deg)
else:
tempev = (temp + 273.15) * 8.617343e-5 * 1000
temp = "%f meV?!" % tempev
# parse comment (broken by <br />, so we have do it this way)
comments = main[0].xpath('text()')
if len(comments) > 2:
comment = "%s %s" % (comments[1], comments[2])
else :
comment = comments[1]
2011-12-04 19:46:28 -05:00
# remark is in its own div, so we have it easy
remark = weather.get_element_by_id('remark').text_content()
2011-12-04 19:46:28 -05:00
response = "%s %s - %s - %s" % (temp, comment, remark, location)
phenny.say(response)
tfw.rule = (['tfw'], r'(.*)')
2011-04-04 16:37:27 -04:00
def tfwf(phenny, input):
2011-12-04 19:46:28 -05:00
""".tfwf <city/zip> - The fucking weather, in fucking degrees Fahrenheit."""
return tfw(phenny, input, fahrenheit=True)
2011-04-04 16:37:27 -04:00
tfwf.rule = (['tfwf'], r'(.*)')
def tfwc(phenny, input):
2011-12-04 19:46:28 -05:00
""".tfwc <city/zip> - The fucking weather, in fucking degrees celsius."""
return tfw(phenny, input, celsius=True)
tfwc.rule = (['tfwc'], r'(.*)')
if __name__ == '__main__':
2011-12-04 19:46:28 -05:00
print(__doc__.strip())