<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Generate an Excel Formatted File Right in Python</title>
	<atom:link href="http://www.answermysearches.com/generate-an-excel-formatted-file-right-in-python/122/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.answermysearches.com/generate-an-excel-formatted-file-right-in-python/122/</link>
	<description>Answers to everything I search for, every day</description>
	<lastBuildDate>Wed, 25 Aug 2010 09:41:33 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: David Davies</title>
		<link>http://www.answermysearches.com/generate-an-excel-formatted-file-right-in-python/122/comment-page-1/#comment-55615</link>
		<dc:creator>David Davies</dc:creator>
		<pubDate>Tue, 20 May 2008 16:37:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.answermysearches.com/index.php/generate-an-excel-formatted-file-right-in-python/122/#comment-55615</guid>
		<description>A far simple method is to seperate you text with \t (python for tab) and simply write the text to a file.....

text=&quot;Hello\tGoodbye\n1\t2&quot;
f=open(&#039;c:\test.xls&#039;,&#039;w&#039;)
f.write(text)
f.close()

C&#039;est Voila 1 beautiful Excel looking something like this....

Hello Goodbye
1     2

Any not a trace of pyExcelerator in sight :)</description>
		<content:encoded><![CDATA[<p>A far simple method is to seperate you text with \t (python for tab) and simply write the text to a file&#8230;..</p>
<p>text=&#8221;Hello\tGoodbye\n1\t2&#8243;<br />
f=open(&#8216;c:\test.xls&#8217;,'w&#8217;)<br />
f.write(text)<br />
f.close()</p>
<p>C&#8217;est Voila 1 beautiful Excel looking something like this&#8230;.</p>
<p>Hello Goodbye<br />
1     2</p>
<p>Any not a trace of pyExcelerator in sight <img src='http://www.answermysearches.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Janos</title>
		<link>http://www.answermysearches.com/generate-an-excel-formatted-file-right-in-python/122/comment-page-1/#comment-44061</link>
		<dc:creator>Janos</dc:creator>
		<pubDate>Mon, 11 Feb 2008 17:00:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.answermysearches.com/index.php/generate-an-excel-formatted-file-right-in-python/122/#comment-44061</guid>
		<description>Hi!

   I want to change background colour of cells in excel. Similarly like in HTML. (I have HTML tables and I want to export them to excel). So I have the colour of the cells in this format: #51FF7C (~green). How can I give this colour to excel???
   Thx for help.

   Janos</description>
		<content:encoded><![CDATA[<p>Hi!</p>
<p>   I want to change background colour of cells in excel. Similarly like in HTML. (I have HTML tables and I want to export them to excel). So I have the colour of the cells in this format: #51FF7C (~green). How can I give this colour to excel???<br />
   Thx for help.</p>
<p>   Janos</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Todd</title>
		<link>http://www.answermysearches.com/generate-an-excel-formatted-file-right-in-python/122/comment-page-1/#comment-35669</link>
		<dc:creator>Todd</dc:creator>
		<pubDate>Thu, 25 Oct 2007 18:27:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.answermysearches.com/index.php/generate-an-excel-formatted-file-right-in-python/122/#comment-35669</guid>
		<description>I haven&#039;t been able to open an Excel file with pyExcelerator either.  There is an ImportXLS.py which can read a specified Excel file and spit out all the data with the parse_xls function.  If I can get the Excel file open I can use Workbook() to add sheets, write data...

I found xlrd which can open Excel files, but can&#039;t write.  Let me know if anybody has found a way to open an existing Excel file and let pyExcelerator modify the file and save it.</description>
		<content:encoded><![CDATA[<p>I haven&#8217;t been able to open an Excel file with pyExcelerator either.  There is an ImportXLS.py which can read a specified Excel file and spit out all the data with the parse_xls function.  If I can get the Excel file open I can use Workbook() to add sheets, write data&#8230;</p>
<p>I found xlrd which can open Excel files, but can&#8217;t write.  Let me know if anybody has found a way to open an existing Excel file and let pyExcelerator modify the file and save it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Greg Pinero (Primary Searcher)</title>
		<link>http://www.answermysearches.com/generate-an-excel-formatted-file-right-in-python/122/comment-page-1/#comment-33898</link>
		<dc:creator>Greg Pinero (Primary Searcher)</dc:creator>
		<pubDate>Thu, 04 Oct 2007 20:12:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.answermysearches.com/index.php/generate-an-excel-formatted-file-right-in-python/122/#comment-33898</guid>
		<description>tuco, I don&#039;t remember much from when I used this module.  The code includes examples.  Do any of those do what you need?</description>
		<content:encoded><![CDATA[<p>tuco, I don&#8217;t remember much from when I used this module.  The code includes examples.  Do any of those do what you need?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: tuco</title>
		<link>http://www.answermysearches.com/generate-an-excel-formatted-file-right-in-python/122/comment-page-1/#comment-33893</link>
		<dc:creator>tuco</dc:creator>
		<pubDate>Thu, 04 Oct 2007 19:34:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.answermysearches.com/index.php/generate-an-excel-formatted-file-right-in-python/122/#comment-33893</guid>
		<description>How do you open an existing Excel file?  I see Workbook() has a &quot;save&quot; method.  It would be convenient to have an &quot;open&quot; method too.  

So far I have spent more time trying to figure how to use the module than writing code.  I&#039;m rummaging through the source and their isn&#039;t even any COMMENTS or DOC STRINGS! A simple doc string for each method would would save hours if not days.  Who has the time?</description>
		<content:encoded><![CDATA[<p>How do you open an existing Excel file?  I see Workbook() has a &#8220;save&#8221; method.  It would be convenient to have an &#8220;open&#8221; method too.  </p>
<p>So far I have spent more time trying to figure how to use the module than writing code.  I&#8217;m rummaging through the source and their isn&#8217;t even any COMMENTS or DOC STRINGS! A simple doc string for each method would would save hours if not days.  Who has the time?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
