Revision: 3762
Initial Code
Initial URL
Initial Description
Initial Title
Initial Tags
Initial Language
at September 12, 2007 10:30 by ches
Initial Code
import string from random import choice size = 9 ''.join([choice(string.letters + string.digits) for i in range(size)])
Initial URL
Initial Description
Obviously there's no real crytpo here -- use this for cases like regenerating and emailing a user password.
Initial Title
Quick, Simple Password Generator
Initial Tags
python
Initial Language
Python