Skip to content

Small program for exporting issues from Jira to pdf or html

License

Notifications You must be signed in to change notification settings

lukaszmach/jira-export

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

LinkedIn

Jira export

Small program for exporting issues from Jira to pdf or html.

Prerequisites

wkhtmltopdf - https://wkhtmltopdf.org/ #Required to export issues to pdf. Without that you can still export issues to html.

pandoc - https://pandoc.org/ #Required to run the program

JIRA API key - https://support.atlassian.com/atlassian-account/docs/manage-api-tokens-for-your-atlassian-account/

(back to top)

Usage

On the first run program will create settings.ini file where you can input all JIRA credentials (url, username, api token) and project you want to export.

settings.ini:

[JIRA_ACCESS]
jira_base_url = https://your_jira_instance/  #Here you should put url from your JIRA
jira_username = your_jira@username  #JIRA username
jira_api_token = your_jira_api_token #Jira API token -> look into https://support.atlassian.com/atlassian-account/docs/manage-api-tokens-for-your-atlassian-account/ on how to obtain API token.

[EXPORT_OPTIONS]
export_path = EXPORT/ #Folder to export files. Relative to path executing program.
save_to_html = True #Exports html files from JIRA issues
save_to_pdf = True #Exports pdf files from JIRA issue

[ISSUE_FILTER]
jira_project = TEST #Jira project from all issues will be imported

After correctly setting up your data, run program and it will export issues into provided folder (EXPORT as default).

Depending on the options selected program will:

  • Always download all attachments from issues with filename changed to 'Issue-number'-'filename'
  • If save_to_html=True will generate html file for each issue with filename being 'Issue-number'
  • If save_to_pdf=True will generate pdf file for each issue with filename being 'Issue-number'

(back to top)

Issue format

For both html and pdf all issues are imported with following format

  • {Issue_Number}
  • {Issue_Name}
  • {Issue_Description}
  • {Comments}
    • {Comment_date}
    • {Comment_author}
    • {Comment_body}
  • {Attachments}
    • Links to attachments locally downloaded.

html example of exported issue:

image

pdf example of exported issue:

image

(back to top)

Limitations

Please be aware that some JIRA Api limitations may occur https://developer.atlassian.com/server/hipchat/hipchat-rest-api-rate-limits/

(back to top)

Roadmap

  • Download attachments
  • Export issues to html
  • Export issues to pdf
  • Add linked issues
  • Add more flexibility into settings(image size, fields to be shown in exported issue)
  • Folder Tree download (for example Epic -> User story -> Task)
  • GUI/ Dynamic Exported issue format creator with custom fields

(back to top)

About

Small program for exporting issues from Jira to pdf or html

Topics

Resources

License

Stars

Watchers

Forks

Languages