Skip to content

Instantly share code, notes, and snippets.

@chrisgilmerproj
Created December 21, 2011 00:14
Show Gist options
  • Save chrisgilmerproj/1503913 to your computer and use it in GitHub Desktop.
Save chrisgilmerproj/1503913 to your computer and use it in GitHub Desktop.
Password Generator
p = ''.join(random.sample('ABCDEFGHJKLMNPQRSTUVWXYZ23456789', 6))
@chrisgilmerproj
Copy link
Author

Its not supposed to be;) Just a little script to give simple passwords. Going to use this for my wedding website. I'm hand writing the passwords on post cards and sending them out to recipients. All I'm really trying to prevent is people seeing contact info from others and bots submitting random form information to my website.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment