mirror of
https://github.com/hastagAB/Awesome-Python-Scripts.git
synced 2024-11-23 20:11:07 +00:00
e5864acaf9
* Added automation for converting json to yaml format * Create Readme.md * Deletd the extra files * Added requirements.txt * Added name and project in project list Co-authored-by: Ayush Bhardwaj <classicayush@gmail.com>
12 lines
157 B
Python
12 lines
157 B
Python
from pytube import YouTube
|
|
link = input('https://youtu.be/6M1rP2r672o')
|
|
yt = Youtube(link)
|
|
yt.streams.first().download()
|
|
print('downloaded', link)
|
|
|
|
|
|
|
|
|
|
|
|
|