Awesome-Python-Scripts/Youtube_Video_Downloader/download_video.py
stark117 e5864acaf9
Added automation for converting JSON to YAML format. (#197)
* 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>
2020-10-30 13:03:16 +05:30

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)