Source code for woob.tools.application.formatters.table

# Copyright(C) 2010-2011 Christophe Benz
#
# This file is part of woob.
#
# woob is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# woob is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with woob. If not, see <http://www.gnu.org/licenses/>.

try:
    from prettytable import PrettyTable
except ImportError as e:
    raise ImportError('Please install python-prettytable') from e

try:
    from prettytable import SINGLE_BORDER
except ImportError:
    SINGLE_BORDER = None  # NOQA

from woob.capabilities.base import empty

from .iformatter import IFormatter


__all__ = ['TableFormatter', 'HTMLTableFormatter']


[docs]class TableFormatter(IFormatter): HTML = False def __init__(self): super(TableFormatter, self).__init__() self.queue = [] self.keys = None self.header = None
[docs] def flush(self): s = self.get_formatted_table() if s is not None: self.output(s)
[docs] def get_formatted_table(self): if len(self.queue) == 0: return if self.interactive: self.keys.insert(0, '#') column_headers = [] keys = [] # Do not display columns when all values are NotLoaded or NotAvailable for key in self.keys: if key == '#' or any(not empty(line.get(key)) for line in self.queue): column_headers.append(key.capitalize().replace('_', ' ')) keys.append(key) s = '' if self.display_header and self.header: if self.HTML: s += '<p>%s</p>' % self.header else: s += self.header s += "\n" table = PrettyTable(list(column_headers)) for column_header in column_headers: # API changed in python-prettytable. The try/except is a bad hack to support both versions # Note: two versions are not exactly the same... # (first one: header in center. Second one: left align for header too) try: table.set_field_align(column_header, 'l') except: table.align[column_header] = 'l' for n, line in enumerate(self.queue, 1): table.add_row([ self.format_cell(line.get(key)) if key != '#' else n for key in keys ]) if self.HTML: s += table.get_html_string() else: if SINGLE_BORDER is not None: table.set_style(SINGLE_BORDER) s += table.get_string() self.queue = [] return s
[docs] def format_cell(self, cell): if isinstance(cell, list): return ', '.join(['%s' % item for item in cell]) return cell
[docs] def format_dict(self, item): if self.keys is None: self.keys = list(item.keys()) self.queue.append(item)
[docs] def set_header(self, string): self.header = string
[docs]class HTMLTableFormatter(TableFormatter): HTML = True