Metadata-Version: 2.1
Name: pw-generator
Version: 0.1.0
Summary: Simple password generator
Home-page: https://github.com/pietro-a/pw-generator
Author: Petr Antonov
Author-email: petr@antonov.space
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.5
Description-Content-Type: text/markdown

# pw-generator
Generate relatively secure passwords within python scripts.

The idea of the password generator, that produses relatively secure 
passwords, consisting from some english words and delimiters, and 
the wordlist itself were taken from passwdqc library.

## Code example

```
from pwgen import passphrase_gen, password_gen
from pwgen.exception import WeakPasswordException

password = passphrase_gen(5)
print(password)

password = password_gen(10)
print(password)

password = passphrase_gen(2)
""" Should get a WeakPasswordException """
```

## License

This project is licensed under the MIT License - see the
[LICENSE](https://github.com/pietro-a/pw-generator/blob/master/LICENSE)
file for details.

## Acknowledgments

Homepage of passwdqc library: http://openwall.com/passwdqc/


