Skip to content

Instantly share code, notes, and snippets.

@vmlinz
Created July 21, 2015 07:52
Show Gist options
  • Save vmlinz/fe955723a65cc6b486e3 to your computer and use it in GitHub Desktop.
Save vmlinz/fe955723a65cc6b486e3 to your computer and use it in GitHub Desktop.
Generate random passwords
dict(map(lambda x: (x, ''.join(random.choice(string.ascii_lowercase + string.digits) for _ in range(16))), range(30000,30200)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment