Convenience constructor that builds TrelloClient init param for you.
from_credentials(
cls,
board_name: str,
*,
api_key: Optional[str] = None,
token: Optional[str] = None,
**kwargs: Any = {}
) -> TrelloLoader| Name | Type | Description |
|---|---|---|
board_name* | str | The name of the Trello board. |
api_key | Optional[str] | Default: NoneTrello API key. Can also be specified as environment variable TRELLO_API_KEY. |
token | Optional[str] | Default: NoneTrello token. Can also be specified as environment variable TRELLO_TOKEN. |
include_card_name* | unknown | Whether to include the name of the card in the document. |
include_comments* | unknown | Whether to include the comments on the card in the document. |
include_checklist* | unknown | Whether to include the checklist on the card in the document. |
card_filter* | unknown | Filter on card status. Valid values are "closed", "open", "all". |
extra_metadata* | unknown | List of additional metadata fields to include as document metadata.Valid values are "due_date", "labels", "list", "closed". |