Browse Source

writing output file to index.html

master
manetta 4 years ago
parent
commit
4b5b43662d
  1. 9087
      common-fund-status-viewer.html
  2. 4
      make-common-fund-status-viewer.py

9087
common-fund-status-viewer.html

File diff suppressed because one or more lines are too long

4
make-common-fund-status-viewer.py

@ -25,6 +25,6 @@ Q3 = data['Q3']
Q4 = data['Q4'] Q4 = data['Q4']
page = template.render(data=commonfund, Q1=Q1, Q2=Q2, Q3=Q3, Q4=Q4, year=year) page = template.render(data=commonfund, Q1=Q1, Q2=Q2, Q3=Q3, Q4=Q4, year=year)
out = open('common-fund-status-viewer.html', 'w+') out = open('index.html', 'w+')
out.write(page) out.write(page)
out.close() out.close()

Loading…
Cancel
Save