is pytube available for python 3.7.4 code example
Example: pytube
from pytube import Playlist
pl = Playlist("https://www.youtube.com/watch?v=Edpy1szoG80&list=PL153hDY-y1E00uQtCVCVC8xJ25TYX8yPU")
for video in pl.videos:
video.streams.first().download()