up vote 3 down vote favorite
1
share [g+] share [fb]

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! :)

link|improve this question

69% accept rate
feedback

2 Answers

up vote 2 down vote accepted

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:

>>> client = gdata.youtube.service.YouTubeService()
>>> video = client.GetYouTubeVideoEntry(video_id='CoYBkXD0QeU')
>>> video.author[0].name.text
'GoogleDevelopers'
link|improve this answer
Thanks for the solution and explanation Steph, it's all working now :) – alimango Jun 4 '09 at 1:23
feedback

Have you tried something like this?

foo = GetYouTubeVideoEntry(video_id=youtube_video_id_to_output)
foo.author

The docs for YouTubeVideoEntry aren't great, but the __init__ method seems to accept an author.

link|improve this answer
foo.author returns an atom object. I did dir() on it and there's no member that holds the author/username. It's wierd.. – alimango Jun 3 '09 at 0:21
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.