final tweaks

This commit is contained in:
Luke Rogers 2013-10-01 02:37:00 +13:00
parent 4f2c690b2d
commit 3a142e4810
1 changed files with 2 additions and 11 deletions

View File

@ -28,7 +28,7 @@ def imgur(inp):
data = data["data"]["children"]
random.shuffle(data)
# filter list to only have 10 imgur links
# filter list to only have imgur links
filtered_posts = [i["data"] for i in data if is_valid(i["data"])]
if not filtered_posts:
@ -48,7 +48,7 @@ def imgur(inp):
url = album_api.format(match.group(2))
images = http.get_json(url, headers=headers)["data"]
# loop over the images in the gallery and add to the list
# loop over the images in the album and add to the list
for image in images:
items.append(image["id"])
@ -56,13 +56,4 @@ def imgur(inp):
# post is an image
items.append(match.group(2))
#post_data = {
# "ids": items,
# "title": "images from /r/{}/".format(inp)
#}
#album = http.get("https://api.imgur.com/3/album/", post_data=post_data, get_method="post", headers=headers)
#pprint(album)
return web.isgd("http://imgur.com/" + ','.join(items))