youtube-channels

Pytube Channel video_urls is does not working

Pytube Channel video_urls is does not working Question: I want to scrape a youtube channel with pytube Channel but I get an index error because I got zero URLs. Anything else is working well just video_urls is not working. my code: c = Channel("https://www.youtube.com/c/BuildEmpire") print(f"This is a test number of video urls: {len(c.video_urls)}") for url …

Total answers: 2

How to search content across multiple channel in youtube api?

How to search content across multiple channel in youtube api? Question: I want to search youtube videos in a list of channels. In the code below, I am able to pass only one “Channelid” to the youtube api. Is there a way to pass multiple channel Ids ?? def youtube_search(options): youtube = build(YOUTUBE_API_SERVICE_NAME, YOUTUBE_API_VERSION, developerKey=DEVELOPER_KEY) …

Total answers: 3