私はyoutube-playlistの最初の動画のタイトルをウェブスクレイプする方法を知りましたか?私はこれまでtry'dたものタイトルをウェブスクレイプする方法は?
:
import urllib.request
from bs4 import BeautifulSoup
theurl = "https://www.youtube.com/watch?v=lp-EO5I60KA&list=PLMC9KNkIncKtPzgY-5rmhvj7fax8fdxoj"
thepage = urllib.request.urlopen(theurl)
soup = BeautifulSoup(thepage, "html.parser")
print(soup.findAll("h1",{"class":"title style-scope ytd-video-primary-info-renderer"}))
しかし、それだけでプリント= "[]" を出力として。私はここで何か間違っていますか?私は次のようでした
挨拶
1.代わりにYouTube APIを使用できます。 2.代わりに '
@Raptor申し訳ありませんが、私はpythonに新しい、ちょうど20分前には、完全に新しいプログラミングで新しいHTMLを見て始めました。どのようにコードが "
タイトルタグは、YouTubeのビデオのタイトルを含むHTML「
」にあります。 – Raptor