Last active
January 13, 2016 08:56
-
-
Save svschannak/7e8408aaaaae3a680d13 to your computer and use it in GitHub Desktop.
Python BeautifulSoup Unicode Problems UTF-8
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# don't use this | |
bs4(response.content) | |
# use this | |
bs4(response.content, fromEncoding='utf8') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment