trello
Platypush documentation
trello
- class platypush.backend.trello.TrelloBackend(boards: List[str], token: str, **kwargs)[source]
Bases:
Backend
This backend listens for events on a remote Trello account through websocket interface.. Note that the Trello websocket interface is not officially supported and it requires a different token from the one you use for the Trello API (and for the Trello plugin). To get the websocket token:
Open https://trello.com in your browser.
Open the developer tools (F12), go to the Network tab, select ‘Websocket’ or ‘WS’ in the filter bar and refresh the page.
You should see an entry in the format
wss://trello.com/1/Session/socket?token=<token>
.Copy the
<token>
in the configuration of this backend.
Requires:
The
platypush.plugins.trello.TrelloPlugin
configured.
Triggers:
platypush.message.event.trello.NewCardEvent
when a card is created.platypush.message.event.MoveCardEvent
when a card is moved.platypush.message.event.ArchivedCardEvent
when a card is archived/closed.platypush.message.event.UnarchivedCardEvent
when a card is un-archived/opened.