TextBlob icon indicating copy to clipboard operation
TextBlob copied to clipboard

Simple, Pythonic, text processing--Sentiment analysis, part-of-speech tagging, noun phrase extraction, translation, and more.

Results 131 TextBlob issues
Sort by recently updated
recently updated
newest added

When I run pytest --flake-finder, this test gave me an error about the first assertion because in the last run this is already in the dictionary, so I think it...

Hi, Thanks for providing and maintaining this library. I noticed that some corner cases are not handled properly. Notably: ` from textblob import Word print(Word("lynx").pluralize()) # prints "lynges" print(Word("jeans").pluralize()) #...

I am facing a problem with the translation from textblob import TextBlob from textblob.translate import NotTranslated text = TextBlob("Explanation\nWhy the edits made under my username Hardcore Metallica Fan were reverted?...

Hey, ![text-blob-my-computer-bug](https://user-images.githubusercontent.com/12490160/134793282-e6155bb0-e601-4f26-b4a3-4ffdffd6507d.png) Found this just testing you lib. Regards, Nick

```python TextBlob('c# c++ r').ngrams(2) # [WordList(['c', 'c']), WordList(['c', 'r'])] ```

Bumps [sphinx](https://github.com/sphinx-doc/sphinx) from 3.5.4 to 4.1.2. Changelog Sourced from sphinx's changelog. Release 4.1.2 (released Jul 27, 2021) Incompatible changes #9435: linkcheck: Disable checking automatically generated anchors on github.com (ex. anchors...

dependencies

I found bugs in calculating sentiment: - Sentiment for the phrase "definitely happy" is the same as sentiment for word "happy" (polarity=0.8, subjectivity=1.0) - but "definitely" has intensity="2.0", so polarity...

Hello! I was trying out the examples from the https://textblob.readthedocs.io/en/dev/quickstart.html and I discovered that it required: ```textblob.blob import WordList``` before the WordList usage, else: ```NameError: name 'WordList' is not defined```...

_Dependabot Preview will be shut down on August 3rd, 2021. In order to keep getting Dependabot updates, please merge this PR and migrate to GitHub-native Dependabot before then._ Dependabot has...

dependencies

I am applying this method for spelling correction on some text present in a csv file, but the code is still running, it's been more than 30 minutes, and even...