A Python module for generating passwords using the DuckyPass API.
pip install git+https://github.com/maxrhys/PythonDuckyPassAPI.git
from duckypassapi.duckypass import DuckyPass
# Generate a single secure password
password = DuckyPass("secure", 1)
print(password)
# Generate 5 simple passwords
passwords = DuckyPass("simple", 5)
print(passwords)
GPLv3