mirror of
https://github.com/hastagAB/Awesome-Python-Scripts.git
synced 2025-03-21 04:59:47 +00:00
add Youtube_Video_Downloader
This commit is contained in:
parent
f2a4a5be6b
commit
e9efb2d46c
Youtube_Video_Downloader
3
Youtube_Video_Downloader/README.md
Normal file
3
Youtube_Video_Downloader/README.md
Normal file
@ -0,0 +1,3 @@
|
||||
# Youtube Video Downloader Script
|
||||
|
||||
Requires pytube
|
11
Youtube_Video_Downloader/download_video.py
Normal file
11
Youtube_Video_Downloader/download_video.py
Normal 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)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user