langchain_community.document_loaders.email.OutlookMessageLoader

class langchain_community.document_loaders.email.OutlookMessageLoader(file_path: Union[str, Path])[source]

使用extract_msg加载Outlook消息文件。

https://github.com/TeamMsgExtractor/msg-extractor

使用文件路径进行初始化。

参数

file_path (Union[str, Path]) – Outlook消息文件的路径。

方法

__init__(file_path)

使用文件路径进行初始化。

alazy_load()

文档的懒加载器。

aload()

将数据加载到文档对象中。

lazy_load()

文档的懒加载器。

load()

将数据加载到文档对象中。

load_and_split([text_splitter])

加载文档并分割为块。

__init__(file_path: Union[str, Path])[source]

使用文件路径进行初始化。

参数

file_path (Union[str, Path]) – Outlook消息文件的路径。

async alazy_load() AsyncIterator[Document]

文档的懒加载器。

返回类型

AsyncIterator[Document]

async aload() List[Document]

将数据加载到文档对象中。

返回类型

List[Document]

lazy_load() Iterator[Document][source]

文档的懒加载器。

返回类型

Iterator[Document]

load() List[Document]

将数据加载到文档对象中。

返回类型

List[Document]

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

加载文档并分割成块。块以Document的形式返回。

不要覆盖此方法。应考虑将其弃用!

参数

text_splitter (可选[TextSplitter]) – 用于分割文档的TextSplitter实例。默认为RecursiveCharacterTextSplitter。

返回

文档列表。

返回类型

列表[Document]

使用OutlookMessageLoader的示例