Skip to main content

A small package for building word chains

Project description

Word Chain

A package to build word chains from a given list of words.

Tests

Installation

pip install python-wordchain

Sample Usage

from wordchain.wordchain import WordChainer

WORD_LIST = ["bird", "bind", "bord", "bond", "bend", "bing", "bong", "sing", "song"]

chainer = WordChainer(word_list=WORD_LIST)
chainer.get_chains('bird', 'song')

This yields:

[('bird', 'bord', 'bond', 'bong', 'song'),
 ('bird', 'bind', 'bing', 'sing', 'song'),
 ('bird', 'bind', 'bond', 'bong', 'song'),
 ('bird', 'bind', 'bing', 'bong', 'song')]

Testing

Running the test suite from repository root:

pytest -v tests/tests.py

Run tests using docker and tox:

docker run --rm $(docker build -q . -f Dockerfile.tox) tox

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

python-wordchain-0.4.0.tar.gz (5.1 kB view hashes)

Uploaded Source

Built Distribution

python_wordchain-0.4.0-py3-none-any.whl (5.1 kB view hashes)

Uploaded Python 3

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