Easily Scrape youtube search results with this python library
Dec 30, 2020
--
In this post we will see how to search a keyword on youtube and get search results using datakund library. Below are the steps with code:-
- Install datakund
pip install datakund
2. Import datakund
from datakund.datakund import *
3. Search the keyword on youtube
obj=datakund()
youtube=obj.youtube()youtube.search(keyword='cbse exams')
4. Get the search results
Thats it. You can see all apis available here. Enjoy scraping :)