Path: csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!feeder.erje.net!eu.feeder.erje.net!xlned.com!feeder3.xlned.com!newsfeed.xs4all.nl!newsfeed4a.news.xs4all.nl!xs4all!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.001 X-Spam-Evidence: '*H*': 1.00; '*S*': 0.00; 'argument': 0.05; "subject:' ": 0.07; 'parsing': 0.09; 'quotes:': 0.09; 'spaces': 0.09; 'subject:2.7': 0.09; 'subject:How': 0.10; 'cc:addr:python- list': 0.11; 'windows': 0.15; '4:39': 0.16; 'command-line': 0.16; 'from:addr:rosuav': 0.16; 'from:name:chris angelico': 0.16; 'reedy': 0.16; 'subject: \n ': 0.16; 'subject:access': 0.16; 'tab': 0.16; 'subject:python': 0.16; 'wrote:': 0.18; 'cc:addr:python.org': 0.22; 'instance,': 0.24; 'cc:2**0': 0.24; 'least': 0.26; '(for': 0.26; 'header:In-Reply-To:1': 0.27; 'am,': 0.29; 'message-id:@mail.gmail.com': 0.30; 'quotes': 0.31; 'file': 0.32; 'know.': 0.32; 'received:google.com': 0.35; 'there': 0.35; 'convention': 0.38; 'files': 0.38; 'space': 0.40; 'skip:u 10': 0.60; "you'll": 0.62; 'complete': 0.62; 'different': 0.65; 'completion': 0.78; 'to:none': 0.92 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:cc :content-type; bh=g9YIo6h5V5/7+hv/4qdYEvpaMERCAriaUtq5pdy4VSU=; b=beLejf5/W9G4doLwVk5mG7XobVfkgxxvkKfjTPCSg8lUTVi/k/MBEmTXZ6PuEEUnwm RVQnl6tW8S2PZPs4wdfjMzlMKgItF/iNXh/tAZB2DOeGfg08Ncu2I9efsARKSUi+2bpp Igz1ro9V7C8Z4o+eP17AZxGyD0XbWc9Hk3zPnkWuWMhzqgIUq1WLO9zPPSFgZfn/zbk8 f7QoBi6i/Ic4/sBoh/In/VCILFk4dNPs2/fSraphw8zRh0U4Vkcjv7GqVYLt3U4APdyp glAppBKeF7vGMcAoPgI+GaCc2M2Rafi+tAYQ28fX/1E/ZpDopjz4SFLSdn6Be0m0sPuW Zpsg== MIME-Version: 1.0 X-Received: by 10.58.29.16 with SMTP id f16mr15403184veh.23.1399764235713; Sat, 10 May 2014 16:23:55 -0700 (PDT) In-Reply-To: References: <10313d81-01f2-48ed-951c-a5a6cccee65e@googlegroups.com> Date: Sun, 11 May 2014 09:23:55 +1000 Subject: Re: How do I access 'Beautiful Soup' on python 2.7 or 3.4 , console or idle versions. From: Chris Angelico Cc: "python-list@python.org" Content-Type: text/plain; charset=UTF-8 X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 24 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1399764243 news.xs4all.nl 2971 [2001:888:2000:d::a6]:52502 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:71277 On Sun, May 11, 2014 at 4:39 AM, Terry Reedy wrote: >> Since you have a space in the name, you'll need quotes: >> >> >> cd "c:\Beautiful Soup" > > > Not for Win 7, at least > > C:\Users\Terry>cd \program files > > C:\Program Files> Huh, good to know. Unfortunately, Windows leaves command-line parsing completely up to the individual command/application, so some will need quotes, some won't, and some will actually do very different things if you put an argument in quotes (look at START and FIND). There is a broad convention that spaces in file names get protected with quotes, though (for instance, tab completion will put quotes around them), so it's not complete chaos. ChrisA