Closed JaxonBest closed 3 years ago
I have a Playlist() But I want to get the URL out of each video... Is there a way to do so?
Playlist(ID).videos
will give you list of video objects ... so iterate though the list items and take item.url
which will give you url for each video
or, video objects has .url
attribute to get the url of the video
Thanks.
I have a Playlist() But I want to get the URL out of each video... Is there a way to do so?