🔓 Generate a password with multiple options
Passeo is a python password generator developed by Arjun Sharda, under the MIT License.
Passeo is used for checking your password through our strength check (includes Pwned, Length, and Case) and generate a password with multiple options.
Passeo is a upcoming password generator project, with massive plans in the future, such as generation of a password and strength checker via CLI/terminal. Passeo is also completely safe to use and is open source for the community to know how the codebase works and learn from how the password generator.
Python 3.7+ is required
# MacOS / Linux (via Terminal)
python3 -m pip install -U passeo
# Windows (via CMD Prompt)
py -3 -m pip install -U passeo
>>> from passeo import passeo
>>> print(passeo.generate(length=10, numbers=True, symbols=True, uppercase=True, lowercase=False, space=True, save=True))
Building the docker image
$ docker build -t passeo .
Running passeo on the docker container
$ docker run --rm -it passeo sh
/usr/src/passeo/examples # python generate.py
- [BREAKING] Changed Passeo to a Enum, meaning that it will now be for generation for example
passeo.generate
, notpasseo().generate
. - [ADDED] Added encrypting and decrypting. It has been supported by CLI.
- [FIXED] Fixed CLI and normal issues with encrypting and decrypting (wrong function from Fernet was used)