python Youtube Channels Download –
How to Download an Entire Youtube Channel with ?
from pytube import Channel
from pytube import YouTube
channel = Channel(
"https://youtube.com/c/xxxxx")
for i, video in enumerate(channel):
try:
print(i, video)
yt = YouTube(video)
hd = yt.streams.get_highest_resolution()
hd.download("d:\\youtube\\")
except Exception as e:
pass