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?
Asked
Active
Viewed 56 times
2 Answers
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
-
Thank You. But I need the complete list for aspect-based sentiment analysis to compare. – Shan Jul 13 '22 at 17:04
-
1Ok. Got it. I will check – Pavan Chandaka Jul 13 '22 at 17:09
-
Did you refer this article : https://towardsdatascience.com/aspect-based-sentiment-analysis-using-spacy-textblob-4c8de3e0d2b9 – Pavan Chandaka Jul 13 '22 at 17:25
-
You may need spacy library along with TextBlob – Pavan Chandaka Jul 13 '22 at 17:25
-
I already did aspect-based sentiment analysis using spacy. I need to build a dictionary with polarity scores that are not in the Textblob Dictionary. That's why I need the list of textblob dictionary – Shan Jul 14 '22 at 03:55
1
Here, In thisLink, you can find around 2900+ words with polarity, subjectivity, intensity, and meaning(sense) of TextBlob.

Samrat Alam
- 558
- 3
- 19