Skip to content

Commit

Permalink
try to add csv functionality
Browse files Browse the repository at this point in the history
  • Loading branch information
Owen Auch committed Feb 24, 2017
1 parent 42e2109 commit 293afa6
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
*.pyc
*.csv
7 changes: 7 additions & 0 deletions thomascsv.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
from doubtingthomas import *
import csv

myfile = open("test.csv", 'wb')
wr = csv.writer(myfile, quoting=csv.QUOTE_ALL)
for r in verse_list:
wr.writerow(r.get_name())

0 comments on commit 293afa6

Please sign in to comment.