<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>csv on keyes.ie</title>
    <link>https://keyes.ie/tags/csv/</link>
    <description>Recent content in csv on keyes.ie</description>
    <generator>Hugo -- gohugo.io</generator>
    <language>en-us</language>
    <lastBuildDate>Mon, 27 Jun 2011 00:00:00 +0000</lastBuildDate>
    
	<atom:link href="https://keyes.ie/tags/csv/index.xml" rel="self" type="application/rss+xml" />
    
    
    <item>
      <title>Excel2CSV</title>
      <link>https://keyes.ie/excel2csv/</link>
      <pubDate>Mon, 27 Jun 2011 00:00:00 +0000</pubDate>
      
      <guid>https://keyes.ie/excel2csv/</guid>
      <description>Small itch scratched.
import csv from xlrd import open_workbook def excel_to_csv(excel_file, include=None): &amp;#34;&amp;#34;&amp;#34;Convert the data in the excel_file to CSV. Ifinclude is specified, only those named columnswill be included in the CSV.&amp;#34;&amp;#34;&amp;#34; # open the Excel file wb = open_workbook(excel_file) # read each sheet in the file for s in wb.sheets(): # create a CVS writer per sheet csv_writer = csv.writer(open(&amp;#34;%s.csv&amp;#34; % (s.name), &amp;#39;wb&amp;#39;)) # what columns are included in the CSV?</description>
    </item>
    
  </channel>
</rss>