python-youtube is a simple YouTube API Client for Python.
You can use it to access YouTube metadata in your applications and webapps. This implementation allows you to access the REST interface of the YouTube API.
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']
What's New in This Release:
· This release makes the code pylint-clean and (mostly) PEP-8 conformant.
· A small bug in the YouTube friends API call was fixed.
· Documentation is now also available in epydoc's HTML format.
Product's homepage