Awesome-Python-Scripts/Youtube_Video_Downloader/download_video.py
2021-10-16 01:06:35 +05:30

12 lines
152 B
Python

from pytube import YouTube
link = input('link to youtube video: ')
yt = Youtube(link)
yt.streams.first().download()
print('downloaded', link)