add Youtube_Video_Downloader

This commit is contained in:
hecris 2018-10-04 09:18:29 -04:00
parent f2a4a5be6b
commit e9efb2d46c
2 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,3 @@
# Youtube Video Downloader Script
Requires pytube

View File

@ -0,0 +1,11 @@
from pytube import YouTube
link = input('link to youtube video: ')
yt = Youtube(link)
yt.streams.first().download()
print('downloaded', link)