python script downloading videos from youtube code example

Example 1: download youtube video in python

import YouTube from pytube

yt = YouTube(url)
t = yt.streams.filter(only_audio=True)
t[0].download(/path)

Example 2: download youtube videos using api python

#download pytube with pip install pytube
import pytube

#made it a function so that you can call it from any script and just pass in
#the url in ""
def downloadVideo(url):
    youtube = pytube.YouTube(url)
    video = youtube.streams.get_highest_resolution()
    print(video.title)
    video.download()

Example 3: python library to download youtube videos

YouTube('video_url').streams.first().download('C:\\Users\\username\\save_path')