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

https://github.com/semaeopus/trello2jiracsv

A simple python script to convert free trello json exports to a csv format ready for importing with Jira
https://github.com/semaeopus/trello2jiracsv

Last synced: about 1 year ago
JSON representation

A simple python script to convert free trello json exports to a csv format ready for importing with Jira

Awesome Lists containing this project

README

          

# Trello2JiraCSV
A simple python script to convert free Trello json exports to a csv format ready for importing with Jira.

## Usage
1. Export your trello board to json: See instructions [here](http://help.trello.com/article/747-exporting-data-from-trello-1)
2. Run Trello2JiraCSV.py --json path/to/export/trello.json
3. path/to/export/trello.csv should now be created
4. Follow Jira instructions [here](https://confluence.atlassian.com/adminjiraserver071/importing-data-from-csv-802592885.html#ImportingdatafromCSV-howRunningtheCSVfileimportwizard)

## Features
* Cards become Jira Issues
* All description, label and attachment data is carried over
* Checklists of cards are created as subtasks of original issue in Jira
* Resolution will be carried over if using "To Do" "In Progress" and "Done" lists (Could easily be customised)

## Options
* --list_as_component - Useful if list names in Trello are being used as categories, these will be used as components rather than resolution

## Known limitations
Currently supports a maximum of 8 labels and 2 attachments per card.
If you need more simply update the maxLabels/maxAttachments variables and the headerLine variable

## To Do
Add pre pass to work our the maximum amount of attachments and labels and generate the headerline accordingly (See above)

## Notes
This was a quick script to move over our existing workflow to Jira after having lots of trouble with the default Trello importer for Jira, hopefully it's of help to others!

Please feel free to contribute :)