cut
Would this be useful??? I would love to be able to refer to these tables with dot notation
like page.tables.headers instead of page.tables['Headers']
class TableCollection:
def init(self):
self.headers = None
self.lobbying_activities = None
self.campaign_contributions = None
self.client_compensation = None
https://stackoverflow.com/questions/16279212/how-to-use-dot-notation-for-dict-in-python
cut Would this be useful??? I would love to be able to refer to these tables with dot notation like page.tables.headers instead of page.tables['Headers'] class TableCollection: def init(self): self.headers = None self.lobbying_activities = None self.campaign_contributions = None self.client_compensation = None