Scrape videos of youtube channel with unofficial youtube api

--

We will use datakund library to fetch channel’s videos data.. Here are the steps to follow:-

  1. Install datakund
pip install datakund

2. Import datakund

from datakund.datakund import *

3. Open automated browser and then open channel url.

obj=datakund()
youtube=obj.youtube()
youtube.open('channel url')

4. Code to fetch data of videos by scrolling down and break when there is no more scrolling.

--

--