langchain_community.document_loaders.epub.UnstructuredEPubLoader

class langchain_community.document_loaders.epub.UnstructuredEPubLoader(file_path: Union[str, List[str], Path, List[Path]], *, mode: str = 'single', unstructured_kwargs: Any)[源代码]

使用 Unstructured 加载 EPub 文件。

你可以以两种模式运行加载器:“single” 和 “elements”。如果使用 “single” 模式,文档将作为单个 langchain 文档对象返回。如果使用 “elements” 模式,unstructured 库将文档分割成如标题和叙述文本等元素。你可以在模式后面传递额外的 unstructured kwargs 来应用不同的非结构化设置。

示例

from langchain_community.document_loaders import UnstructuredEPubLoader

loader = UnstructuredEPubLoader(

"example.epub",mode="elements",strategy="fast",

) docs = loader.load()

参考资料

https://unstructured-io.github.io/unstructured/bricks.html#partition-epub

使用文件路径初始化。

方法

__init__(file_path, *[, mode])

使用文件路径初始化。

alazy_load()

Documents 的延迟加载器。

aload()

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

lazy_load()

加载文件。

load()

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

load_and_split([text_splitter])

加载文档并将其分割成段落。

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

  • mode (str) –

  • unstructured_kwargs (Any) –

类方法 __init__ (文件路径(Union[str, List[str], Path, List[Path]]mode: str = 'single'unstructured_kwargs:** Any)

使用文件路径初始化。

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

  • mode (str) –

  • unstructured_kwargs (Any) –

异步方法 alazy_load () AsyncIterator[Document]

Documents 的延迟加载器。

返回类型

AsyncIterator[Document]

异步方法 aload () List[Document]

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

返回类型

List[Document]

lazy_load () Iterator[Document]

加载文件。

返回类型

Iterator[Document]

load () List[Document]

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

返回类型

List[Document]

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

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

不要重写此方法。应考虑将其弃用!

参数

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

返回值

文档列表。

返回类型

列表[ListDocument]

使用UnstructuredEPubLoader的示例