langchain_community.document_loaders.slack_directory.SlackDirectoryLoader¶

class langchain_community.document_loaders.slack_directory.SlackDirectoryLoader(zip_path: Union[str, Path], workspace_url: Optional[str] = None)[source]¶

Load from a Slack directory dump.

Initialize the SlackDirectoryLoader.

Parameters
  • zip_path (str) – The path to the Slack directory dump zip file.

  • workspace_url (Optional[str]) – The Slack workspace URL. Including the URL will turn sources into links. Defaults to None.

Methods

__init__(zip_path[, workspace_url])

Initialize the SlackDirectoryLoader.

alazy_load()

A lazy loader for Documents.

aload()

Load data into Document objects.

lazy_load()

Load and return documents from the Slack directory dump.

load()

Load data into Document objects.

load_and_split([text_splitter])

Load Documents and split into chunks.

__init__(zip_path: Union[str, Path], workspace_url: Optional[str] = None)[source]¶

Initialize the SlackDirectoryLoader.

Parameters
  • zip_path (str) – The path to the Slack directory dump zip file.

  • workspace_url (Optional[str]) – The Slack workspace URL. Including the URL will turn sources into links. Defaults to None.

async alazy_load() AsyncIterator[Document]¶

A lazy loader for Documents.

Return type

AsyncIterator[Document]

async aload() List[Document]¶

Load data into Document objects.

Return type

List[Document]

lazy_load() Iterator[Document][source]¶

Load and return documents from the Slack directory dump.

Return type

Iterator[Document]

load() List[Document]¶

Load data into Document objects.

Return type

List[Document]

load_and_split(text_splitter: Optional[TextSplitter] = 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 SlackDirectoryLoader¶