Python convertit html en texte

from bs4 import BeautifulSoup
soup = BeautifulSoup(html)
print(soup.get_text())
Cooperative Caribou