Ejemplo n.º 1
0
 def _get_docket_numbers(self):
     return get_table_column_text(self.html, 3)
Ejemplo n.º 2
0
 def _get_summaries(self):
     return get_table_column_text(self.html, 1)
Ejemplo n.º 3
0
 def _get_case_names(self):
     return get_table_column_text(self.html, 4)
Ejemplo n.º 4
0
 def _get_case_dates(self):
     return [convert_date_string(date_string) for date_string in get_table_column_text(self.html, 2)]
Ejemplo n.º 5
0
 def _get_docket_numbers(self):
     return get_table_column_text(self.html, 2, False, self.table_id)
Ejemplo n.º 6
0
 def _get_case_names(self):
     return get_table_column_text(self.html, 3, False, self.table_id)
Ejemplo n.º 7
0
 def _get_case_dates(self):
     date_strings = get_table_column_text(self.html, 7)
     return [convert_date_string(ds) for ds in date_strings]
Ejemplo n.º 8
0
 def _get_docket_numbers(self):
     dockets = get_table_column_text(self.html, 1)
     # Handle case where "no results" message is put in table cell, see: ca10_example_2.html
     return [] if len(
         dockets) == 1 and 'no results' in dockets[0].lower() else dockets
Ejemplo n.º 9
0
 def _get_docket_numbers(self):
     dockets = get_table_column_text(self.html, 1)
     # Handle case where "no results" message is put in table cell, see: ca10_example_2.html
     return [] if len(dockets) == 1 and 'no results' in dockets[0].lower() else dockets