Skip to content

Instantly share code, notes, and snippets.

@osorionicolas
Created July 4, 2022 18:07
Show Gist options
  • Select an option

  • Save osorionicolas/b5cc8b16bce1c978c0b6fc4aa524af97 to your computer and use it in GitHub Desktop.

Select an option

Save osorionicolas/b5cc8b16bce1c978c0b6fc4aa524af97 to your computer and use it in GitHub Desktop.
Youtube videos downloader
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