Path: csiph.com!usenet.pasdenom.info!aioe.org!news.stack.nl!newsfeed.xs4all.nl!newsfeed1.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.062 X-Spam-Evidence: '*H*': 0.88; '*S*': 0.00; 'formatting': 0.07; 'suggest': 0.11; 'files.': 0.13; 'library': 0.15; 'csv': 0.16; 'formatting.': 0.16; 'subject:limit': 0.16; 'wrote:': 0.17; 'tim': 0.18; 'trying': 0.21; "i'd": 0.22; 'header:In-Reply-To:1': 0.25; 'developers': 0.26; 'am,': 0.27; 'newer': 0.27; 'message- id:@mail.gmail.com': 0.27; 'chase': 0.29; "i'm": 0.29; 'writes': 0.30; 'error': 0.30; 'extract': 0.33; 'to:addr:python-list': 0.33; 'excel': 0.33; 'version': 0.34; 'received:google.com': 0.34; 'list': 0.35; 'data,': 0.35; 'open': 0.35; '2010.': 0.36; 'but': 0.36; 'data': 0.37; 'subject:: ': 0.38; 'things': 0.38; 'to:addr:python.org': 0.39; 'matter': 0.61; 'export': 0.62; 'limit': 0.65; 'subject': 0.66; '2013': 0.84; 'neil': 0.84; 'to:name:python': 0.84; 'ana': 0.91 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:mime-version:in-reply-to:references:from:date:message-id :subject:to:content-type; bh=tWfPY3gBiICFdyqAx2gnAdAi0DYKbre7ICEa+c5pmQk=; b=vSMalnkpZ1dcuH8mMH8limevvDngv9bJt8UegaZ+mrnAaAKJIMod7i4RP4MN7bYKIh PEOfebeq+UVj45FDzqWnoaU1dX6+d6Sl3WgW5zfRdzOMgMDlOj73Hut8ulUEJh6xmyZg jZBBqYAhhwSk/HMnhQYojdqPvu2hjcEfkyNAoqiQbWdC6m/Piv73prWyGZ+bHlK60D3A 6IH+Cf2MNyBCwy5M885qUG1YWdDJB8ucen+BPc84dVc6jBXQRCzbXYNHPyHn19k83Gdo aTlbBWBlTw9tUnQ0zhy/Mu4lolLlDK4Fv18vAPXuCa42Gp2KpfVgIci38ItaR/4E7+h2 SGnA== X-Received: by 10.52.18.148 with SMTP id w20mr4161615vdd.8.1363731005001; Tue, 19 Mar 2013 15:10:05 -0700 (PDT) MIME-Version: 1.0 In-Reply-To: <20130319094412.423fdabf@bigbox.christie.dr> References: <5ff118cb-a57b-45d6-9a5c-e0e3db4b0327@googlegroups.com> <514737bc$0$6599$c3e8da3$5496439d@news.astraweb.com> <978a0895-902d-458c-8afd-d2a72f00feeb@googlegroups.com> <20130319094412.423fdabf@bigbox.christie.dr> From: Ian Kelly Date: Tue, 19 Mar 2013 16:09:24 -0600 Subject: Re: Excel column 256 limit 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: 21 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1363731014 news.xs4all.nl 6952 [2001:888:2000:d::a6]:56757 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:41541 On Tue, Mar 19, 2013 at 8:44 AM, Tim Chase wrote: > On 2013-03-19 14:07, Neil Cerutti wrote: >> On 2013-03-18, Ana Dion?sio wrote: >> > But I still get the error and I use Excel 2010. >> > >> > I'm trying to export data in a list to Excel >> >> xlrd: Library for developers to extract data from Microsoft Excel >> (tm). >> >> It is for *reading* Excel files, not writing them. > > There's xlrd[1] for reading and xlwt[2] for writing native XLS files. > If the OP needs greater control over things like formatting and > formula-cells, I'd suggest xlwt, as CSV restricts you to shoveling > around the data, not its formatting. xlwt however only writes .xls files, not the newer .xlsx files, so it is still subject to the 256-column limit no matter what version of Excel you use to open the workbook.