This repository has been archived on 2023-04-13. You can view files and clone it, but cannot push or open issues or pull requests.
CloudBot/plugins/password.py
Luke Rogers f2ec2eb8d3 derp
2012-06-11 10:24:30 +12:00

54 lines
1.6 KiB
Python
Executable file

# Password generation code by <TheNoodle>
from util import hook
import string
import random
def gen_password(types):
#Password Generator - The Noodle http://bowlofnoodles.net
okay = []
#find the length needed for the password
numb = types.split(" ")
try:
length = int(numb[0])
except ValueError:
length = 10
needs_def = 0
#alpha characters
if "alpha" in types or "letter" in types:
okay = okay + string.ascii_lowercase
#adds capital characters if not told not to
if "no caps" not in types:
okay = okay + string.ascii_uppercase
else:
needs_def = 1
#adds numbers
if "numeric" in types or "numbers" in types:
okay = okay + [str(x) for x in range(0, 10)]
else:
needs_def = 1
#adds symbols
if "symbols" in types:
sym = ['!', '@', '#', '$', '%', '^', '&', '*', '(', ')', '-', '=', '_', '+', '[', ']', '{', '}', '\\', '|', ';', ':', "'", '.', '>', ',', '<', '/', '?', '`', '~', '"']
okay = okay + sym
else:
needs_def = 1
#defaults to lowercase alpha password if no arguments are found
if needs_def == 1:
okay = okay + 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)