download playlist from youtube python

35

python webscrapping downloading all the videos in a playlist -

playlist=[]
url=input("Enter the Youtube Playlist URL : ") #Takes the Playlist Link
data= requests.get(url)
soup=bs4.BeautifulSoup(data.text,'html.parser')

Comments

Submit
0 Comments