Skip to content

Instantly share code, notes, and snippets.

@abasalaev
abasalaev / jira2gitlab.py
Created April 11, 2023 15:03 — forked from Gwerlas/jira2gitlab.py
Migrate Jira issues to Gitlab
import requests
from requests.auth import HTTPBasicAuth
import re
from StringIO import StringIO
import uuid
# Inspired from https://gist.github.com/toudi/67d775066334dc024c24
# Tested on Jira 7.4 and Gitlab 2.2 with Python 2.7
JIRA_URL = 'https://your-jira-url.tld/'
JIRA_ACCOUNT = ('jira-username', 'jira-password')