docling_parse_docs

docling_parse_docs(
    input_file_path: Path | str,
    output_dir_path: Path | str | None = None,
    output_formats: list[str] | None = None
) -> list[Path]

Convert documents into a Deep Search document format using EasyOCR with CPU only, and export the document and its tables to the specified output directory.
Supported formats:
PDF, IMAGE, DOCX, HTML, PPTX, ASCIIDOC, MD,

Parameters:
NameDescription
input_file_pathThe path to the input file.

Type: pathlib.Path | str
output_dir_pathThe path to the output directory.

Type: pathlib.Path | str | None

Default: None
output_formatsThe output formats.

Defaults to [“markdown”].

Type: list[str] | None

Default: None
Returns:
TypeDescription
list[pathlib.Path]list[ConversionResult]: The result of the conversion.