langchain/docs/extras/integrations/providers/trello.mdx

23 lines
707 B
Plaintext
Raw Normal View History

# 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
```
2023-07-25 04:20:32 +00:00
See [setup instructions](/docs/integrations/document_loaders/trello.html).
## Document Loader
2023-07-25 04:20:32 +00:00
See a [usage example](/docs/integrations/document_loaders/trello).
```python
from langchain.document_loaders import TrelloLoader
```