mirror of
https://github.com/hastagAB/Awesome-Python-Scripts.git
synced 2025-02-20 07:12:02 +00:00
commit
b32c756a5a
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…
Reference in New Issue
Block a user