2012-02-16 17:39:44 -05:00
|
|
|
#!/usr/bin/python3
|
2011-09-01 09:40:25 -04:00
|
|
|
"""
|
|
|
|
mylife.py - various commentary on life
|
|
|
|
author: Ramblurr <unnamedrambler@gmail.com>
|
2011-09-02 17:11:12 -04:00
|
|
|
author: mutantmonkey <mutantmonkey@mutantmonkey.in>
|
2011-09-01 09:40:25 -04:00
|
|
|
"""
|
|
|
|
|
2012-06-02 01:17:09 -04:00
|
|
|
from tools import GrumbleError
|
2011-09-21 20:43:05 -04:00
|
|
|
import web
|
2011-09-01 09:40:25 -04:00
|
|
|
import lxml.html
|
|
|
|
|
2012-06-02 01:17:09 -04:00
|
|
|
|
2011-09-01 09:40:25 -04:00
|
|
|
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:
|
2011-09-21 20:43:05 -04:00
|
|
|
req = web.get("http://www.fmylife.com/random")
|
2013-06-09 01:27:24 -04:00
|
|
|
except:
|
2012-06-02 01:17:09 -04:00
|
|
|
raise GrumbleError("I tried to use .fml, but it was broken. FML")
|
2011-09-01 09:40:25 -04:00
|
|
|
|
2011-09-21 20:43:05 -04:00
|
|
|
doc = lxml.html.fromstring(req)
|
|
|
|
quote = doc.find_class('article')[0][0].text_content()
|
2011-09-02 00:56:55 -04:00
|
|
|
phenny.say(quote)
|
2011-09-01 09:40:25 -04:00
|
|
|
fml.commands = ['fml']
|
|
|
|
|
2012-06-02 01:17:09 -04:00
|
|
|
|
2011-09-01 09:40:25 -04:00
|
|
|
def mlia(phenny, input):
|
2011-09-02 00:56:55 -04:00
|
|
|
""".mlia - My life is average."""
|
|
|
|
try:
|
2011-09-21 20:43:05 -04:00
|
|
|
req = web.get("http://mylifeisaverage.com/")
|
2013-06-09 01:27:24 -04:00
|
|
|
except:
|
2012-06-02 01:17:09 -04:00
|
|
|
raise GrumbleError("I tried to use .mlia, but it wasn't loading. MLIA")
|
2011-09-01 09:40:25 -04:00
|
|
|
|
2011-09-21 20:43:05 -04:00
|
|
|
doc = lxml.html.fromstring(req)
|
|
|
|
quote = doc.find_class('story')[0][0].text_content()
|
2011-09-02 00:56:55 -04:00
|
|
|
quote = quote.strip()
|
|
|
|
phenny.say(quote)
|
2011-09-01 09:40:25 -04:00
|
|
|
mlia.commands = ['mlia']
|
|
|
|
|
2012-06-02 01:17:09 -04:00
|
|
|
|
2011-09-02 01:16:19 -04:00
|
|
|
def mlib(phenny, input):
|
|
|
|
""".mlib - My life is bro."""
|
2011-09-02 00:56:55 -04:00
|
|
|
try:
|
2011-09-21 20:43:05 -04:00
|
|
|
req = web.get("http://mylifeisbro.com/random")
|
2013-06-09 01:27:24 -04:00
|
|
|
except:
|
2012-06-02 01:17:09 -04:00
|
|
|
raise GrumbleError("MLIB is out getting a case of Natty. It's chill.")
|
2011-09-01 09:40:25 -04:00
|
|
|
|
2011-09-21 20:43:05 -04:00
|
|
|
doc = lxml.html.fromstring(req)
|
|
|
|
quote = doc.find_class('storycontent')[0][0].text_content()
|
2011-09-02 00:56:55 -04:00
|
|
|
phenny.say(quote)
|
2011-09-02 01:16:19 -04:00
|
|
|
mlib.commands = ['mlib']
|
2011-09-01 09:40:25 -04:00
|
|
|
|
2012-06-02 01:17:09 -04:00
|
|
|
|
2011-09-02 01:16:19 -04:00
|
|
|
def mlig(phenny, input):
|
|
|
|
""".mlig - My life is ginger."""
|
|
|
|
try:
|
2011-09-21 20:43:05 -04:00
|
|
|
req = web.get("http://www.mylifeisginger.org/random")
|
2013-06-09 01:27:24 -04:00
|
|
|
except:
|
2012-06-02 01:17:09 -04:00
|
|
|
raise GrumbleError("Busy eating your soul. Be back soon.")
|
2011-09-02 01:16:19 -04:00
|
|
|
|
2011-09-21 20:43:05 -04:00
|
|
|
doc = lxml.html.fromstring(req)
|
|
|
|
quote = doc.find_class('oldlink')[0].text_content()
|
2011-09-02 01:16:19 -04:00
|
|
|
phenny.say(quote)
|
|
|
|
mlig.commands = ['mlig']
|
|
|
|
|
2012-06-02 01:17:09 -04:00
|
|
|
|
2011-09-02 01:16:19 -04:00
|
|
|
def mlih(phenny, input):
|
|
|
|
""".mlih - My life is ho."""
|
|
|
|
try:
|
2011-09-21 20:43:05 -04:00
|
|
|
req = web.get("http://mylifeisho.com/random")
|
2013-06-09 01:27:24 -04:00
|
|
|
except:
|
2012-06-02 01:17:09 -04:00
|
|
|
raise GrumbleError("MLIH is giving some dome to some lax bros.")
|
2011-09-01 09:40:25 -04:00
|
|
|
|
2011-09-21 20:43:05 -04:00
|
|
|
doc = lxml.html.fromstring(req)
|
|
|
|
quote = doc.find_class('storycontent')[0][0].text_content()
|
2011-09-02 00:56:55 -04:00
|
|
|
phenny.say(quote)
|
2011-09-02 01:16:19 -04:00
|
|
|
mlih.commands = ['mlih']
|
2011-09-01 09:40:25 -04:00
|
|
|
|
2012-06-02 01:17:09 -04:00
|
|
|
|
2011-09-17 21:35:08 -04:00
|
|
|
def mlihp(phenny, input):
|
|
|
|
""".mlihp - My life is Harry Potter."""
|
|
|
|
try:
|
2011-09-21 20:43:05 -04:00
|
|
|
req = web.get("http://www.mylifeishp.com/random")
|
2013-06-09 01:27:24 -04:00
|
|
|
except:
|
2012-06-02 01:17:09 -04:00
|
|
|
raise GrumbleError("This service is not available to Muggles.")
|
2011-09-17 21:35:08 -04:00
|
|
|
|
2011-09-21 20:43:05 -04:00
|
|
|
doc = lxml.html.fromstring(req)
|
|
|
|
quote = doc.find_class('oldlink')[0].text_content()
|
2011-09-17 21:35:08 -04:00
|
|
|
phenny.say(quote)
|
|
|
|
mlihp.commands = ['mlihp']
|
|
|
|
|
2012-06-02 01:17:09 -04:00
|
|
|
|
2011-09-01 09:40:25 -04:00
|
|
|
if __name__ == '__main__':
|
2011-09-22 14:17:27 -04:00
|
|
|
print(__doc__.strip())
|