Simple JIRA data manipulation
Project description
Jira data
Cause sometimes you need to sort out your issues
Install
pip install jiradata
How to use ?
Write a csv report
cat response.json | jiradata myreport.csv
With some 'Epic' and issue related to it :
cat response.json |jiradata --epic-field customfield_10000 report.csv
Hold up what is this reponse.json
?
They are issues in json format retrieved using the JIRA REST API.
What I found convenient is to use the search API with JQL.
For example, using httpie :
config.json
{
"jql": "project = QA",
"startAt": 0,
"maxResults": 2,
"fields": ["id", "key"]
}
Command line
cat config.json|http -a myusername post 'https://<site-url>/rest/api/2/search'
Related
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
jiradata-1.2.0.tar.gz
(3.8 kB
view hashes)