I want to check in a Python program if a word is in the English dictionary.

I believe nltk wordnet interface might be the way to go but I have no clue how to use it for such a simple task.

def is_english_word(word):
    pass # how to I implement is_english_word?

is_english_word(token.lower())

In the future, I might want to check if the singular form of a word is in the dictionary (e.g., properties -> property -> english word). How would I achieve that?

Thanks!

link|improve this question

feedback

4 Answers

up vote 15 down vote accepted

For (much) more power and flexibility, use a dedicated spellchecking library like PyEnchant. There's a tutorial, or you could just dive straight in:

>>> import enchant
>>> d = enchant.Dict("en_US")
>>> d.check("Hello")
True
>>> d.check("Helo")
False
>>> d.suggest("Helo")
['He lo', 'He-lo', 'Hello', 'Helot', 'Help', 'Halo', 'Hell', 'Held', 'Helm', 'Hero', "He'll"]
>>>

PyEnchant comes with a few dictionaries (en_GB, en_US, de_DE, fr_FR), but can use any of the OpenOffice ones if you want more languages.

There appears to be a pluralisation library called inflect, but I've no idea whether it's any good.

link|improve this answer
1  
Thank you, I did not know about PyEnchant and it is indeed much more useful for the kind of checks I want to make. – Barthelemy Sep 24 '10 at 16:52
It doesn't recognize <helo>? Not a common word, but I know <helo> as an abbreviation for <helicopter>, and I do not know <Helot>. Just wanted to point out that the solution isn't one-size-fits-all and that a different project might require different dictionaries or a different approach altogether. – dmh Apr 22 at 18:02
Well, if you want a different dictionary you can always plug one in the back of PyEnchant! Note BTW that even the OED only lists "helo" as obsolete... – katrielalex Apr 23 at 19:19
feedback

Using a set to store the word list because looking them up will be faster:

with open("english_words.txt") as word_file:
    english_words = set(word.strip().lower() for word in word_file)

def is_english_word(word):
    return word.lower() in english_words

print is_english_word("ham")  # should be true if you have a good english_words.txt

To answer the second part of the question, the plurals would already be in a good word list, but if you wanted to specifically exclude those from the list for some reason, you could indeed write a function to handle it. But English pluralization rules are tricky enough that I'd just include the plurals in the word list to begin with.

As to where to find English word lists, I found several just by Googling "English word list". Here is one: http://www.sil.org/linguistics/wordlists/english/wordlist/wordsEn.txt You could Google for British or American English if you want specifically one of those dialects.

link|improve this answer
2  
If you make english_words a set instead of a list, then is_english_word will run a lot faster. – dan04 Sep 24 '10 at 16:14
I actually just redid it as a dict but you're right, a set is even better. Updated. – kindall Sep 24 '10 at 16:16
1  
You can also ditch .xreadlines() and just iterate over word_file. – FogleBird Sep 24 '10 at 16:18
Yes, another good suggestion -- taken. – kindall Sep 24 '10 at 16:19
1  
Under ubuntu the packages wamerican and wbritish provide American and British English word lists as /usr/share/dict/*-english. The package info gives wordlist.sourceforge.net as a reference. – intuited Sep 24 '10 at 16:45
show 1 more comment
feedback

For a semantic web approach, you could run a sparql query against WordNet in RDF format. Basically just use urllib module to issue GET request and return results in JSON format, parse using python 'json' module. If it's not English word you'll get no results.

As another idea, you could query Wiktionary's API.

link|improve this answer
feedback

Using NLTK:

from nltk.corpus import wordnet

if not wordnet.synsets(word_to_test):
  #Not an English Word
else:
  #English Word

You should refer to this article if you have trouble installing wordnet or want to try other approaches.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.