Is it possible to generate an MD5 hash of another column? It looks like I could use something like:
Comments
4 comments
-
Hi- you mean with the python custom generator option? Sure, I think this will work.
-
It doesn't seem to work using the "Python script" generator, I just get errors about hashlib:An error occurred. ImportError: No module named hashlib - No installed python version was automatically detected; consider installing python 2.7 or adjusting the application options.
import md5 m = md5.new()
But I get the same type of error, just a different name:An error occurred. ImportError: No module named md5 - No installed python version was automatically detected; consider installing python 2.7 or adjusting the application options. -
I see. Sorry about this. This looks like a current limitation of our support-I'll try to find out more. please bear with me...
-
This works:
prepend file with:
import sys
sys.path.append(r'C:\Program Files (x86)\IronPython 2.7\Lib')
Add comment
Please sign in to leave a comment.