sloria / TextBlob

Simple, Pythonic, text processing--Sentiment analysis, part-of-speech tagging, noun phrase extraction, translation, and more.
https://textblob.readthedocs.io/
MIT License
9.13k stars 1.15k forks source link

Not able to recognize merged words #327

Open shan18 opened 4 years ago

shan18 commented 4 years ago

TextBlob is not able to identify merged words during spelling correction, it is returning them as correct. Here are a few examples:

>>> textblob.__version__
'0.15.3'
>>> TextBlob('mynameis').correct()
TextBlob("mynameis")
>>> TextBlob('upperright corner').correct()
TextBlob("upperright corner")

Am I missing something or is that a bug?