# JoplinLoader

> **Class** in `langchain_community`

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

Load notes from `Joplin`.

In order to use this loader, you need to have Joplin running with the
Web Clipper enabled (look for "Web Clipper" in the app settings).

To get the access token, you need to go to the Web Clipper options and
under "Advanced Options" you will find the access token.

You can find more information about the Web Clipper service here:
https://joplinapp.org/clipper/

## Signature

```python
JoplinLoader(
    self,
    access_token: Optional[str] = None,
    port: int = 41184,
    host: str = 'localhost',
)
```

## Parameters

| Name | Type | Required | Description |
|------|------|----------|-------------|
| `access_token` | `Optional[str]` | No | The access token to use. (default: `None`) |
| `port` | `int` | No | The port where the Web Clipper service is running. Default is 41184. (default: `41184`) |
| `host` | `str` | No | The host where the Web Clipper service is running. Default is localhost. (default: `'localhost'`) |

## Extends

- `BaseLoader`

## Constructors

```python
__init__(
    self,
    access_token: Optional[str] = None,
    port: int = 41184,
    host: str = 'localhost',
) -> None
```

| Name | Type |
|------|------|
| `access_token` | `Optional[str]` |
| `port` | `int` |
| `host` | `str` |


## Methods

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

---

[View source on GitHub](https://github.com/langchain-ai/langchain-community/blob/4b280287bd55b99b44db2dd849f02d66c89534d5/libs/community/langchain_community/document_loaders/joplin.py#L14)