re-added rating

This commit is contained in:
lukeroge 2012-03-04 05:16:20 +13:00 committed by neersighted
parent 5234eac522
commit 9ebc5fa95e

View file

@ -37,6 +37,10 @@ def get_video_description(vid_id):
out += '%dm ' % (length / 60 % 60)
out += "%ds\x02" % (length % 60)
if 'rating' in j:
out += ' - rated \x02%.2f/5.0\x02 (%d)' % (j['rating'],
j['ratingCount'])
if 'viewCount' in j:
out += ' - \x02%s\x02 views' % locale.format('%d',
j['viewCount'], 1)
@ -82,4 +86,4 @@ def youtube(inp):
vid_id = j['data']['items'][0]['id']
return get_video_description(vid_id) + " - " + video_url % vid_id
return get_video_description(vid_id) + " - " + video_url % vid_id