Facebook
From Sweet Peccary, 2 Years ago, written in Python.
This paste is a reply to Pytube from Rodrigo - go back
Embed
Viewing differences between Pytube and Re: Pytube
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')