EverNoteLoader#

class langchain_community.document_loaders.evernote.EverNoteLoader(file_path: str | Path, load_single_document: bool = True)[source]#

EverNote加载。

加载一个EverNote笔记本导出文件,例如my_notebook.enex到Documents中。 生成此文件的说明可以在 https://help.evernote.com/hc/en-us/articles/209005557-Export-notes-and-notebooks-as-ENEX-or-HTML找到。

目前仅提取笔记中的纯文本并存储为文档的内容,任何非内容元数据(例如“作者”、“创建时间”、“更新时间”等,但不包括“content-raw”或“resource”)标签将被提取并存储为文档的元数据。

Parameters:
  • file_path (str) – 带有 .enex 扩展名的笔记本导出路径

  • load_single_document (bool) – 是否将所有笔记的内容连接成一个长的文档。

  • True (如果设置为) – 包含导出文件名的‘source’。

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

方法

__init__(file_path[, load_single_document])

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

alazy_load()

一个用于文档的懒加载器。

aload()

将数据加载到Document对象中。

lazy_load()

从EverNote导出文件加载文档。

load()

将数据加载到Document对象中。

load_and_split([text_splitter])

加载文档并将其分割成块。

__init__(file_path: str | Path, load_single_document: bool = True)[来源]#

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

Parameters:
  • file_path (str | Path)

  • load_single_document (bool)

async alazy_load() AsyncIterator[Document]#

文档的懒加载器。

Return type:

AsyncIterator[Document]

async aload() list[Document]#

将数据加载到Document对象中。

Return type:

列表[Document]

lazy_load() Iterator[Document][source]#

从EverNote导出文件加载文档。

Return type:

迭代器[文档]

load() list[Document]#

将数据加载到Document对象中。

Return type:

列表[Document]

load_and_split(text_splitter: TextSplitter | None = None) list[Document]#

加载文档并将其分割成块。块以文档形式返回。

不要重写此方法。它应该被视为已弃用!

Parameters:

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

Returns:

文档列表。

Return type:

列表[Document]

使用 EverNoteLoader 的示例