Path: csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!feeder.erje.net!eu.feeder.erje.net!newsfeed.xs4all.nl!newsfeed4.news.xs4all.nl!xs4all!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.101 X-Spam-Level: * X-Spam-Evidence: '*H*': 0.81; '*S*': 0.01; 'subject:into': 0.09; 'windows,': 0.09; 'python': 0.11; 'csv': 0.16; 'files"': 0.16; 'files.': 0.16; 'wrote:': 0.18; 'module': 0.19; 'thu,': 0.19; 'excel': 0.26; 'header:In-Reply-To:1': 0.27; 'message- id:@mail.gmail.com': 0.30; 'usually': 0.31; '13,': 0.31; 'one,': 0.35; 'received:google.com': 0.35; 'there': 0.35; 'format.': 0.36; 'subject:Simple': 0.36; 'application': 0.37; 'depends': 0.38; 'writes': 0.38; 'to:addr:python-list': 0.38; 'files': 0.38; 'pm,': 0.38; 'to:addr:python.org': 0.39; 'dave': 0.60; 'most': 0.60; 'more': 0.64; 'reads': 0.68; 'actually,': 0.84; 'joel': 0.91; '2013': 0.98 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :content-type; bh=u8Fgx03a5ATQbz9GwAxCdoOC6rOjUloI0TQUfqvq2n0=; b=S/dhmeOO1L60Z1z6SVTP8+E1pcMSywv7XMV/6EaHBf+uCyHolk0lrnm2Lbtn+K14Xe hGWkKYXDvvFs2fxSXV0YoSzwFGE/LBonK0EZild5Y/Pq37w+iZ/hKvatJ/km1omam9hT gmONkz3z0PUe9dzTjhULvvpSwCsEhncwV1ayDV98NpzGonH74UOhdHW8nUb9NDGt0Bpe nolphZOEmcFREPXk7gCt/GYC1gJJCf/5qWs+Y8Z2zKwjuzRomu19wfg+C695gn8m85JS zs15t8kloIdPwZv32JDoNXTfZqaNbYAzqR0kSbTQMIGukKUEzk6xFBOi9hrkwwinK2BW V8Rw== X-Received: by 10.66.122.39 with SMTP id lp7mr4343882pab.208.1371156195460; Thu, 13 Jun 2013 13:43:15 -0700 (PDT) MIME-Version: 1.0 In-Reply-To: References: <34b25d59-63b8-44e7-ac10-0afc52a7d726@googlegroups.com> From: Ian Kelly Date: Thu, 13 Jun 2013 14:42:35 -0600 Subject: Re: Creating a Super Simple WWW Link, Copy, & Paste into Spreadsheet Program To: Python Content-Type: text/plain; charset=ISO-8859-1 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: 10 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1371156205 news.xs4all.nl 15907 [2001:888:2000:d::a6]:60040 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:48019 On Thu, Jun 13, 2013 at 1:41 PM, Joel Goldstick wrote: > there is a python module that reads and writes to excel files. look for > that More than one, actually, and which to use depends on whether "Excel files" means the .xls or .xlsx format. On Windows, the most flexible solution is going to be to just use COM to control the Excel application in reading and writing the files. Outside of Windows, the best bet is usually to work with csv files instead, as Dave suggested.