A time ago I was looking for a Python library to download a film for a joke in an offline presentation. This is the code which achieved the download part.
installation in python (anaconda) run in the terminal conda install pytube3
In the Python editor paste the code below and run it.
from pytube import YouTube
yt = YouTube(“linkToFilm”)
yt.streams.first().download()