Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #48019

Re: Creating a Super Simple WWW Link, Copy, & Paste into Spreadsheet Program

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 <ian.g.kelly@gmail.com>
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 <CAPM-O+w3DnyHxN6==fozmFpWgXatcNABCqX3bGY8Lkar0U2JOQ@mail.gmail.com>
References <34b25d59-63b8-44e7-ac10-0afc52a7d726@googlegroups.com> <CAPM-O+w3DnyHxN6==fozmFpWgXatcNABCqX3bGY8Lkar0U2JOQ@mail.gmail.com>
From Ian Kelly <ian.g.kelly@gmail.com>
Date Thu, 13 Jun 2013 14:42:35 -0600
Subject Re: Creating a Super Simple WWW Link, Copy, & Paste into Spreadsheet Program
To Python <python-list@python.org>
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 <python-list.python.org>
List-Unsubscribe <http://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 <http://mail.python.org/mailman/listinfo/python-list>, <mailto:python-list-request@python.org?subject=subscribe>
Newsgroups comp.lang.python
Message-ID <mailman.3221.1371156205.3114.python-list@python.org> (permalink)
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

Show key headers only | View raw


On Thu, Jun 13, 2013 at 1:41 PM, Joel Goldstick
<joel.goldstick@gmail.com> 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.

Back to comp.lang.python | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

Creating a Super Simple WWW Link, Copy, & Paste into Spreadsheet Program buford.lumbar@gmail.com - 2013-06-13 12:28 -0700
  Re: Creating a Super Simple WWW Link, Copy, & Paste into Spreadsheet Program Joel Goldstick <joel.goldstick@gmail.com> - 2013-06-13 15:41 -0400
    Re: Creating a Super Simple WWW Link, Copy, & Paste into Spreadsheet Program buford.lumbar@gmail.com - 2013-06-13 13:18 -0700
  Re: Creating a Super Simple WWW Link, Copy, & Paste into Spreadsheet Program Dave Angel <davea@davea.name> - 2013-06-13 16:08 -0400
  Re: Creating a Super Simple WWW Link, Copy, & Paste into Spreadsheet Program Ian Kelly <ian.g.kelly@gmail.com> - 2013-06-13 14:42 -0600
  RE: Creating a Super Simple WWW Link, Copy, & Paste into Spreadsheet Program Nick Cash <nick.cash@npcinternational.com> - 2013-06-13 21:10 +0000
    Re: Creating a Super Simple WWW Link, Copy, & Paste into Spreadsheet Program Neil Cerutti <neilc@norwich.edu> - 2013-06-14 12:50 +0000
  Re: Creating a Super Simple WWW Link, Copy, & Paste into Spreadsheet Program Steven D'Aprano <steve+comp.lang.python@pearwood.info> - 2013-06-14 03:02 +0000
    Re: Creating a Super Simple WWW Link, Copy, & Paste into Spreadsheet Program buford.lumbar@gmail.com - 2013-06-14 07:03 -0700
  Re: Creating a Super Simple WWW Link, Copy, & Paste into Spreadsheet Program rusi <rustompmody@gmail.com> - 2013-06-13 21:43 -0700
  Re: Creating a Super Simple WWW Link, Copy, & Paste into Spreadsheet Program Denis McMahon <denismfmcmahon@gmail.com> - 2013-06-14 11:48 +0000
  Re: Creating a Super Simple WWW Link, Copy, & Paste into Spreadsheet Program Michael Herman <hermanmu@gmail.com> - 2013-06-14 08:02 -0700

csiph-web