Python Webscrapping Pobierz wszystkie filmy na liście odtwarzania
playlist=[]
url=input("Enter the Youtube Playlist URL : ") #Takes the Playlist Link
data= requests.get(url)
soup=bs4.BeautifulSoup(data.text,'html.parser')
Evil Earthworm