Lo puedes hacer relativamente rápido.
Dependiendo de lo quieras hacer
Código Python:
Ver originalimport string
import random
table = string.lower + string.digits
# Con letras repetidas
print ''.join(table[random.randint(0, len(table)-1)] for i in range(32))
# Con letras unicas
print ''.join(random.sample(table, 32))
Te recomiendo leer sobre el modulo random.
https://docs.python.org/2/library/random.html