MCPcopy Create free account
hub / github.com/claroty/access_parser / parse_table

Method parse_table

access_parser/access_parser.py:180–186  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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 """

Callers 3

parse_msys_tableMethod · 0.95
print_databaseMethod · 0.95
print_tablesFunction · 0.95

Calls 2

get_tableMethod · 0.95
parseMethod · 0.80

Tested by

no test coverage detected