Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #107325 > unrolled thread

Problem with textblob lib

Started byliran.maymoni@gmail.com
First post2016-04-19 06:58 -0700
Last post2016-04-19 07:31 -0700
Articles 3 — 2 participants

Back to article view | Back to comp.lang.python


Contents

  Problem with textblob lib liran.maymoni@gmail.com - 2016-04-19 06:58 -0700
    Re: Problem with textblob lib Peter Otten <__peter__@web.de> - 2016-04-19 16:08 +0200
      Re: Problem with textblob lib liran.maymoni@gmail.com - 2016-04-19 07:31 -0700

#107325 — Problem with textblob lib

Fromliran.maymoni@gmail.com
Date2016-04-19 06:58 -0700
SubjectProblem with textblob lib
Message-ID<a38d4cea-b8a1-4470-ba6d-7d0aa888d468@googlegroups.com>
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.

[toc] | [next] | [standalone]


#107328

FromPeter Otten <__peter__@web.de>
Date2016-04-19 16:08 +0200
Message-ID<mailman.18.1461074923.30862.python-list@python.org>
In reply to#107325
liran.maymoni@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.

[toc] | [prev] | [next] | [standalone]


#107334

Fromliran.maymoni@gmail.com
Date2016-04-19 07:31 -0700
Message-ID<57f1a079-2549-44c1-91c5-5865c99338cc@googlegroups.com>
In reply to#107328
On Tuesday, April 19, 2016 at 5:08:58 PM UTC+3, Peter Otten wrote:
> liran.maymoni@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.

OMG!!!! thank you

[toc] | [prev] | [standalone]


Back to top | Article view | comp.lang.python


csiph-web