# LarkSuiteDocLoader

> **Class** in `langchain_community`

📖 [View in docs](https://reference.langchain.com/python/langchain-community/document_loaders/larksuite/LarkSuiteDocLoader)

Load from `LarkSuite` (`FeiShu`).

## Signature

```python
LarkSuiteDocLoader(
    self,
    domain: str,
    access_token: str,
    document_id: str,
)
```

## Parameters

| Name | Type | Required | Description |
|------|------|----------|-------------|
| `domain` | `str` | Yes | The domain to load the LarkSuite. |
| `access_token` | `str` | Yes | The access_token to use. |
| `document_id` | `str` | Yes | The document_id to load. |

## Extends

- `BaseLoader`

## Constructors

```python
__init__(
    self,
    domain: str,
    access_token: str,
    document_id: str,
)
```

| Name | Type |
|------|------|
| `domain` | `str` |
| `access_token` | `str` |
| `document_id` | `str` |


## Properties

- `domain`
- `access_token`
- `document_id`

## Methods

- [`lazy_load()`](https://reference.langchain.com/python/langchain-community/document_loaders/larksuite/LarkSuiteDocLoader/lazy_load)

---

[View source on GitHub](https://github.com/langchain-ai/langchain-community/blob/d5ea8358933260ad48dd31f7f8076555c7b4885a/libs/community/langchain_community/document_loaders/larksuite.py#L10)