ToMarkdownLoader#
- class langchain_community.document_loaders.tomarkdown.ToMarkdownLoader(url: str, api_key: str)[source]#
Load HTML using 2markdown API.
Initialize with url and api key.
Methods
__init__(url, api_key)Initialize with url and api key.
A lazy loader for Documents.
aload()Load data into Document objects.
Lazily load the file.
load()Load data into Document objects.
load_and_split([text_splitter])Load Documents and split into chunks.
- Parameters:
url (str) –
api_key (str) –
- __init__(url: str, api_key: str)[source]#
Initialize with url and api key.
- Parameters:
url (str) –
api_key (str) –
- async alazy_load() AsyncIterator[Document]#
A lazy loader for Documents.
- Return type:
AsyncIterator[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 ToMarkdownLoader