Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/erikvw/mempass
Simple memorizable password generator
https://github.com/erikvw/mempass
password-generator
Last synced: 26 days ago
JSON representation
Simple memorizable password generator
- Host: GitHub
- URL: https://github.com/erikvw/mempass
- Owner: erikvw
- License: gpl-3.0
- Created: 2019-03-19T16:59:15.000Z (almost 6 years ago)
- Default Branch: develop
- Last Pushed: 2019-03-19T21:49:32.000Z (almost 6 years ago)
- Last Synced: 2024-11-27T20:24:43.626Z (about 1 month ago)
- Topics: password-generator
- Language: Python
- Homepage:
- Size: 28.3 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
README
|pypi| |travis| |codecov| |downloads|
Mempass
-------Simple memorizable password generator
See http://xkcd.com/936/
Adapted from https://github.com/jesterpm/bin/blob/master/mkpasswd
.. code-block:: bash
pip install mempass
on the command line
.. code-block:: bash
$ mempass 4
password: celeriac waggable endoss oxytocia
score: Strong! (4)in python
.. code-block:: python
>>> from mempass import mkpassword
>>> password = mkpassword(4)
>>> print(password)
celeriac waggable endoss oxytociaor
.. code-block:: python
>>> from mempass import PasswordGenerator
>>> pwgen = PasswordGenerator(nwords=4)
>>> print(pwgen.password)
celeriac waggable endoss oxytocia>>> print(pwgen.score)
4>>> print(pwgen.warning)
"">>> print(pwgen.suggestions)
"".. |pypi| image:: https://img.shields.io/pypi/v/mempass.svg
:target: https://pypi.python.org/pypi/mempass
.. |travis| image:: https://travis-ci.com/erikvw/mempass.svg?branch=develop
:target: https://travis-ci.com/erikvw/mempass
.. |codecov| image:: https://codecov.io/gh/erikvw/mempass/branch/develop/graph/badge.svg
:target: https://codecov.io/gh/erikvw/mempass.. |downloads| image:: https://pepy.tech/badge/mempass
:target: https://pepy.tech/project/mempass