forked from dabeaz-course/practical-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtableformat.py
More file actions
86 lines (68 loc) · 1.85 KB
/
tableformat.py
File metadata and controls
86 lines (68 loc) · 1.85 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
#!/usr/bin/env python3
# tableformat.py
#
class FormatError(Exception):
pass
class TableFormatter:
def headings(self, headers):
'''
Emit the table headers
'''
raise NotImplementedError()
def row(self, rowdata):
'''
Emit a single row of table data
'''
raise NotImplementedError()
def create_formatter(name):
if name == 'txt':
formatter = TextTableFormatter()
elif name == 'csv':
formatter = CSVTableFormatter()
elif name == 'html':
formatter = HTMLTableFormatter()
else:
raise FormatError(f'Unknown format {name}')
return formatter
def print_table(portfolio, columns, formatter):
formatter.headings(columns)
for stock in portfolio:
rowdata = []
for colname in columns:
rowdata.append(str(getattr(stock, colname)))
formatter.row(rowdata)
class TextTableFormatter(TableFormatter):
'''
Emit a stable in plain-text format
'''
def headings(self, headers):
for h in headers:
print(f'{h:>10s}', end= ' ')
print()
print(('-'*10 + ' ')*len(headers))
def row(self, rowdata):
for d in rowdata:
print(f'{d:>10s}', end=' ')
print()
class CSVTableFormatter(TableFormatter):
'''
Output protofio data in csv format
'''
def headings(self, headers):
print(','.join(headers))
def row(self, rowdata):
print(','.join(rowdata))
class HTMLTableFormatter(TableFormatter):
'''
Output protofio data in csv format
'''
def headings(self, headers):
print('<tr>', end='')
for h in headers:
print(f'<th>{h}</th>', end='')
print('</tr>')
def row(self, rowdata):
print('<tr>', end='')
for d in rowdata:
print(f'<td>{d}</td>', end='')
print('</tr>')