Links

Get board data

Tags: #trello #project #board #snippet #operations #dataframe
Author: Jeremy Ravenel
Description: This notebook provides a way to access and analyze data from Trello boards.

Input

Import library

import trello_connector

Model

Variables

token = ""
key = ""
board_id = "VCmIpC16"
export = "xls"
  • token and key can be get from trello developer dashboard
  • board is the unique id for each trello board. it can be get from trello board url
  • export can be csv or xls.

Output

Get board data

df = trello_connector.main(key, token, board_id, export)
Last modified 1mo ago