Skip to content

Instantly share code, notes, and snippets.

@1Firsts
Created October 8, 2021 05:58
Show Gist options
  • Save 1Firsts/905a9db64138e906221a8c6019c0c5fb to your computer and use it in GitHub Desktop.
Save 1Firsts/905a9db64138e906221a8c6019c0c5fb to your computer and use it in GitHub Desktop.
Download Video Youtube using Python
from pytube import youtube
link = input("Enter Url:")
video = youtube(link)
stream = video.stream.get_highest_resolution()
stream.download()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment