Created
July 2, 2016 05:58
-
-
Save knxroot/1e6d6de52117c112b638d0f4c4d73a67 to your computer and use it in GitHub Desktop.
This file contains 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
def force_unicode(string, codecs=['utf8', 'cp1252']): | |
""" Force use unicode when you don't know correct codec of the string """ | |
for i in codecs: | |
try: | |
return unicode(string, i) | |
except: | |
pass |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment