All Projects → sgreben → jira-project-export

sgreben / jira-project-export

Licence: Unlicense license
Export issues and metadata for a single JIRA project as JSON.

Programming Languages

shell
77523 projects

Projects that are alternatives of or similar to jira-project-export

Ipadlidarscanexport
Export an OBJ file of ARKit 3.5 iPad Pro LIDAR scans
Stars: ✭ 129 (+616.67%)
Mutual labels:  export
Rats
Movie Ratings Synchronization with Python
Stars: ✭ 156 (+766.67%)
Mutual labels:  export
Sketchup Stl
A SketchUp Ruby Extension that adds STL (STereoLithography) file format import and export.
Stars: ✭ 214 (+1088.89%)
Mutual labels:  export
Sonar Cnes Report
Generates analysis reports from SonarQube web API.
Stars: ✭ 145 (+705.56%)
Mutual labels:  export
Yii2 Export
A library to export server/db data in various formats (e.g. excel, html, pdf, csv etc.)
Stars: ✭ 153 (+750%)
Mutual labels:  export
Csvreader
csvreader library / gem - read tabular data in the comma-separated values (csv) format the right way (uses best practices out-of-the-box with zero-configuration)
Stars: ✭ 169 (+838.89%)
Mutual labels:  export
Dynein
DynamoDB CLI written in Rust.
Stars: ✭ 126 (+600%)
Mutual labels:  export
project-structure-sample
Shows how to keep front end and back end separated
Stars: ✭ 91 (+405.56%)
Mutual labels:  project
Flares
Flares 🔥 is a CloudFlare DNS backup tool
Stars: ✭ 156 (+766.67%)
Mutual labels:  export
Jsonexport
{} → 📄 it's easy to convert JSON to CSV
Stars: ✭ 208 (+1055.56%)
Mutual labels:  export
Keycloak Config Cli
Import YAML/JSON-formatted configuration files into Keycloak - Configuration as Code for Keycloak.
Stars: ✭ 147 (+716.67%)
Mutual labels:  export
Poi Tl
Generate awesome word(docx) with template
Stars: ✭ 2,306 (+12711.11%)
Mutual labels:  export
Bitcoin Etl
ETL scripts for Bitcoin, Litecoin, Dash, Zcash, Doge, Bitcoin Cash. Available in Google BigQuery https://goo.gl/oY5BCQ
Stars: ✭ 174 (+866.67%)
Mutual labels:  export
Criterion
Microbenchmarking for Modern C++
Stars: ✭ 140 (+677.78%)
Mutual labels:  export
Dataset Serialize
JSON to DataSet and DataSet to JSON converter for Delphi and Lazarus (FPC)
Stars: ✭ 213 (+1083.33%)
Mutual labels:  export
Typex
[TOOL, CLI] - Filter and examine Go type structures, interfaces and their transitive dependencies and relationships. Export structural types as TypeScript value object or bare type representations.
Stars: ✭ 128 (+611.11%)
Mutual labels:  export
Photostation Upload Lr Plugin
Photo StatLr (aka PhotoStation Upload) is a Lightroom Publish and Export Service Plugin that enables the export /publishing of photos and videos from Lr to a Synology Photo Station. It uploads the photos/videos and all required thumbnails. It can download comments and ratings and do a real two-way synch of various metadata (tags, ratings, labels).
Stars: ✭ 159 (+783.33%)
Mutual labels:  export
quickjira
🚤 📂 Quickly access the JIRA of your choice by typing the ticket id
Stars: ✭ 65 (+261.11%)
Mutual labels:  jira
Portphp
Data import/export framework for PHP
Stars: ✭ 225 (+1150%)
Mutual labels:  export
Discordchatexporter
Exports Discord chat logs to a file
Stars: ✭ 3,198 (+17666.67%)
Mutual labels:  export

jira-project-export

A little shell script to extract issues and metadata for a JIRA project as JSON. If you just want to copy&paste the API call, look here (everything else is parsing CLI args)

Prerequisites

  • curl
  • jq
  • Your JIRA server's REST API must be accessible.

Example

$ ./export.sh -auth=user:pass -url=https://localhost/jira -project=ABC -export=issues
{
  "expand": "schema,names",
  "startAt": 0,
  "maxResults": 123,
  "total": 123,
  "issues": [
    ...
  ]
}

Usage

Usage:
  export.sh -auth=USER:PASS -url=URL -project=PROJECT -export=[issues|meta]

Options:
  -h | -help
    Print the help text.
  -auth=USER:PASS
    JIRA authentication (username, password).
  -url=URL
    JIRA server URL (including protocol, e.g. https://).
  -project=PROJECT
    JIRA project key.
  -export=issues
    Export the given project's issues as JSON to stdout.
  -export=meta
    Export the given project's metadata as JSON to stdout.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].