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: References: 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: 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 List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-Mailman-Original-Message-ID: X-Mailman-Original-References: Xref: csiph.com comp.lang.python:107328 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 "", line 1, in > from textblob import Textblob > ImportError: cannot import name 'Textblob' > > Thanks. Try from textblob import TextBlob Python is case-sensitive.