Wednesday, July 3, 2024
HomeLanguagesPythonPafy – Getting Watch URL for Each Item of Playlist

Pafy – Getting Watch URL for Each Item of Playlist

In this article we will see how we can get the watch URLfrom playlist items in pafy. Pafy is a python library to download YouTube content and retrieve metadata. Pafy object is the object which contains all the information about the given video. A playlist in YouTube is a list, or group, of videos that plays in order, one video after the other. Watch URL is basically youtube actual URL for each item i.e each playlist video.

We can get the playlist from youtube in pafy with the help of get_playlist method, below is the command given to do this

 pafy.get_playlist(url)

The playlist url should exist on youtube as it get the information of those videos which are present on the youtube. YouTube is an American online video-sharing platform.

Steps to get the playlist ID
1. Import the pafy module
2. Get the playlist with the help of URL of playlist
3. Return play list work as dictionary so use ‘items’ as key with the return playlist
4. Store the result in variable and from the items select the single item
5. With the single item use ‘pafy’ key with it
6. Use watchv_url attribute with this pafy object to get the url

In order to do this we use watchv_url attribute with the playlist item’s pafy object

Syntax : playlist_pafy.watchv_url

Argument : It takes no argument

Return : It returns string

Below is the implementation




# importing pafy
import pafy 
    
# url of playlist
url = "https://www.youtube.com / playlist?list = PLqM7alHXFySGqCvcwfqqMrteqWukz9ZoE"
  
# getting playlist
playlist = pafy.get_playlist(url)
  
# getting playlist items
items = playlist["items"]
  
# selecting single item
item = items[1]
  
# getting pafy object
i_pafy = item['pafy']
      
# getting watch url
y_url = i_pafy.watchv_url
  
# printing url
print(y_url)


Output :

http://www.youtube.com/watch?v=AfxHGNRtFac

Another example




# importing pafy
import pafy 
    
# url of playlist
url = "https://www.youtube.com / playlist?list = PLqM7alHXFySE71A2bQdYp37vYr0aReknt"
    
# getting playlist
playlist = pafy.get_playlist(url)
  
# getting playlist items
items = playlist["items"]
  
# selecting single item
item = items[1]
  
# getting pafy object
i_pafy = item['pafy']
      
      
# getting watch url
y_url = i_pafy.watchv_url
  
# printing url
print(y_url)


Output :

http://www.youtube.com/watch?v=WdgAKCnWnwA

Calisto Chipfumbu
Calisto Chipfumbuhttp://cchipfumbu@gmail.com
I have 5 years' worth of experience in the IT industry, primarily focused on Linux and Database administration. In those years, apart from learning significant technical knowledge, I also became comfortable working in a professional team and adapting to my environment, as I switched through 3 roles in that time.
RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments