Output data in CSV format.
| 29 | print() |
| 30 | |
| 31 | class CSVTableFormatter(TableFormatter): |
| 32 | ''' |
| 33 | Output data in CSV format. |
| 34 | ''' |
| 35 | def headings(self, headers): |
| 36 | print(','.join(headers)) |
| 37 | |
| 38 | def row(self, rowdata): |
| 39 | print(','.join(rowdata)) |
| 40 | |
| 41 | class HTMLTableFormatter(TableFormatter): |
| 42 | ''' |