phenny/modules/mylife.py

29 lines
666 B
Python
Raw Normal View History

#!/usr/bin/python3
"""
mylife.py - various commentary on life
author: Ramblurr <unnamedrambler@gmail.com>
2011-09-02 17:11:12 -04:00
author: mutantmonkey <mutantmonkey@mutantmonkey.in>
"""
from tools import GrumbleError
import web
import lxml.html
def fml(phenny, input):
2013-10-05 19:20:37 -04:00
""".fml - Grab something from fmylife.com."""
2011-09-02 00:56:55 -04:00
try:
req = web.get("http://www.fmylife.com/random")
2013-06-09 01:27:24 -04:00
except:
raise GrumbleError("I tried to use .fml, but it was broken. FML")
doc = lxml.html.fromstring(req)
2017-05-28 00:43:30 -04:00
quote = doc.find_class('block')[0].text_content()
quote = quote.strip()
2011-09-02 00:56:55 -04:00
phenny.say(quote)
fml.commands = ['fml']
if __name__ == '__main__':
2011-09-22 14:17:27 -04:00
print(__doc__.strip())