langchain_community.document_loaders.notion.NotionDirectoryLoader

class langchain_community.document_loaders.notion.NotionDirectoryLoader(path: Union[str, Path], *, encoding: str = 'utf-8')[source]

加载 Notion 目录转储。

使用文件路径初始化。

方法

__init__(path, *[, encoding])

使用文件路径初始化。

alazy_load()

Documents 的弱加载器。

aload()

将数据加载到 Document 对象中。

lazy_load()

Documents 的弱加载器。

load()

加载文档。

load_and_split([text_splitter])

加载 Documents 并分割成块。

参数
  • path (Union[str, Path]) –

  • encoding (str) –

__init__(path: Union[str, Path], *, encoding: str = 'utf-8') None[source]

使用文件路径初始化。

参数
  • path (Union[str, Path]) –

  • encoding (str) –

返回类型

None

async alazy_load() AsyncIterator[Document]

Documents 的弱加载器。

返回类型

AsyncIterator[Document]

async aload() List[Document]

将数据加载到 Document 对象中。

返回类型

列表[Document]

lazy_load() 迭代器[Document]

Documents 的弱加载器。

返回类型

迭代器[Document]

load() 列表[Document][源代码]

加载文档。

返回类型

列表[Document]

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

加载文档并将其分解成块。块作为Document返回。

不要重写此方法。应将其视为已弃用!

参数

text_splitter (可选TextSplitter) - 用于分解文档的TextSplitter实例。默认为RecursiveCharacterTextSplitter。

返回

文档列表。

返回类型

列表[Document]

使用NotionDirectoryLoader的示例