"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). I wanted to use it in C# so ported it over.
VaderSharp supports:
To install VaderSharp, run the following command in the Package Manager Console:
Install-Package CodingUpAStorm.VaderSharp
Import the package at the top of the page:
Then just initialize an instance of SentimentIntensityAnalyzer and call it's PolarityScores method:
SentimentIntensityAnalyzer 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);
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4