Created
July 4, 2022 18:07
-
-
Save osorionicolas/b5cc8b16bce1c978c0b6fc4aa524af97 to your computer and use it in GitHub Desktop.
Youtube videos downloader
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
| import pytube | |
| url = input("Enter video url: ") | |
| path="/etc/" | |
| pytube.YouTube(url).streams.get_highest_resolution().download(path) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment