Created
July 14, 2014 00:14
-
-
Save syndbg/f2eea1608d48b42f6324 to your computer and use it in GitHub Desktop.
A small Python script, that fetches a YouTube playlist's videos titles and writes them to a file playlist.txt in the same directory. Usage? A legal backup against video deletion. You could always find the song if you know the song title before it got removed
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import gdata.youtube | |
import gdata.youtube.service | |
# Dependencies: | |
# - Python==2.7 | |
# - gdata==2.0.18 | |
# - google-api-python-client==1.2 | |
yt_service = gdata.youtube.service.YouTubeService() | |
yt_service.ssl = True | |
# Can be left blank and be set on input | |
playlist_uri = "http://gdata.youtube.com/feeds/api/playlists/F835FEAB20A328D9" | |
if playlist_uri == "": | |
playlist_uri = str(input("Playlist URI: ")) | |
playlist_songs = [] | |
playlist_video_feed = yt_service.GetYouTubePlaylistVideoFeed(playlist_uri) | |
for playlist_video_entry in playlist_video_feed.entry: | |
playlist_songs.append(playlist_video_entry.title.text) | |
f = open("playlist.txt", "w") | |
for entry in playlist_songs: | |
f.write(entry + "\n"); | |
f.close() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment