diff --git a/plugins/aww.py b/plugins/aww.py new file mode 100644 index 0000000..4655b10 --- /dev/null +++ b/plugins/aww.py @@ -0,0 +1,19 @@ +# Gets an imgur link from /r/aww +from util import hook, http +import random + + +@hook.command +def aww(inp): + try: + data = http.get_json("http://reddit.com/r/aww/.json", + user_agent=http.ua_chrome) + except Exception as e: + return "Error: " + str(e) + data = data["data"]["children"] + item = None + while not item: + tempitem = random.choice(data) + if tempitem["data"]["domain"] == "i.imgur.com": + item = tempitem["data"] + return "%s %s" % (item["title"], item["url"])