An open API service indexing awesome lists of open source software.

https://github.com/sahandevs/trello-board-to-csv

Extract Trello Board Data To a CSV file
https://github.com/sahandevs/trello-board-to-csv

csv scrum tool trello

Last synced: 6 months ago
JSON representation

Extract Trello Board Data To a CSV file

Awesome Lists containing this project

README

          

```sh
git clone https://github.com/SahandAkbarzadeh/trello-board-to-csv.git
cd trello-board-to-csv
python -m pip install -r requirements.txt

Usage: run.py [OPTIONS]

Options:
--trello_key TEXT Trello key. generate here :
https://trello.com/1/appKey/generate
--trello_secret TEXT Trello Secret. generate here :
https://trello.com/1/appKey/generate
--board_id TEXT id of board to extract data from. obtain here :
https://trello.com/1/members/me?boards=all
--out TEXT export folder. default: ~/
--delimiter TEXT export delimiter. default: TAB
--card_extractors TEXT extractors : BaseData, CustomFields, TimeInList.
extractor with parameter example
--card_extractors="TimeInList('list_id_one'
'list_id_two')"
default :"BaseData, CustomFields,
TimeInList"
--filters TEXT filters. available filters:
Member('member_id' ...),
List('list_id' ...)
--help Show this message and exit.

```

example

```sh
python run.py \
--trello_key="" \
--trello_secret="" \
--board_id="" \
--out="~\export" \
--card_extractors="BaseData, CustomFields, TimeInList('')" \
--filters="Member(''), List('')"

```