Merge pull request #31 from hecris/master

add Youtube_Video_Downloader
This commit is contained in:
Ayush Bhardwaj 2018-10-05 00:07:22 +05:30 committed by GitHub
commit b32c756a5a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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)