Skip to content

A .NET library allows developers to retrieve millions of words for the requested language with just one line of code.

License

Notifications You must be signed in to change notification settings

eymenefealtun/LexiExtract

Repository files navigation

LexiExtract

LexiExtract

NuGet Nuget

LexiExtract is a .NET library that allows developers to retrieve millions of words for the requested language with just one line of code. All the data is stored in all-words-in-all-languages repository.

Important Note:

Via this library, you are going to be sending a GET request to the all-words-in-all-languages.


How to use?

LexiExtract can be installed using the Nuget package manager or the dotnet CLI.

dotnet add package LexiExtract 

Example

using LexiExtract;


string[] englishWords = new LexiExtract.Languages.English().GetAllWords();
string[] englishWordsAsync = await new LexiExtract.Languages.English().GetAllWordsAsync();

string randomWord = englishWords.GetRandomWord();
string[] randomWords = englishWords.GetRandomWords(10);

Available languages

All words in all languages


How to contribute?

  1. Fork the repository.
  2. Make changes.
  3. Submit a pull request.

How to support?

About

A .NET library allows developers to retrieve millions of words for the requested language with just one line of code.

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Languages