Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #107328
| Path | csiph.com!fu-berlin.de!uni-berlin.de!not-for-mail |
|---|---|
| From | Peter Otten <__peter__@web.de> |
| Newsgroups | comp.lang.python |
| Subject | Re: Problem with textblob lib |
| Date | Tue, 19 Apr 2016 16:08:21 +0200 |
| Organization | None |
| Lines | 21 |
| 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> |
| Mime-Version | 1.0 |
| Content-Type | text/plain; charset="ISO-8859-1" |
| Content-Transfer-Encoding | 7Bit |
| X-Trace | news.uni-berlin.de +9/3J+bkWkHzKKEIXO/UgwffGAP1642koTzvo0FA308g== |
| Return-Path | <python-python-list@m.gmane.org> |
| X-Original-To | python-list@python.org |
| Delivered-To | python-list@mail.python.org |
| X-Spam-Status | OK 0.002 |
| X-Spam-Evidence | '*H*': 1.00; '*S*': 0.00; 'importerror:': 0.05; 'received:80.91': 0.09; 'received:80.91.229': 0.09; 'received:gmane.org': 0.09; 'received:list': 0.09; 'python': 0.10; 'received:80.91.229.3': 0.16; 'received:dip0.t-ipconnect.de': 0.16; 'received:io': 0.16; 'received:plane.gmane.org': 0.16; 'received:psf.io': 0.16; 'received:t-ipconnect.de': 0.16; 'subject:Problem': 0.16; 'wrote:': 0.16; 'thanks.': 0.18; 'windows': 0.20; '"",': 0.22; 'import': 0.24; '(most': 0.24; 'install': 0.25; "i've": 0.25; 'header:User-Agent:1': 0.26; 'header:X-Complaints-To:1': 0.26; 'error': 0.27; 'traceback': 0.33; 'file': 0.34; 'but': 0.36; 'to:addr:python-list': 0.36; 'subject:: ': 0.37; 'received:org': 0.37; 'to:addr:python.org': 0.40; 'subject:with': 0.40; 'received:de': 0.40; 'email addr:gmail.com': 0.62; 'hey,': 0.75; 'pip': 0.84 |
| X-Injected-Via-Gmane | http://gmane.org/ |
| X-Gmane-NNTP-Posting-Host | p57bd8f77.dip0.t-ipconnect.de |
| User-Agent | KNode/4.13.3 |
| X-BeenThere | python-list@python.org |
| X-Mailman-Version | 2.1.22 |
| Precedence | list |
| List-Id | General discussion list for the Python programming language <python-list.python.org> |
| List-Unsubscribe | <https://mail.python.org/mailman/options/python-list>, <mailto:python-list-request@python.org?subject=unsubscribe> |
| List-Archive | <http://mail.python.org/pipermail/python-list/> |
| List-Post | <mailto:python-list@python.org> |
| List-Help | <mailto:python-list-request@python.org?subject=help> |
| List-Subscribe | <https://mail.python.org/mailman/listinfo/python-list>, <mailto:python-list-request@python.org?subject=subscribe> |
| X-Mailman-Original-Message-ID | <nf5e4m$nkk$1@ger.gmane.org> |
| X-Mailman-Original-References | <a38d4cea-b8a1-4470-ba6d-7d0aa888d468@googlegroups.com> |
| Xref | csiph.com comp.lang.python:107328 |
Show key headers only | View raw
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