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')