Skip to content

Instantly share code, notes, and snippets.

@amitabhadey
Created February 27, 2018 21:56
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 amitabhadey/92acb680309f9cc71e7485788adc8eba to your computer and use it in GitHub Desktop.
Save amitabhadey/92acb680309f9cc71e7485788adc8eba to your computer and use it in GitHub Desktop.
Sentiment via TextBlob
from textblob import TextBlob
wiki = TextBlob("I am very happy but also a little sad.")
print(wiki.sentiment.polarity)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment