mirror of
https://github.com/hastagAB/Awesome-Python-Scripts.git
synced 2024-11-24 04:21:08 +00:00
12 lines
152 B
Python
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)
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|