Coverage for /home/ken/.local/lib/python3.6/site-packages/avendesora/charsets.py : 88%

Hot-keys on this page
r m x p toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
"""Character Sets
Defines strings of characters and an exclude function that can be used either as the alphabets for you character-base passwords or as building blocks used to construct a new alphabet for you passwords.
Example: To create an alphabet with all characters except tabs use either: 'alphabet': exclude(PRINTABLE, '\t') or: 'alphabet': ALPHANUMERIC + PUNCTUATION + ' ' """
# Exclude function """Exclude Characters
Use this to strip characters from a character set. """ # this version is compatible with python3 except AttributeError: # this version is compatible with python2 return chars.translate(None, exclusions)
# Character sets # Use these to construct alphabets by summing together the ones you want. |