TextBlob
TextBlob copied to clipboard
Simple, Pythonic, text processing--Sentiment analysis, part-of-speech tagging, noun phrase extraction, translation, and more.
1. As the question, when I use the Bayesian classifier for emotion classification, due to the excessive amount of data, when the amount of data exceeds 10,000, it will be...
Hello - i try to detect a language from a word with this code: ``` from textblob import TextBlob b = TextBlob("bonjour") print(b.detect_language()) ``` But unfortunately i get this error:...
Hello I want to thank you for the project and comment that checking in PyPi I found that it was compatible up to Python 3.8, however I am in 3.9...
for tweet in ts.search_tweets_iterable(tso): #tso metadata print('created_at: ',tweet['created_at'], 'user_id: ',tweet['id_str'], 'Tweet: ',tweet['text'],' Like:',tweet['favorite_count'], 'RTs:', tweet['retweet_count'], 'geo:', tweet['geo'],'Source:',tweet['source'] ) created_at = tweet ['created_at'] user_id = tweet['id_str'] texto = tweet['text'] Like =...
Translation still failing in 0.17.1: ``` from textblob import TextBlob b = TextBlob("The weather is beautiful today. Tomorrow looks like bad weather.") b.translate(to='es') ``` yields ``` ------------------------------------------------------------------------ HTTPError Traceback (most...
from textblob import TextBlob words = str("Кардиганы из норка") blob = TextBlob(words) perevod = blob.translate(from_lang ="ru", to='uk') print(perevod) New error I catch today. It said that: AttributeError: 'list' object has...
How have the scores been assigned in https://github.com/sloria/TextBlob/blob/dev/textblob/en/en-sentiment.xml? For example, how have polarity, subjectively, intensity or confidence been derived in: `` Has someone labelled these manually? Or have they been...
I keep getting this error when calling detect_language. This has started happening today only.
Hi, after installation, this error `[nltk_data] Error loading brown:
i can not find any info