Skip to content

Commit

Permalink
bulletpoints in readme fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
mishelly-h committed Jan 10, 2024
1 parent 385a715 commit 2dff9ac
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
This package provides password management tools in Python. The package consists of four functions. The first function is responsible for generating passwords, while the second evaluates their strength, categorizing them as weak, medium, or strong. The third function handles password encryption, ensuring data security, and the fourth function allows for decryption when necessary.

## List of functions
password_creator
password_strength
password_encryption
password_decryption
- password_creator
- password_strength
- password_encryption
- password_decryption

## How does the package fit in the Python ecosystem?
There are multiple packages that generate passwords, which is the same as our password_creator. These packages can be found [here](https://pypi.org/search/?q=password+generator&o=). There are also other packages that check for the strength of passwords, an example can be seen [here](https://pypi.org/project/password-strength/), this is the same as our password_strength function. There is also a [password encryption package](https://pypi.org/project/password/) which does the same thing as our password_encryption functions. However, there were no password decryption specific function on PyPI. The benefit of our package is that it provides a range of password related functions.

0 comments on commit 2dff9ac

Please sign in to comment.