ID、クラス、または名前タグのないスパンからテキストを取得する必要がありますが、そのようなカスタムタグからテキストを取得する必要があります
<span itemprop="name">the text i Need</span>
私は休閑地として試しました:
def handle_data(data):
soup = BeautifulSoup(data)
info = soup.find('span',itemprop="name").text
return(info)
しかし、私が得るのは、ウェブ上のPythonで美しい石鹸を使用するだけの空白の画面です。助けはありますか?ありがとう!