3

Is there an online dictionary/ library one can consult that stores all english words. So for instance if I want all words that start with letter 'a' or if I want english words that have 9 letters ...etc Do you know of any API support written in python?

Thanks in advance,

Charles
  • 50,943
  • 13
  • 104
  • 142
Saher Ahwal
  • 9,015
  • 32
  • 84
  • 152

2 Answers2

3

If you are using *nix environment, you can always refer

/usr/share/dict/
/var/lib/dict/
Abhijit
  • 62,056
  • 18
  • 131
  • 204
1

While it is not open source, if you are looking for an API, take a look at Wordnik. It has a API for the Dictionary. Check out their Developer console to live test the API methods.

They have client libraries in a variety of languages including Python.

Romin
  • 8,708
  • 2
  • 24
  • 28