Hi, how do I get the author/username from an object using:
GetYouTubeVideoEntry(video_id=youtube_video_id_to_output)
I'm using Google's gdata.youtube.service Python library
Thanks in advance! :)
|
|
Hi, how do I get the author/username from an object using:
I'm using Google's gdata.youtube.service Python library Thanks in advance! :)
|
||
|
|
|
|
So because YouTube's API is based on GData, which is based on Atom, the 'author' object is an array with name objects, which can contain names, URLs, etc. This is what you want:
|
||
|
|
|
Have you tried something like this?
The docs for YouTubeVideoEntry aren't great, but the |
||
|