Skip to article frontmatterSkip to article content
Site not loading correctly?

This may be due to an incorrect BASE_URL configuration. See the MyST Documentation for reference.

jira_get_info.py - Retrieve Jira issue information

Description

Retrieves various information fields from a Jira issue, including DOIs, openICPSR URLs, SIVACOR IDs, manuscript information, and access restriction details. Designed for extracting structured data from AEA Data Editor Jira tickets.

Usage

python3 tools/jira_get_info.py <issue-key> [keyword]

Arguments

Keywords

Examples

# Get DOI (default)
python3 tools/jira_get_info.py aearep-8361

# Get specific field
python3 tools/jira_get_info.py aearep-8361 openicpsrurl
python3 tools/jira_get_info.py aearep-8361 dcaf_private
python3 tools/jira_get_info.py aearep-8361 sivacorid
python3 tools/jira_get_info.py aearep-8361 mcid
python3 tools/jira_get_info.py aearep-8361 mctitle

Requirements

Environment Variables Required

To obtain a Jira API token:

  1. Visit https://id.atlassian.com/manage-profile/security/api-tokens

  2. Click “Create API token”

  3. Copy the token and set it as JIRA_API_KEY environment variable

Output

See Also