Fix youtube.py Uploader name to use display name instead of username

This commit is contained in:
Steven Smith 2013-09-21 20:18:08 +08:00
parent d3e5099dab
commit f5e4b67777

View file

@ -41,8 +41,13 @@ def get_video_description(video_id):
if 'viewCount' in data:
out += ' - \x02%s\x02 views' % format(data['viewCount'], ",d")
try:
uploader = http.get_json(base_url + "users/{}?alt=json".format(data["uploader"]))["entry"]["title"]["$t"]
except:
uploader = data["uploader"]
upload_time = time.strptime(data['uploaded'], "%Y-%m-%dT%H:%M:%S.000Z")
out += ' - \x02%s\x02 on \x02%s\x02' % (data['uploader'],
out += ' - \x02%s\x02 on \x02%s\x02' % (uploader,
time.strftime("%Y.%m.%d", upload_time))
if 'contentRating' in data: