Skip to main content

A library for encoding binary data as a sequence of english words

Project description

Build Status Coverage

A python library for encoding binary data as a sequence of english words.

Based on, and compatible with http://web.archive.org/web/20101031205747/http://www.tothink.com/mnemonic/

Installation

Recommended method is to use the version from pypi

pip install mnemonicode

Usage

Python mnemonicode exposes four functions: py:function:mnformat and py:function:mnparse for handling conversions to and from formatted strings, and py:function:mnencode and py:function:mndecode for working with lower level lists of tuples of words.

String encoding

Encode a byte array as a sequence of grouped words, formatted as a single string:

>>> mnformat(b"cucumber")
'paris-pearl-ultra--gentle-press-total;

Decode a mnemonicode string into a byte array:

>>> mnparse('scoop-limit-recycle--ferrari-album')
b'tomato'

Both functions allow specifying the word and group separator. It is safe for the word separator to match part of the group separator, but not the other way round. Word and group separators that overlap with word in the dictionary should obviously be avoided.

An example using custom separators:

>>> mnemonicode.mnformat(
...     b'apricot', group_separator=', uhhh, ', word_separator=', um, '
... )
'arctic, um, dilemma, um, single, uhhh, presto, um, mask, um, jet'

Tuple encoding

Encode a bytes object as an iterator of tuples of words:

>>> list(mnencode(b"avocado"))
[('bicycle', 'visible', 'robert'), ('cloud', 'unicorn', 'jet')]

Decode an iterator of tuples of words to get a byte array:

>>> mndecode([('turtle', 'special', 'recycle'), ('ferrari', 'album')])
b'potato'

License

The project is licensed under the BSD license. See LICENSE for details.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mnemonicode-1.4.0.tar.gz (14.3 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page