PyMuPDF extension containing the identified table header.
| 1511 | |
| 1512 | |
| 1513 | class TableHeader: |
| 1514 | """PyMuPDF extension containing the identified table header.""" |
| 1515 | |
| 1516 | def __init__(self, bbox, cells, names, above): |
| 1517 | self.bbox = bbox |
| 1518 | self.cells = cells |
| 1519 | self.names = names |
| 1520 | self.external = above |
| 1521 | |
| 1522 | |
| 1523 | class Table: |
no outgoing calls
no test coverage detected
searching dependent graphs…