Problem with textblob lib

Peter Otten __peter__ at web.de
Tue Apr 19 10:08:21 EDT 2016


liran.maymoni at gmail.com wrote:

> Hey,
> Using windows 10
> I've install textblob using "py -m pip install textblob".
> I can import textblob, or from textblob import blob,word
> But i cant: from textblobl import Textblob.
> The error i get is:
> Traceback (most recent call last):
>   File "<pyshell#5>", line 1, in <module>
>     from textblob import Textblob
> ImportError: cannot import name 'Textblob'
> 
> Thanks.

Try

from textblob import TextBlob

Python is case-sensitive.




More information about the Python-list mailing list