I wrote the code below, it works fine, but I want to print "download has started, and is continuing" when the download starts, and "download is finished" when the download is finished, but I couldn't.
from pytube import YouTube
yt=YouTube(input("giriş?\n"))
stream = yt.streams.get_by_itag(22)
stream.download()
By placing the print statements strategically, this should work
Answering from my phone, code not tested though