mirror of
https://github.com/hwchase17/langchain
synced 2024-10-31 15:20:26 +00:00
87e502c6bc
Co-authored-by: jacoblee93 <jacoblee93@gmail.com> Co-authored-by: Harrison Chase <hw.chase.17@gmail.com>
23 lines
760 B
Plaintext
23 lines
760 B
Plaintext
# Trello
|
|
|
|
>[Trello](https://www.atlassian.com/software/trello) is a web-based project management and collaboration tool that allows individuals and teams to organize and track their tasks and projects. It provides a visual interface known as a "board" where users can create lists and cards to represent their tasks and activities.
|
|
>The TrelloLoader allows us to load cards from a `Trello` board.
|
|
|
|
|
|
## Installation and Setup
|
|
|
|
```bash
|
|
pip install py-trello beautifulsoup4
|
|
```
|
|
|
|
See [setup instructions](/docs/modules/data_connection/document_loaders/integrations/trello.html).
|
|
|
|
|
|
## Document Loader
|
|
|
|
See a [usage example](/docs/modules/data_connection/document_loaders/integrations/trello.html).
|
|
|
|
```python
|
|
from langchain.document_loaders import TrelloLoader
|
|
```
|