Skip to main content

Simple JIRA data manipulation

Project description

Jira data

Cause sometimes you need to sort out your issues

Programmatic way to pull 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 ?

Issues in json format from the JIRA REST API.

What I found convenient is to use the search API) with JQL.

You can chain unix style arguments using httpie

config.json

{
  "jql": "project = QA",
  "startAt": 0,
  "maxResults": 2,
  "fields": ["id", "key"]
}

Command line (redirect stdout to the right location)

cat config.json|http -a myusername post 'https://<site-url>/rest/api/2/search'

## Related

Project details


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.1.2.tar.gz (3.6 kB view hashes)

Uploaded Source

Built Distribution

jiradata-1.1.2-py3-none-any.whl (3.7 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page