Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

mempass

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mempass

Simple memorizable password generator.

  • 0.1.2
  • PyPI
  • Socket score

Maintainers
1

|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

Keywords

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc