Skip to content

Instantly share code, notes, and snippets.

@djerfy
Created May 15, 2022 17:15
Show Gist options
  • Save djerfy/cb43bd4da8c0a6182dcd616d53c01a1a to your computer and use it in GitHub Desktop.
Save djerfy/cb43bd4da8c0a6182dcd616d53c01a1a to your computer and use it in GitHub Desktop.
How to download Youtube videos through Python
from pytube import YouTube
video = YouTube("https://www.youtube.com/ID")
video.streams.filter(res="1024p").first().download("~/Downloads/")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment