Default to /r/kittens when subreddit doesn't exist
This commit is contained in:
parent
5c9e43aedf
commit
902288bf18
|
@ -6,7 +6,12 @@ import time
|
||||||
|
|
||||||
def load_json(subreddit):
|
def load_json(subreddit):
|
||||||
req = urllib2.urlopen('http://www.reddit.com/r/' + subreddit + '.json?limit=1000')
|
req = urllib2.urlopen('http://www.reddit.com/r/' + subreddit + '.json?limit=1000')
|
||||||
json_string = json.load(req)
|
try:
|
||||||
|
json_string = json.load(req)
|
||||||
|
except ValueError:
|
||||||
|
req = urllib2.urlopen('http://www.reddit.com/r/kittens.json?limit=1000')
|
||||||
|
json_string = json.load(req)
|
||||||
|
|
||||||
return json_string[u'data'][u'children']
|
return json_string[u'data'][u'children']
|
||||||
|
|
||||||
def add_urls_to_list(subreddit):
|
def add_urls_to_list(subreddit):
|
||||||
|
|
Reference in New Issue