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
- Host: GitHub
- URL: https://github.com/sahandevs/trello-board-to-csv
- Owner: sahandevs
- License: mit
- Created: 2019-03-09T12:43:08.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-04-06T04:09:36.000Z (over 7 years ago)
- Last Synced: 2024-12-30T15:36:00.408Z (over 1 year ago)
- Topics: csv, scrum, tool, trello
- Language: Python
- Homepage:
- Size: 22.5 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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('')"
```