Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question
Define what you mean by 'weird database formats'. – Andrew Barber Nov 13 '10 at 23:43
@Andrew Barber - I came across some formats with extensions I didn't even recognize, and opening with word editors just showed a jumbled mess of unwholly characters that were never meant to see the light of day. The format that would be ideal would be an sql file, or something that can be converted into one, like svg. – manixrock Nov 14 '10 at 0:06
1  
I think perhaps your question should be what you started with in reply to AndreKR's answer; "How do I convert this..." A "SQL File" (assuming you mean a script that creates a schema and inserts all the contained values into it) is not really at all an efficient - or even always accessible - format for something like this. Usually the information will come in a format very similar to how it is actually used by who generated or who is expected to use it. You can probably find info for converting it, though; and that will probably be easier than trying to find another source. – Andrew Barber Nov 14 '10 at 0:11

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.

3 Answers

up vote 17 down vote accepted

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.

share|improve this answer
Thanks for the suggestion, but how do I convert this into something I can use in an sql language? say MySQL. I had actually stumbled across this but looking at the .dat file I realized I could write a program but would have to find the format and there might be special cases and so on, and was hoping someone would have one in sql format. – manixrock Nov 13 '10 at 23:59
Edited answer with info about the format. – AndreKR Nov 14 '10 at 1:14

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.

share|improve this answer
Thanks. Link to dictionary is broken. Now: content.dictionary.com/api – Augustin Riedinger Apr 25 at 12:13

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.

share|improve this answer

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