非结构化CHM加载器#
- class langchain_community.document_loaders.chm.UnstructuredCHMLoader(file_path: str | List[str] | Path | List[Path], *, mode: str = 'single', **unstructured_kwargs: Any)[source]#
使用Unstructured加载CHM文件。
CHM 表示 Microsoft 编译的 HTML 帮助。
示例
从 langchain_community.document_loaders 导入 UnstructuredCHMLoader
loader = UnstructuredCHMLoader(“example.chm”) docs = loader.load()
参考文献
dottedmag/pychm http://www.jedrea.com/chmlib/
使用文件路径进行初始化。
方法
__init__
(file_path, *[, mode])使用文件路径进行初始化。
一个用于文档的懒加载器。
aload
()将数据加载到Document对象中。
加载文件。
load
()将数据加载到Document对象中。
load_and_split
([text_splitter])加载文档并分割成块。
- Parameters:
file_path (Union[str, List[str], Path, List[Path]])
mode (str)
unstructured_kwargs (Any)
- __init__(file_path: str | List[str] | Path | List[Path], *, mode: str = 'single', **unstructured_kwargs: Any)#
使用文件路径进行初始化。
- Parameters:
file_path (str | List[str] | Path | List[Path])
mode (str)
unstructured_kwargs (Any)
- load_and_split(text_splitter: TextSplitter | None = None) list[Document] #
加载文档并将其分割成块。块以文档形式返回。
不要重写此方法。它应该被视为已弃用!
- Parameters:
text_splitter (可选[TextSplitter]) – 用于分割文档的TextSplitter实例。 默认为RecursiveCharacterTextSplitter。
- Returns:
文档列表。
- Return type:
列表[Document]
使用 UnstructuredCHMLoader 的示例