langchain_community.document_loaders.parsers.pdf.PDFPlumberParser¶
- class langchain_community.document_loaders.parsers.pdf.PDFPlumberParser(text_kwargs: Optional[Mapping[str, Any]] = None, dedupe: bool = False, extract_images: bool = False)[source]¶
Parse PDF with PDFPlumber.
Initialize the parser.
- Parameters
text_kwargs (Optional[Mapping[str, Any]]) – Keyword arguments to pass to
pdfplumber.Page.extract_text()dedupe (bool) – Avoiding the error of duplicate characters if dedupe=True.
extract_images (bool) –
Methods
__init__([text_kwargs, dedupe, extract_images])Initialize the parser.
lazy_parse(blob)Lazily parse the blob.
parse(blob)Eagerly parse the blob into a document or documents.
- __init__(text_kwargs: Optional[Mapping[str, Any]] = None, dedupe: bool = False, extract_images: bool = False) None[source]¶
Initialize the parser.
- Parameters
text_kwargs (Optional[Mapping[str, Any]]) – Keyword arguments to pass to
pdfplumber.Page.extract_text()dedupe (bool) – Avoiding the error of duplicate characters if dedupe=True.
extract_images (bool) –
- Return type
None