langchain_community.document_loaders.text.TextLoader

class langchain_community.document_loaders.text.TextLoader(file_path: Union[str, Path], encoding: Optional[str] = None, autodetect_encoding: bool = False)[source]

加载文本文件。

参数:

file_path:要加载的文件路径。

encoding:要使用的文件编码。如果为`None`,则将使用默认的系统编码。

autodetect_encoding:是否尝试自动检测文件编码,如果指定的编码失败。

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

Methods

__init__(file_path[, encoding, ...])

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

alazy_load()

一个用于文档的惰性加载器。

aload()

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

lazy_load()

从文件路径加载。

load()

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

load_and_split([text_splitter])

加载文档并分割成块。块作为文档返回。

Parameters
  • file_path (Union[str, Path]) –

  • encoding (Optional[str]) –

  • autodetect_encoding (bool) –

__init__(file_path: Union[str, Path], encoding: Optional[str] = None, autodetect_encoding: bool = False)[source]

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

Parameters
  • file_path (Union[str, Path]) –

  • encoding (Optional[str]) –

  • autodetect_encoding (bool) –

async alazy_load() AsyncIterator[Document]

一个用于文档的惰性加载器。

Return type

AsyncIterator[Document]

async aload() List[Document]

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

Return type

List[Document]

lazy_load() Iterator[Document][source]

从文件路径加载。

Return type

Iterator[Document]

load() List[Document]

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

Return type

List[Document]

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

加载文档并分割成块。块作为文档返回。

不要覆盖此方法。应该被视为已弃用!

参数:
text_splitter: 用于分割文档的TextSplitter实例。

默认为RecursiveCharacterTextSplitter。

返回:

文档列表。

Parameters

text_splitter (Optional[TextSplitter]) –

Return type

List[Document]

Examples using TextLoader