-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathcafbank.py
31 lines (26 loc) · 1.13 KB
/
cafbank.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
import csv
import datetime
import sys
def read_statement(filename):
source_data = []
with open(filename, 'rb') as sourcefile:
reader = csv.DictReader(sourcefile)
for row in reader:
source_data.append(row)
return source_data
def write_csv(source_data):
fieldnames = ['Description on bank statement', 'Item', 'Category', 'Date', 'Money in USD', 'Money in GBP', 'Money out USD', 'Money out GBP', 'Account', 'Is refunded?']
output_filename = 'cafbank_{}.csv'.format(datetime.datetime.now().strftime('%Y%m%d'))
with open(output_filename, 'w') as outputfile:
writer = csv.writer(outputfile)
writer.writerow(fieldnames)
x = 8 # first row with actual data
while len(source_data[x]) > 1:
item = source_data[x][None]
writer.writerow([item[1], '', '', item[0], '', item[3], '', item[2], 'CAF Bank', '-'])
x += 1
print 'Transaction {} on {} processed'.format(item[1], item[0])
print 'CSV saved to {}'.format(output_filename)
if __name__ == "__main__":
source_data = read_statement(sys.argv[1])
write_csv(source_data)