Skip to content

Instantly share code, notes, and snippets.

@knxroot
Created July 2, 2016 05:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save knxroot/1e6d6de52117c112b638d0f4c4d73a67 to your computer and use it in GitHub Desktop.
Save knxroot/1e6d6de52117c112b638d0f4c4d73a67 to your computer and use it in GitHub Desktop.
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