MHTMLLoader#
- class langchain_community.document_loaders.mhtml.MHTMLLoader(file_path: str | Path, open_encoding: str | None = None, bs_kwargs: dict | None = 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 (str | Path) β Path to file to load.
open_encoding (str | None) β The encoding to use when opening the file.
bs_kwargs (dict | None) β Any kwargs to pass to the BeautifulSoup object.
get_text_separator (str) β 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.
A lazy loader for Documents.
aload
()Load data into Document objects.
Load MHTML document into document objects.
load
()Load data into Document objects.
load_and_split
([text_splitter])Load Documents and split into chunks.
- __init__(file_path: str | Path, open_encoding: str | None = None, bs_kwargs: dict | None = 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 (str | Path) β Path to file to load.
open_encoding (str | None) β The encoding to use when opening the file.
bs_kwargs (dict | None) β Any kwargs to pass to the BeautifulSoup object.
get_text_separator (str) β The separator to use when getting the text from the soup.
- Return type:
None
- async alazy_load() AsyncIterator[Document] #
A lazy loader for Documents.
- Return type:
AsyncIterator[Document]
- lazy_load() Iterator[Document] [source]#
Load MHTML document into document objects.
- Return type:
Iterator[Document]
- load_and_split(text_splitter: TextSplitter | None = None) list[Document] #
Load Documents and split into chunks. Chunks are returned as Documents.
Do not override this method. It should be considered to be deprecated!
- Parameters:
text_splitter (Optional[TextSplitter]) β TextSplitter instance to use for splitting documents. Defaults to RecursiveCharacterTextSplitter.
- Returns:
List of Documents.
- Return type:
list[Document]
Examples using MHTMLLoader