A simple password generator
see it on PyPI: https://pypi.org/project/pyPWD/
Passwords are generated in this format: (LETTERS) (SYMBOL) (NUMBERS)
import pyPWD
PyPWD.generate(letter_length, special_character, number_length)
simple code to generate 12 letters, a symbol, and 12 numbers
import pyPWD
password = pyPWD.generate(12, '@', 12)
print(password)
you can also do
from pyPWD import generate
to make it easier.
Remember that instead of
pyPWD.generate()
, you should dogenerate()
This code will generate something like this:
OhvkpUYMUMaR@553339954271
in the format of LETTERS, then a SYMBOL, followed by a string of NUMBERS
import pyPWD
pyPWD.help()
Prints a short help message
made by HYKANTUS.
🌐 Website
📺 YouTube
💻 GitHub