Removed wordoftheday, updated password.py

This commit is contained in:
Luke Rogers 2012-09-04 22:38:54 +12:00
parent 49e53620a8
commit fa63329509
2 changed files with 14 additions and 19 deletions

View file

@ -1,15 +1,16 @@
# Password generation code by <TheNoodle>
# based on password generation code by TheNoodle
from util import hook
import string
import random
def gen_password(types):
# Password Generator - The Noodle http://bowlofnoodles.net
@hook.command
def password(inp, notice=None):
"password <length> [types] -- Generates a password of <length> (default 10). [types] can include 'alpha', 'no caps', 'numeric', 'symbols' or any combination of the inp, eg. 'numbers symbols'"
okay = []
# find the length needed for the password
numb = types.split(" ")
numb = inp.split(" ")
try:
length = int(numb[0])
@ -17,35 +18,29 @@ def gen_password(types):
length = 10
# add alpha characters
if "alpha" in types or "letter" in types:
okay = okay + string.ascii_lowercase
if "alpha" in inp or "letter" in inp:
okay = okay + list(string.ascii_lowercase)
#adds capital characters if not told not to
if "no caps" not in types:
okay = okay + string.ascii_uppercase
if "no caps" not in inp:
okay = okay + list(string.ascii_uppercase)
# add numbers
if "numeric" in types or "numbers" in types:
okay = okay + [str(x) for x in range(0, 10)]
if "numeric" in inp or "number" in inp:
okay = okay + [str(x) for x in xrange(0, 10)]
# add symbols
if "symbols" in types:
if "symbol" in inp:
sym = ['!', '@', '#', '$', '%', '^', '&', '*', '(', ')', '-', '=', '_', '+', '[', ']', '{', '}', '\\', '|', ';', ':', "'", '.', '>', ',', '<', '/', '?', '`', '~', '"']
okay += okay + sym
# defaults to lowercase alpha password if the okay list is empty
if not okay:
okay = okay + string.ascii_lowercase
okay = okay + list(string.ascii_lowercase)
password = ""
# generates password
for x in range(length):
password = password + random.choice(okay)
return password
@hook.command
def password(inp, notice=None):
"password <length> [types] -- Generates a password of <length> (default 10). [types] can include 'alpha', 'no caps', 'numeric', 'symbols' or any combination of the types, eg. 'numbers symbols'"
password = gen_password(inp)
notice(password)