langchain_community.document_loaders.email
.OutlookMessageLoader¶
- class langchain_community.document_loaders.email.OutlookMessageLoader(file_path: str)[source]¶
Loads Outlook Message files using extract_msg.
https://github.com/TeamMsgExtractor/msg-extractor
Initialize with a file path.
- Parameters
file_path – The path to the Outlook Message file.
Methods
__init__
(file_path)Initialize with a file path.
A lazy loader for Documents.
load
()Load data into document objects.
load_and_split
([text_splitter])Load Documents and split into chunks.
- __init__(file_path: str)[source]¶
Initialize with a file path.
- Parameters
file_path – The path to the Outlook Message file.
- 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.