Skip to content

Instantly share code, notes, and snippets.

@rajacsp
Created February 10, 2019 15:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rajacsp/4214c86b74c7b2cf24d1d31ba8fd65e5 to your computer and use it in GitHub Desktop.
Save rajacsp/4214c86b74c7b2cf24d1d31ba8fd65e5 to your computer and use it in GitHub Desktop.
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