SyntaxFix
Write A Post
Hire A Developer
Questions
If you need to have the script keep working on python2 and 3 as I did, this might help someone
import sys if sys.version_info[0] >= 3: unicode = str
and can then just do for example
foo = unicode.lower(foo)