Python mengonversi html menjadi teks

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