Metadata-Version: 2.4
Name: nlpg
Version: 0.1.1
Summary: Ready to use Natural Language Password Generator.
License-Expression: GPL-3.0
License-File: LICENSE
Requires-Python: >=3.7
Description-Content-Type: text/markdown

 Natural Language Password Generator
===============================================================================

Ready to use Natural Language Password Generator.
Based on the idea that a adj. noun pair is easier to remember then a random
generated password, but still harder to brute-force.

Database source:
https://github.com/NaturalLanguagePasswords/system


Python versions supported: 3.7+

CLI Use case:
-------------------------------------------------------------------------------
`nlpg`

For getting help menu:
`nlpg --help`

For use in a script:
`nlpg -s`


Package:
-------------------------------------------------------------------------------
Can also be used as a library.
```python
import nlpg

password = nlpg.get_password(pair_len=6)
```
run:
```python
help(nlpg.get_password)
```
for more information on the function.

TODO:
===============================================================================
 * [ ] Add better support for script mode and multiple passwords.
