scrape YouTube video from a specific channel and search?
问题 I am using this code to get the url of a youtube channel it works fine, but I would like to add an option to search for a video with a specific title within the channel. and get the url of the first video you find with the search phrase from bs4 import BeautifulSoup import requests url="https://www.youtube.com/feeds/videos.xml?user=LinusTechTips" html = requests.get(url) soup = BeautifulSoup(html.text, "lxml") for entry in soup.find_all("entry"): for link in entry.find_all("link"): print(link