Skip to content
This repository has been archived by the owner on Dec 10, 2019. It is now read-only.

Commit

Permalink
Update CSV 2 JSON or HTML Table
Browse files Browse the repository at this point in the history
  • Loading branch information
davidbailey committed Sep 16, 2015
1 parent d281965 commit 85b7589
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CSV 2 JSON or HTML Table
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ for x in headers:
print "<td>", x, "</td>"

print "</tr>"
for x in df.iterrows():
for (i, x) in df.iterrows():
print "<tr>"
for y in x[1]:
for y in x:
print "<td>", y, "</td>"
print "</tr>"

Expand Down

0 comments on commit 85b7589

Please sign in to comment.