langchain_community.document_loaders.word_document.Docx2txtLoader¶

class langchain_community.document_loaders.word_document.Docx2txtLoader(file_path: str)[source]¶

Load DOCX file using docx2txt and chunks at character level.

Defaults to check for local file, but if the file is a web path, it will download it to a temporary file, and use that, then clean up the temporary file after completion

Initialize with file path.

Methods

__init__(file_path)

Initialize with file path.

lazy_load()

A lazy loader for Documents.

load()

Load given path as single page.

load_and_split([text_splitter])

Load Documents and split into chunks.

__init__(file_path: str)[source]¶

Initialize with file path.

lazy_load() Iterator[Document]¶

A lazy loader for Documents.

load() List[Document][source]¶

Load given path as single page.

load_and_split(text_splitter: Optional[TextSplitter] = None) List[Document]¶

Load Documents and split into chunks. Chunks are returned as Documents.

Parameters

text_splitter – TextSplitter instance to use for splitting documents. Defaults to RecursiveCharacterTextSplitter.

Returns

List of Documents.

Examples using Docx2txtLoader¶