How would I use the WordNet libraries to access its dictionary entires?

John 506 Reputation points
2025-06-16T10:00:58.4366667+00:00

I downloaded and installed the WordNet app.

How would I use the WordNet library to access its dictionary entries?

Would I need to import those WordNet libraries first before using them?

C#
C#
An object-oriented and type-safe programming language that has its roots in the C family of languages and includes support for component-oriented programming.
11,558 questions
{count} votes

Accepted answer
  1. Bruce (SqlWork.com) 77,631 Reputation points Volunteer Moderator
    2025-06-16T19:45:07.5433333+00:00

    the current version of wordnet, is a python project and is only the database files (in yaml format) that can be converted to other formats:

    https://github.com/globalwordnet/english-wordnet

    here is a current open source python library:

    https://github.com/goodmami/wn

    here is an 20 year old implementation for C# that probably uses the old format files (I assume you are using the 20 year old windows app):

    https://github.com/ebswift/wordnetdotnet

    1 person found this answer helpful.
    0 comments No comments

0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.