beautifulsoup 'charmap' codec can't decode byte code example
Example: beautifulsoup 'charmap' codec can't decode byte
# add 'rb'
with open('D:/page.html', 'rb') as html:
soup = BeautifulSoup(html)
# add 'rb'
with open('D:/page.html', 'rb') as html:
soup = BeautifulSoup(html)