-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
29 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,29 @@ | ||
# pwd-generator | ||
# pwd-generator | ||
|
||
<br/> | ||
|
||
You can **use different types of generators** and **define the length** of your password for each of them: | ||
- Uppercase-only | ||
- Lowercase-only | ||
- Letter-only | ||
- Digit-only | ||
- Special character only | ||
- Custom : select options you want or not for you password | ||
|
||
<br/> | ||
|
||
## Installation | ||
```commandline | ||
pip install git+ssh://git@github.com/Zepolimer/pwd-generator.git@main#pwd-generator | ||
``` | ||
|
||
```commandline | ||
rm build/ pwd_generator.egg-info dist -Rf | ||
python3 setup.py bdist_wheel | ||
pip3 install -I dist/pwd_generator-*-py3-none-any.whl | ||
``` | ||
|
||
## Unittests | ||
```commandline | ||
python3 -m unittest | ||
``` |