# BiliBiliLoader

> **Class** in `langchain_community`

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

Load fetching transcripts from BiliBili videos.

## Signature

```python
BiliBiliLoader(
    self,
    video_urls: List[str],
    sessdata: str = '',
    bili_jct: str = '',
    buvid3: str = '',
)
```

## Parameters

| Name | Type | Required | Description |
|------|------|----------|-------------|
| `video_urls` | `List[str]` | Yes | List of BiliBili video URLs. |
| `sessdata` | `str` | No | SESSDATA cookie value for authentication. (default: `''`) |
| `bili_jct` | `str` | No | BILI_JCT cookie value for authentication. (default: `''`) |
| `buvid3` | `str` | No | BUVI3 cookie value for authentication. (default: `''`) |

## Extends

- `BaseLoader`

## Constructors

```python
__init__(
    self,
    video_urls: List[str],
    sessdata: str = '',
    bili_jct: str = '',
    buvid3: str = '',
)
```

| Name | Type |
|------|------|
| `video_urls` | `List[str]` |
| `sessdata` | `str` |
| `bili_jct` | `str` |
| `buvid3` | `str` |


## Properties

- `video_urls`
- `credential`

## Methods

- [`load()`](https://reference.langchain.com/python/langchain-community/document_loaders/bilibili/BiliBiliLoader/load)

---

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