.josh Posted November 23, 2006 Share Posted November 23, 2006 Okay I have an off the wall question. Okay go to www.thesaurus.com okay now that you've been there you get the idea: enter in a word and it spits out a list of synonyms and antonyms, part of speech, and a short definition. Now what I am looking for is some kind of sql dump for thesaurus.com. I'm not so much interested in the definition or even the part of speech (though the part of speech might come in handy) as in the words themselves along with other words they point to. Does anybody happen to have one? Know where to get one? Not necessarily thesaurus.com's sql dump; just one for a thesaurus in general. I mean, I can work out the db structure myself just fine. And I can spend all day entering in the data manually just fine. I was just wondering if someone happened to have or know where to find that, offhand. Reason? One of my interests in life is patterns in language; the "art" of language, if you will. And I feel that having something like this to play with might be especially interesting. I suppose I could just pick up my thesaurus off my shelf and start entering stuff in manually..but that would really suck, lol. Quote Link to comment https://forums.phpfreaks.com/topic/28207-thesaurus-sql-dump/ Share on other sites More sharing options...
steviewdr Posted November 23, 2006 Share Posted November 23, 2006 I would look to linux. There is a package called "dict" which checks spellings and offers suggestions if you spelled it wrong. It normally works on the shell - however Im sure you could build a front end to it.Now - as for thesaurus - Im sure there is a linux solution.apt-cache search thesaurusapt-get install aiksaurusaiksaurus testwordand volia - there is your thesaurus and it outputs other meanings of the testword.If you dont have root - Im sure you can get the gzip package and install yourself. Finally tie in with web front end.-steve Quote Link to comment https://forums.phpfreaks.com/topic/28207-thesaurus-sql-dump/#findComment-129092 Share on other sites More sharing options...
ober Posted November 23, 2006 Share Posted November 23, 2006 You could just nail thesaurus.com with a bunch of requests and grab the response and parse it for the info you're looking for ;) Quote Link to comment https://forums.phpfreaks.com/topic/28207-thesaurus-sql-dump/#findComment-129185 Share on other sites More sharing options...
.josh Posted November 23, 2006 Author Share Posted November 23, 2006 lol..yeah i guesso.. Quote Link to comment https://forums.phpfreaks.com/topic/28207-thesaurus-sql-dump/#findComment-129193 Share on other sites More sharing options...
Daniel0 Posted November 26, 2006 Share Posted November 26, 2006 [quote author=Crayon Violent link=topic=116012.msg472515#msg472515 date=1164267181]I suppose I could just pick up my thesaurus off my shelf and start entering stuff in manually..but that would really suck, lol. [/quote]Hmm... imagine those people who have compiled a first edition of a dictionary/thesaurus. I wonder what gets people to think "hey... I guess I'll write a list of all words". Quote Link to comment https://forums.phpfreaks.com/topic/28207-thesaurus-sql-dump/#findComment-130718 Share on other sites More sharing options...
txmedic03 Posted December 1, 2006 Share Posted December 1, 2006 Good point, Daniel0...I think I missed something here...why do you need to get the thesaurus db from thesaurus.com for personal use? Why not just go to thesaurus.com when you want to play with words? Quote Link to comment https://forums.phpfreaks.com/topic/28207-thesaurus-sql-dump/#findComment-133173 Share on other sites More sharing options...
.josh Posted December 1, 2006 Author Share Posted December 1, 2006 because i can't send a query to thesaurus.com to pull words based on conditions i'd like to set. For instance, just for shits and grins if I wanted to do a query to list all words that are 7 letters or have 2+ vowels in them. Can't do that with thesaurus.com. It's not some "website" thing I'm going to offer the general public. It's just my own personal "i'm bored so i want to play around with a really big list of words" sort of thing. Quote Link to comment https://forums.phpfreaks.com/topic/28207-thesaurus-sql-dump/#findComment-133175 Share on other sites More sharing options...
steviewdr Posted December 1, 2006 Share Posted December 1, 2006 [quote]apt-get install aiksaurusaiksaurus testwordand volia - there is your thesaurus and it outputs other meanings of the testword.If you dont have root - Im sure you can get the gzip package and install yourself. Finally tie in with web front end.[/quote]Did you not look into this??The gzip source package can be found here:http://ftp.debian.org/debian/pool/main/a/aiksaurus/aiksaurus_1.0.1+cvs.2004.03.15+dev-0.12.orig.tar.gzThis has the entire thesaurus in text format.In the above archive:/data/0.12-dev/datagen/meanings.textThere are a lot more files including words.txt etc.Rgds,steve Quote Link to comment https://forums.phpfreaks.com/topic/28207-thesaurus-sql-dump/#findComment-133360 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.