from pytube import YouTube, Playlist PLAYLIST_URL = input("Cole aqui a playlist que vocĂȘ deseja") playlist = Playlist(PLAYLIST_URL) for url in playlist: video = YouTube(url) stream = video.streams.get_highest_resolution() stream.download(output_path='playlist')