3

I need the total list or dictionary with Polarity Score of TextBlob. I search many online sites but can not find the list. I know the way to get polarity of a sentence or word. How can I find that?

Shan
  • 45
  • 6

2 Answers2

2

As we did not see a direct api function, may be you can try this. You said you know the way to get polarity of a word.

Get the complete word list from TextBlob.

Copied from API

from textblob import TextBlob
b = TextBlob("xxxxxxxxxxxxxxxxxxxxxxxxxxx.")
b.words

Now iterate each word, get polarity of each word and prepare your own list.

Pavan Chandaka
  • 11,671
  • 5
  • 26
  • 34
1

Here, In thisLink, you can find around 2900+ words with polarity, subjectivity, intensity, and meaning(sense) of TextBlob.

Samrat Alam
  • 558
  • 3
  • 19