I googled far and wide but so far no free synonyms database. I did find some but they were in weird database formats so I couldn't use them.
|
closed as not constructive by Mario, DBD, Sam I am, Wesley Wiser, d_r_w Apr 30 at 15:55
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
This is what OpenOffice.org uses: http://ftp.services.openoffice.org/pub/OpenOffice.org/contrib/dictionaries/thes_en_US_v2.zip Inside the (quite simple) thesaurus component you'll find a data_layout.txt which describes the data format. The data is derived from the WordNet project: http://wordnetcode.princeton.edu/2.1/WordNet-2.1.tar.gz This is done using a script based on another script. |
|||||
|
|
Both dictionary.com and wordnik.com have open APIs which allow you to request synonymns - otherwise you're looking for a digitised thesaurus :) The dictionary.com API is rather new and a tad basic, but has a much richer (and more mature) data set. The wordnik.com API is stable and mature, however the data it provides is crowd-sourced and as a result is not as definitive. |
|||
|
|
You can use a parser and parse some of this synonyms data base sites http://www.synonym.com/synonyms/ or http://synonyms.webtoolbag.com/ Best web parsers are written in Perl. Of course if you knew Ruby or Python, you could write a good parser in one of these languages too. Anyway, you should know very well the regular expression technics if you want to implement a good parser. |
||||
|
|
