This isn't directly a programming question, so I apologize in advance. I've been working on a grammar-free random sentence generator for a typing game I'd like to make, and I've been having a difficult time finding any parsable (or callable) data for getting verb conjugations. Ultimately, if I can't find anything like this, I'm going to have to go through the dictionary I've created and add first-person singular and plural, second-person singular and plural, third-person singular and plural, simple past, past participle, and present participle forms for every irregular verb.
This wouldn't be a problem in many languages, but there are so many irregular English verbs that this could take a long, long time to do manually. I'm not against the worse option, but I want to make sure I'm not going to be wasting obscene hours doing it myself when there is some database I can use instead.
I've seen http://www.scientificpsychic.com/verbs1.html and spoken with the creator, but he doesn't release his exact dictionary (just the classes for it). I've also seen sites like http://www.verbix.com/webverbix/English/find.html, which would be great for scraping, but that's a bit of a pain as well.
This question has been asked here before ( Verb Conjugations Database ), but the question was left unanswered, and the asker alluded to solving the problem but never said what the solution was.