Created
November 2, 2019 17:47
-
-
Save RakeshChouhan/bd22bd8fedc77d69a80942d9c9527d06 to your computer and use it in GitHub Desktop.
You tube downloader
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from pytube import YouTube | |
yt=YouTube("https://www.youtube.com/watch?v=oIciz6CSSVQ") | |
stream = yt.streams.first() | |
stream.download() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It will download the file in the current location.