Skip to content
Advertisement

UnicodeEncodeError: ‘charmap’ codec can’t encode characters

I’m trying to scrape a website, but it gives me an error.

I’m using the following code:

JavaScript

And I’m getting the following error:

JavaScript

What can I do to fix this?

Advertisement

Answer

I fixed it by adding .encode("utf-8") to soup.

That means that print(soup) becomes print(soup.encode("utf-8")).

User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement