https://github.com/everdrone/genpasswd2
iOS Style Strong Password Generator
https://github.com/everdrone/genpasswd2
cli cli-app ios password password-generator python3 safari secure security
Last synced: 5 months ago
JSON representation
iOS Style Strong Password Generator
- Host: GitHub
- URL: https://github.com/everdrone/genpasswd2
- Owner: everdrone
- License: mit
- Created: 2021-01-26T08:42:17.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-10-31T08:41:56.000Z (over 2 years ago)
- Last Synced: 2025-09-20T18:28:28.263Z (9 months ago)
- Topics: cli, cli-app, ios, password, password-generator, python3, safari, secure, security
- Language: Python
- Homepage:
- Size: 11.7 KB
- Stars: 9
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: license
Awesome Lists containing this project
README
# Password generator
## Installation
```sh
pip3 install genpasswd-everdrone
```
## Usage
```
Usage: genpasswd [options]
Options:
-h, --help show this help message and exit
-c SETS, --count=SETS
the count of the strings between separators
-l LENGTH, --str-length=LENGTH
the length of characters between separators
-d NUMS, --digits=NUMS
the amount of digits in the password
-u CAPS, --uppercase=CAPS
the amount of uppercase letters in the password
-s CHAR, --separator=CHAR
the separator character
-n ITER, --number=ITER
executes the command N times
-v, --version print the version number and quit
```
Generate 3 passwords
```
$ genpasswd -n 3
ctwewg-ebvlsl-a0Qqre
gkhspu-4Wmplw-izhcaq
fctbnf-qiggnR-bns5wl
```
Generate a password with 4 sets of 5 characters
```
$ genpasswd -c 4 -l 5
jwvq9-vqejL-yzlmv-egfmb
```
Generate a password with 3 digits and 3 uppercase letters
```
$ genpasswd -d 3 -u 3
ipjsGc-aE5mnm-wd5pM0
```
Generate a password using the underscore separator
```
$ genpasswd -s _
qdtclt_lao3Du_tuvsqu
```