Skip to main content

Tools for searching/indexing dictionaries

Project description

=== dictionary - Interface with system dictionary files ===

This is a GNU/Linux only library that uses dictionary files in “/usr/share/dict” to allow searching dictionaries.

For example, to get all nouns that start with the letter a in /usr/share/dict/american_english_small:

def a_nouns():
        en_us_small = dicttools.getDict("american_english_small")
        while not en_us_small.isFinished():
                time.sleep(1)
        en_us_small = en_us_small.getObject()
        for i in en_us_small.wordType('noun',[[dictionary.STARTS_WITH,'a']]):
                yield i

To get a dictionary, call dicttools.getDict(file: string) where file is a file in /usr/share/dict. You will recieve a DictionaryThread object.

Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

ldicttools-0.1.0-py2.7.egg (5.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