AnakinAnalytics 2026.5.17.8

dotnet add package AnakinAnalytics --version 2026.5.17.8
                    
NuGet\Install-Package AnakinAnalytics -Version 2026.5.17.8
                    
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="AnakinAnalytics" Version="2026.5.17.8" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="AnakinAnalytics" Version="2026.5.17.8" />
                    
Directory.Packages.props
<PackageReference Include="AnakinAnalytics" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add AnakinAnalytics --version 2026.5.17.8
                    
#r "nuget: AnakinAnalytics, 2026.5.17.8"
                    
#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.
#:package AnakinAnalytics@2026.5.17.8
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=AnakinAnalytics&version=2026.5.17.8
                    
Install as a Cake Addin
#tool nuget:?package=AnakinAnalytics&version=2026.5.17.8
                    
Install as a Cake Tool

Anakin-Analytics

Build Status

Anakin-Analytics is a fork of "VADER (Valence Aware Dictionary and sEntiment Reasoner) is a lexicon and rule-based sentiment analysis tool that is specifically attuned to sentiments expressed in social media."

Previously VADER was only available in python (https://github.com/cjhutto/vaderSentiment), and was then ported to C# in https://github.com/codingupastorm/vadersharp (this is a fork from these repos).

This project also referenced and incorporated code from the fork at https://github.com/BobLd/vadersharp.

Citation Information (source)

If you use either the dataset or any of the VADER sentiment analysis tools (VADER sentiment lexicon or Python code for rule-based sentiment analysis engine) in your research, please cite the above paper. For example:

Hutto, C.J. & Gilbert, E.E. (2014). VADER: A Parsimonious Rule-based Model for Sentiment Analysis of Social Media Text. Eighth International Conference on Weblogs and Social Media (ICWSM-14). Ann Arbor, MI, June 2014.

Changes since original port to C#

  • Implement Multiple Lexicon language support
  • Implement Multiple ConfigStore support by language

ToDo:

  • Update to the latest Python version support

Getting Started

Anakin-Analytics provides a .NET 10-ready implementation of the VADER sentiment analysis algorithm and adds support for loading and using multiple language sentiment configuration files at runtime.

Supported highlights:

  • Targets .NET 10
  • Load and use multiple language sentiment config files simultaneously
  • Lexicon and rule-based sentiment analysis tuned for social media text
  • Cross-platform (.NET 10)

Usage

Import the library namespace and create a SentimentIntensityAnalyzer instance, then call PolarityScores:

using AnakinAnalytics;

var analyzer = new SentimentIntensityAnalyzer();
var results = analyzer.PolarityScores("Wow, this package is amazingly easy to use");

Console.WriteLine("Positive score: " + results.Positive);
Console.WriteLine("Negative score: " + results.Negative);
Console.WriteLine("Neutral score: " + results.Neutral);
Console.WriteLine("Compound score: " + results.Compound);
Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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
2026.5.17.8 97 5/17/2026
2026.5.16.5 93 5/16/2026
2026.5.16.4 97 5/16/2026