Metadata-Version: 2.1
Name: mempass
Version: 0.1.2
Summary: Simple memorizable password generator.
Home-page: http://github.com/erikvw/mempass
Author: Erik van Widenfelt
Author-email: ew2789@gmail.com
License: GPL license, see LICENSE
Keywords: memorizable password
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Requires-Python: >=3.6
Requires-Dist: zxcvbn

|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 oxytocia

or

.. 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


