langchain_community.document_loaders.mhtml.MHTMLLoader¶

class langchain_community.document_loaders.mhtml.MHTMLLoader(file_path: str, open_encoding: Optional[str] = None, bs_kwargs: Optional[dict] = None, get_text_separator: str = '')[source]¶

Parse MHTML files with BeautifulSoup.

initialize with path, and optionally, file encoding to use, and any kwargs to pass to the BeautifulSoup object.

Parameters
  • file_path – Path to file to load.

  • open_encoding – The encoding to use when opening the file.

  • bs_kwargs – Any kwargs to pass to the BeautifulSoup object.

  • get_text_separator – The separator to use when getting the text from the soup.

Methods

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

initialize with path, and optionally, file encoding to use, and any kwargs to pass to the BeautifulSoup object.

lazy_load()

A lazy loader for Documents.

load()

Load data into Document objects.

load_and_split([text_splitter])

Load Documents and split into chunks.

__init__(file_path: str, open_encoding: Optional[str] = None, bs_kwargs: Optional[dict] = None, get_text_separator: str = '') None[source]¶

initialize with path, and optionally, file encoding to use, and any kwargs to pass to the BeautifulSoup object.

Parameters
  • file_path – Path to file to load.

  • open_encoding – The encoding to use when opening the file.

  • bs_kwargs – Any kwargs to pass to the BeautifulSoup object.

  • get_text_separator – The separator to use when getting the text from the soup.

lazy_load() Iterator[Document]¶

A lazy loader for Documents.

load() List[Document][source]¶

Load data into Document objects.

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

Load Documents and split into chunks. Chunks are returned as Documents.

Parameters

text_splitter – TextSplitter instance to use for splitting documents. Defaults to RecursiveCharacterTextSplitter.

Returns

List of Documents.

Examples using MHTMLLoader¶