KeywordFinder 0.0.1

dotnet add package KeywordFinder --version 0.0.1
NuGet\Install-Package KeywordFinder -Version 0.0.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="KeywordFinder" Version="0.0.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add KeywordFinder --version 0.0.1
#r "nuget: KeywordFinder, 0.0.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install KeywordFinder as a Cake Addin
#addin nuget:?package=KeywordFinder&version=0.0.1

// Install KeywordFinder as a Cake Tool
#tool nuget:?package=KeywordFinder&version=0.0.1

KeywordFinder

A simple library to get keywords from a text. It also includes English stop words.

Keywords are useful to optimize search for specific concepts.

Usage and example

// Text to get keywords from
var text = "The last enemy to be destroyed is death.";

// Define keyword finder
var keywordFinder = KeywordFinderBuilder
                    .IgnoringWordsFrom(StopWords.English)
                    .Create();

// Get keywords from defined finder
var keywords = keywordFinder.GetKeywordsFrom(text);

The keywords for the text above would be: enemy, destroyed, death

Todo list

  • Implement synonymous for keywords
  • More stop words
  • Stop words from other languages
  • Smart search for phrases?
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 is compatible.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETCoreApp 2.0

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.0.1 1,059 10/19/2018

A library to get keywords from text, and a list of stop words for English.