Skip to content

Instantly share code, notes, and snippets.

@Alexwi1son
Forked from arifsetyawan/dwutube.py
Created March 13, 2025 06:52
Show Gist options
  • Save Alexwi1son/24ef3e26f8de0583a69291f53bf1c087 to your computer and use it in GitHub Desktop.
Save Alexwi1son/24ef3e26f8de0583a69291f53bf1c087 to your computer and use it in GitHub Desktop.
Download Youtube Videos
from pytube import YouTube
url = "https://www.youtube.com/watch?v=hS9jaTweuPU"
video = YouTube(url)
stream = video.streams.get_highest_resolution()
stream.download(output_path = '.')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment