From 671f843d30722a46f187efbfdf0707eaee5d8ec7 Mon Sep 17 00:00:00 2001 From: Stan Lindsey Date: Sun, 5 May 2013 17:00:59 +0100 Subject: [PATCH] csv export script --- migrations/csvexport.phy | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 migrations/csvexport.phy diff --git a/migrations/csvexport.phy b/migrations/csvexport.phy new file mode 100644 index 0000000000..f50799e73b --- /dev/null +++ b/migrations/csvexport.phy @@ -0,0 +1,10 @@ +import csv + +data = csv.reader(open('/home/slappybag/backrs/800dollar.csv', 'rb'), delimiter=",", quotechar='|') +column = [] + +for row in data: + column.append(row[9]) + +print "one:" +print column \ No newline at end of file