Awesome-Python-Scripts/Youtube_Video_Downloader/download_video.py
2018-10-04 09:18:29 -04:00

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)