This repository has been archived on 2023-04-13. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
CloudBot/plugins/aww.py

19 lines
546 B
Python

# 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"])