Skip to content

Instantly share code, notes, and snippets.

@noelje
Created August 2, 2020 04:06
Show Gist options
  • Save noelje/b254b8b8eabb77c974858ee177eb4fbc to your computer and use it in GitHub Desktop.
Save noelje/b254b8b8eabb77c974858ee177eb4fbc to your computer and use it in GitHub Desktop.
from pytube import YouTube
link = input("Enter the youtube URL...\n")
# trial video
# link = "https://www.youtube.com/watch?v=tvJ1RGlxe8Q"
yt = YouTube(link)
ys = yt.streams.get_highest_resolution()
print("Downloading... " + yt.title)
path = ys.download('/media/noel/HDD')
print("Downloaded! to " + path)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment