Parse a table from the db. tables names are in self.catalog :return defaultdict(list) with the parsed table -- table[column][row_index]
(self, table_name)
| 178 | return reconstructed_column_data |
| 179 | |
| 180 | def parse_table(self, table_name): |
| 181 | """ |
| 182 | Parse a table from the db. |
| 183 | tables names are in self.catalog |
| 184 | :return defaultdict(list) with the parsed table -- table[column][row_index] |
| 185 | """ |
| 186 | return self.get_table(table_name).parse() |
| 187 | |
| 188 | def print_database(self): |
| 189 | """ |
no test coverage detected