Skip to content

Instantly share code, notes, and snippets.

@rajacsp
Created February 10, 2019 15:33
from nltk.sentiment.vader import SentimentIntensityAnalyzer
sid = SentimentIntensityAnalyzer()
def get_sentiment(sentence):
return sid.polarity_scores(sentence)
sentiment = get_sentiment("Hello Toronto")
print(sentiment)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment