Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #107328
| From | Peter Otten <__peter__@web.de> |
|---|---|
| Newsgroups | comp.lang.python |
| Subject | Re: Problem with textblob lib |
| Date | 2016-04-19 16:08 +0200 |
| Organization | None |
| Message-ID | <mailman.18.1461074923.30862.python-list@python.org> (permalink) |
| References | <a38d4cea-b8a1-4470-ba6d-7d0aa888d468@googlegroups.com> <nf5e4m$nkk$1@ger.gmane.org> |
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.
Back to comp.lang.python | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
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
csiph-web