Comment analyser les données HTML à l'aide de BeautifulSoup
from bs4 import BeautifulSoup
with open("doc.html") as fp:
soup = BeautifulSoup(fp, "html.parser")
Horrible Hoopoe