Skip to content

Instantly share code, notes, and snippets.

@RakeshChouhan
Created November 2, 2019 17:47
Show Gist options
  • Save RakeshChouhan/bd22bd8fedc77d69a80942d9c9527d06 to your computer and use it in GitHub Desktop.
Save RakeshChouhan/bd22bd8fedc77d69a80942d9c9527d06 to your computer and use it in GitHub Desktop.
You tube downloader
from pytube import YouTube
yt=YouTube("https://www.youtube.com/watch?v=oIciz6CSSVQ")
stream = yt.streams.first()
stream.download()
@RakeshChouhan
Copy link
Author

It will download the file in the current location.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment