Skip to main content

A lightweight word finder.

Project description

WordGoblin

WordGoblin is a simple, lightweight word finder package that returns words containing letters specified by the user. English is supported within the package, and custom dictionaries or lists of words can easily be loaded to work with other languages.

Installation and Usage

Install using pip:

pip install wordgoblin

WordGoblin takes as few as one argument or as many as three. If you only want to check the built-in English dictionary for words matching your letters, simply pass your letters as a string to the check_dict method:

import wordgoblin
wordgoblin.check_dict('yourstringofletters')

To only return words containing a certain number of letters, use the same method by specify your number as a second argument:

wordgoblin.check_dict('yourstringofletters', 3)

And to use a custom dictionary, simply provide the path of your JSON dictionary as a second argument (the dictionary should list the words as keys; their values don't matter). You can also (optionally) include the number of letters for your word matches:

wordgoblin.check_dict('yourstringofletters', 'path_to_custom_dict.json')

# or, to only return 4 letter words:
wordgoblin.check_dict('yourstringofletters', 'path_to_custom_dict.json', 4)

To use a custom list of words instead of a JSON dictionary, use the following (very similar) syntax:

wordgoblin.check_list('yourstringofletters', your_custom_list)

# or, to only return 4 letter words:
wordgoblin.check_list('yourstringofletters', your_custom_list, 4)

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

wordgoblin-0.0.1.tar.gz (1.2 MB view hashes)

Uploaded Source

Built Distribution

wordgoblin-0.0.1-py3-none-any.whl (1.2 MB 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