-
-
Save Alexwi1son/24ef3e26f8de0583a69291f53bf1c087 to your computer and use it in GitHub Desktop.
Download Youtube Videos
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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