|
2007 / python-youtube: A simple YouTube API Client for Python A simple YouTube API Client for Python
This is
Update 2009-09-10:
I received reports via e-mail that this code stopped working
recently. As I don't personally use this code anymore in projects
and therefore the code is basically orphaned, I suggest you either
send patches or use the "official" Python API for YouTube, which
is called "gdata-python-client":
gdata-python-client on Google Code
Thanks for your understanding and good luck with your projects :) DocumentationDownload
ChangeLog
Example usage
c = youtube.YouTubeClient( 'your-dev-id')
for video in c.list_by_user( 'your-username'):
v = c.get_details( video['id'])
print video['id']
print v['thumbnail_url']
print v['title']
print v['description']
Mon Jul 9 15:24:25 2007 +0000 |