gitextract_36f6_7t4/ ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug-report.md │ │ ├── config.yml │ │ └── feature-request.md │ └── workflows/ │ └── tests.yml ├── .gitignore ├── CHANGELOG.md ├── CITATION.cff ├── CONTRIBUTING.md ├── LICENSE.txt ├── MANIFEST.in ├── Makefile ├── README.md ├── codecov.yml ├── docs/ │ ├── colors.md │ ├── repairing.md │ └── structure.md ├── pdfplumber/ │ ├── __init__.py │ ├── _typing.py │ ├── _version.py │ ├── cli.py │ ├── container.py │ ├── convert.py │ ├── ctm.py │ ├── display.py │ ├── page.py │ ├── pdf.py │ ├── py.typed │ ├── repair.py │ ├── structure.py │ ├── table.py │ └── utils/ │ ├── __init__.py │ ├── clustering.py │ ├── exceptions.py │ ├── generic.py │ ├── geometry.py │ ├── pdfinternals.py │ └── text.py ├── requirements-dev.txt ├── requirements.txt ├── setup.cfg ├── setup.py └── tests/ ├── comparisons/ │ ├── scotus-transcript-p1-cropped.txt │ └── scotus-transcript-p1.txt ├── pdfs/ │ └── make_xref.py ├── test_basics.py ├── test_ca_warn_report.py ├── test_convert.py ├── test_ctm.py ├── test_dedupe_chars.py ├── test_display.py ├── test_issues.py ├── test_laparams.py ├── test_list_metadata.py ├── test_mcids.py ├── test_nics_report.py ├── test_oss_fuzz.py ├── test_repair.py ├── test_structure.py ├── test_table.py └── test_utils.py