diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..6aadef0 --- /dev/null +++ b/.gitignore @@ -0,0 +1,117 @@ +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] +*$py.class + +# C extensions +*.so + +# Distribution / packaging +.Python +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +*.egg-info/ +.installed.cfg +*.egg +MANIFEST + +# PyInstaller +# Usually these files are written by a python script from a template +# before PyInstaller builds the exe, so as to inject date/other infos into it. +*.manifest +*.spec + +# Installer logs +pip-log.txt +pip-delete-this-directory.txt + +# Unit test / coverage reports +htmlcov/ +.tox/ +.nox/ +.coverage +.coverage.* +.cache +nosetests.xml +coverage.xml +*.cover +.hypothesis/ +.pytest_cache/ + +# Translations +*.mo +*.pot + +# Django stuff: +*.log +local_settings.py +db.sqlite3 + +# Flask stuff: +instance/ +.webassets-cache + +# Scrapy stuff: +.scrapy + +# Sphinx documentation +docs/_build/ + +# PyBuilder +target/ + +# Jupyter Notebook +.ipynb_checkpoints + +# IPython +profile_default/ +ipython_config.py + +# pyenv +.python-version + +# celery beat schedule file +celerybeat-schedule + +# SageMath parsed files +*.sage.py + +# Environments +.env +.venv +env/ +venv/ +ENV/ +env.bak/ +venv.bak/ + +# Spyder project settings +.spyderproject +.spyproject + +# Rope project settings +.ropeproject + +# mkdocs documentation +/site + +# mypy +.mypy_cache/ +.dmypy.json +dmypy.json + +# Pyre type checker +.pyre/ + +# Person editor settings +.vscode/ diff --git a/README.md b/README.md index 05038da..871ed3b 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,15 @@ # GitMover -A Python script to migrate milestones, labels, and issues between repositories. +A Python script to migrate milestones, labels, issues and releases between repositories. There was once no easy way to migrate your team's collaborative work (Milestones, Labels, Issues) to another repository. This was especially thorny for teams moving a project into GitHub Enterprise, or open sourcing an existing project by moving it out of GitHub Enterprise. This is a tool to help that process. ## Dependencies -GitMover is just a Python script. You'll need `requests`, and `argparse` installed. -Install them with pip: `pip install requests argparse`. +GitMover is just a Python script. You'll need `requests`, `argparse` and a few +other Python modules installed. Install them with `pip`: + +``` +pip install -r requirements.txt +``` ## Usage ```bash @@ -44,3 +48,5 @@ For authentication, GitMover uses a personal access token, which can be generate `--labels, -l`: Toggle on Label migration. `--issues, -i`: Toggle on Issue migration. + + `--releases, -r`: Toggle on Release migration. diff --git a/git-mover.py b/git-mover.py old mode 100644 new mode 100755 index 8b69caf..b897582 --- a/git-mover.py +++ b/git-mover.py @@ -1,245 +1,352 @@ -import requests, json, argparse, sys +#!/usr/bin/env python3 +# coding=utf-8 + +import requests +import json +import argparse +import sys -#Test if a response object is valid def check_res(r): - #if the response status code is a failure (outside of 200 range) - if r.status_code < 200 or r.status_code >= 300: - #print the status code and associated response. Return false - print "STATUS CODE: "+str(r.status_code) - print "ERROR MESSAGE: "+r.text - #if error, return False - return False - #if successful, return True - return True - -''' -INPUT: an API endpoint for retrieving data -OUTPUT: the request object containing the retrieved data for successful requests. If a request fails, False is returnedself. -''' + """Test if a response object is valid""" + # if the response status code is a failure (outside of 200 range) + if r.status_code < 200 or r.status_code >= 300: + # print the status code and associated response. Return false + print("STATUS CODE: " + str(r.status_code)) + print("ERROR MESSAGE: " + r.text) + print("REQUEST: " + str(r)) + # if error, return False + return False + # if successful, return True + return True + + def get_req(url, credentials): - r = requests.get(url=url, auth=(credentials['user_name'], credentials['token']), headers={'Content-type': 'application/json'}) - return r + """ + INPUT: an API endpoint for retrieving data + OUTPUT: the request object containing the retrieved data for successful requests. If a request fails, False is returned. + """ + print("GETTING: " + url) + r = requests.get(url=url, auth=(credentials['user_name'], credentials['token']), headers={ + 'Content-type': 'application/json'}) + return r + -''' -INPUT: an API endpoint for posting data -OUTPUT: the request object containing the posted data response for successful requests. If a request fails, False is returnedself. -''' def post_req(url, data, credentials): - r = requests.post(url=url, data=data, auth=(credentials['user_name'], credentials['token']), headers={'Content-type': 'application/json', 'Accept': 'application/vnd.github.v3.html+json'}) - return r - -''' -INPUT: - source_url: the root url for the GitHub API - source: the team and repo '/' to retrieve milestones from -OUTPUT: retrieved milestones sorted by their number if request was successful. False otherwise -''' + """ + INPUT: an API endpoint for posting data + OUTPUT: the request object containing the posted data response for successful requests. If a request fails, False is returned. + """ + print("POSTING: " + url) + r = requests.post(url=url, data=data, auth=(credentials['user_name'], credentials['token']), headers={ + 'Content-type': 'application/json', 'Accept': 'application/vnd.github.v3.html+json'}) + return r + + def download_milestones(source_url, source, credentials): - url = source_url+"repos/"+source+"/milestones?filter=all" - r = get_req(url, credentials) - status = check_res(r) - if status: - #if the request succeeded, sort the retrieved milestones by their number - sorted_milestones = sorted(json.loads(r.text), key=lambda k: k['number']) - return sorted_milestones - return False - -''' -INPUT: - source_url: the root url for the GitHub API - source: the team and repo '/' to retrieve issues from -OUTPUT: retrieved issues sorted by their number if request was successful. False otherwise -''' + """ + INPUT: + source_url: the root url for the GitHub API + source: the team and repo '/' to retrieve milestones from + OUTPUT: retrieved milestones sorted by their number if request was successful. False otherwise + """ + url = source_url + "repos/" + source + "/milestones?filter=all" + r = get_req(url, credentials) + status = check_res(r) + if status: + # if the request succeeded, sort the retrieved milestones by their number + sorted_milestones = sorted(json.loads( + r.text), key=lambda k: k['number']) + return sorted_milestones + return False + + def download_issues(source_url, source, credentials): - url = source_url+"repos/"+source+"/issues?filter=all" - r = get_req(url, credentials) - status = check_res(r) - if status: - #if the requests succeeded, sort the retireved issues by their number - sorted_issues = sorted(json.loads(r.text), key=lambda k: k['number']) - return sorted_issues - return False - -''' -INPUT: - source_url: the root url for the GitHub API - source: the team and repo '/' to retrieve labels from -OUTPUT: retrieved labels if request was successful. False otherwise -''' + """ + INPUT: + source_url: the root url for the GitHub API + source: the team and repo '/' to retrieve issues from + OUTPUT: retrieved issues sorted by their number if request was successful. False otherwise + """ + url = source_url + "repos/" + source + "/issues?filter=all" + r = get_req(url, credentials) + status = check_res(r) + if status: + # if the requests succeeded, sort the retireved issues by their number + sorted_issues = sorted(json.loads(r.text), key=lambda k: k['number']) + return sorted_issues + return False + + def download_labels(source_url, source, credentials): - url = source_url+"repos/"+source+"/labels?filter=all" - r = get_req(url, credentials) - status = check_res(r) - if status: - return json.loads(r.text) - return False - -''' -INPUT: - milestones: python list of dicts containing milestone info to be POSTED to GitHub - destination_url: the root url for the GitHub API - destination: the team and repo '/' to post milestones to -OUTCOME: Post milestones to GitHub -OUTPUT: A dict of milestone numbering that maps from source milestone numbers to destination milestone numbers -''' + """ + INPUT: + source_url: the root url for the GitHub API + source: the team and repo '/' to retrieve labels from + OUTPUT: retrieved labels if request was successful. False otherwise + """ + url = source_url + "repos/" + source + "/labels?filter=all" + r = get_req(url, credentials) + status = check_res(r) + if status: + return json.loads(r.text) + return False + + +def download_releases(source_url, source, credentials): + """ + INPUT: + source_url: the root url for the GitHub API + source: the team and repo '/' to retrieve releases from + OUTPUT: retrieved releases if request was successful. False otherwise + """ + url = source_url + "repos/" + source + "/releases" + r = get_req(url, credentials) + status = check_res(r) + if status: + return json.loads(r.text) + return False + + def create_milestones(milestones, destination_url, destination, credentials): - url = destination_url+"repos/"+destination+"/milestones" - milestone_map = {} - for milestone in milestones: - #create a new milestone that includes only the attributes needed to create a new milestone - milestone_prime = {"title": milestone["title"], "state": milestone["state"], "description": milestone["description"], "due_on": milestone["due_on"]} - r = post_req(url, json.dumps(milestone_prime), credentials) - status = check_res(r) - if status: - #if the POST request succeeded, parse and store the new milestone returned from GitHub - returned_milestone = json.loads(r.text) - #map the original source milestone's number to the newly created milestone's number - milestone_map[milestone['number']] = returned_milestone['number'] - else: - print status - return milestone_map - -''' -INPUT: - labels: python list of dicts containing label info to be POSTED to GitHub - destination_url: the root url for the GitHub API - destination: the team and repo '/' to post labels to -OUTCOME: Post labels to GitHub -OUTPUT: Null -''' + """Post milestones to GitHub + INPUT: + milestones: python list of dicts containing milestone info to be POSTED to GitHub + destination_url: the root url for the GitHub API + destination: the team and repo '/' to post milestones to + OUTPUT: A dict of milestone numbering that maps from source milestone numbers to destination milestone numbers + """ + url = destination_url + "repos/" + destination + "/milestones" + milestone_map = {} + for milestone in milestones: + # create a new milestone that includes only the attributes needed to create a new milestone + milestone_prime = {"title": milestone["title"], "state": milestone["state"], + "description": milestone["description"], "due_on": milestone["due_on"]} + r = post_req(url, json.dumps(milestone_prime), credentials) + status = check_res(r) + if status: + # if the POST request succeeded, parse and store the new milestone returned from GitHub + returned_milestone = json.loads(r.text) + # map the original source milestone's number to the newly created milestone's number + milestone_map[milestone['number']] = returned_milestone['number'] + else: + print(status) + return milestone_map + + def create_labels(labels, destination_url, destination, credentials): - url = destination_url+"repos/"+destination+"/labels?filter=all" - #download labels from the destination and pass them into dictionary of label names - check_labels = download_labels(destination_url, destination, credentials) - existing_labels = {} - for existing_label in check_labels: - existing_labels[existing_label["name"]] = existing_label - for label in labels: - #for every label that was downloaded from the source, check if it already exists in the source. - #If it does, don't add it. - if label["name"] not in existing_labels: - label_prime = {"name": label["name"], "color": label["color"]} - r = post_req(url, json.dumps(label_prime), credentials) - status = check_res(r) - -''' -INPUT: - issues: python list of dicts containing issue info to be POSTED to GitHub - destination_url: the root url for the GitHub API - destination_urlination: the team and repo '/' to post issues to - milestones: a boolean flag indicating that milestones were included in this migration - labels: a boolean flag indicating that labels were included in this migration -OUTCOME: Post issues to GitHub -OUTPUT: Null -''' + """Post labels to GitHub + INPUT: + labels: python list of dicts containing label info to be POSTED to GitHub + destination_url: the root url for the GitHub API + destination: the team and repo '/' to post labels to + OUTPUT: Null + """ + url = destination_url + "repos/" + destination + "/labels?filter=all" + # download labels from the destination and pass them into dictionary of label names + check_labels = download_labels(destination_url, destination, credentials) or [] + existing_labels = {} + for existing_label in check_labels: + existing_labels[existing_label["name"]] = existing_label + for label in labels: + # for every label that was downloaded from the source, check if it already exists in the source. + # If it does, don't add it. + if label["name"] not in existing_labels: + label_prime = {"name": label["name"], "color": label["color"]} + print("Migrating Label: " + label["name"]) + r = post_req(url, json.dumps(label_prime), credentials) + check_res(r) + + +def create_releases(releases, destination_url, destination, credentials): + """Post releases to GitHub + INPUT: + releases: python list of dicts containing release info to be POSTED to GitHub + destination_url: the root url for the GitHub API + destination: the team and repo '/' to post releases to + OUTPUT: Null + """ + url = destination_url + "repos/" + destination + "/releases" + # download releases from the destination and pass them into dictionary of + # release names + check_releases = download_releases(destination_url, destination, credentials) or [] + existing_releases = {} + for existing_release in check_releases: + existing_releases[existing_release["name"]] = existing_release + for release in releases: + # for every release that was downloaded from the source, check if it + # already exists in the destination. + # If it does, don't add it. + if release["name"] not in existing_releases: + release_prime = {"tag_name": release["tag_name"], + "target_commitish": release["target_commitish"], + "name": release["name"], + "body": release["body"], + "prerelease": release["prerelease"]} + print("Migrating Release: " + release["name"]) + r = post_req(url, json.dumps(release_prime), credentials) + check_res(r) + + def create_issues(issues, destination_url, destination, milestones, labels, milestone_map, credentials, sameInstall): - url = destination_url+"repos/"+destination+"/issues" - for issue in issues: - #create a new issue object containing only the data necessary for the creation of a new issue - assignee = None - if (issue["assignee"] and sameInstall): - assignee = issue["assignee"]["login"] - issue_prime = {"title" : issue["title"], "body" : issue["body"], "assignee": assignee, "state" : issue["state"]} - #if milestones were migrated and the issue to be posted contains milestones - if milestones and "milestone" in issue and issue["milestone"]!= None: - #if the milestone associated with the issue is in the milestone map - if issue['milestone']['number'] in milestone_map: - #set the milestone value of the new issue to the updated number of the migrated milestone - issue_prime["milestone"] = milestone_map[issue["milestone"]["number"]] - #if labels were migrated and the issue to be migrated contains labels - if labels and "labels" in issue: - issue_prime["labels"] = issue["labels"] - r = post_req(url, json.dumps(issue_prime), credentials) - status = check_res(r) - #if adding the issue failed - if not status: - #get the message from the response - message = json.loads(r.text) - #if the error message is for an invalid entry because of the assignee field, remove it and repost with no assignee - if message['errors'][0]['code'] == 'invalid' and message['errors'][0]['field'] == 'assignee': - sys.stderr.write("WARNING: Assignee "+message['errors'][0]['value']+" on issue \""+issue_prime['title']+"\" does not exist in the destination repository. Issue added without assignee field.\n\n") - issue_prime.pop('assignee') - post_req(url, json.dumps(issue_prime), credentials) + """Post issues to GitHub + INPUT: + issues: python list of dicts containing issue info to be POSTED to GitHub + destination_url: the root url for the GitHub API + destination_urlination: the team and repo '/' to post issues to + milestones: a boolean flag indicating that milestones were included in this migration + labels: a boolean flag indicating that labels were included in this migration + OUTPUT: Null + """ + url = destination_url + "repos/" + destination + "/issues" + for issue in issues: + # create a new issue object containing only the data necessary for the creation of a new issue + assignee = None + if (issue["assignee"] and sameInstall): + assignee = issue["assignee"]["login"] + issue_prime = {"title": issue["title"], "body": issue["body"], + "assignee": assignee, "state": issue["state"]} + # if milestones were migrated and the issue to be posted contains milestones + if milestones and "milestone" in issue and issue["milestone"] is not None: + # if the milestone associated with the issue is in the milestone map + if issue['milestone']['number'] in milestone_map: + # set the milestone value of the new issue to the updated number of the migrated milestone + issue_prime["milestone"] = milestone_map[issue["milestone"]["number"]] + # if labels were migrated and the issue to be migrated contains labels + if labels and "labels" in issue: + issue_prime["labels"] = issue["labels"] + r = post_req(url, json.dumps(issue_prime), credentials) + status = check_res(r) + # if adding the issue failed + if not status: + # get the message from the response + message = json.loads(r.text) + # if the error message is for an invalid entry because of the assignee field, remove it and repost with no assignee + if 'errors' in message and message['errors'][0]['code'] == 'invalid' and message['errors'][0]['field'] == 'assignee': + sys.stderr.write("WARNING: Assignee " + message['errors'][0]['value'] + " on issue \"" + issue_prime['title'] + + "\" does not exist in the destination repository. Issue added without assignee field.\n\n") + issue_prime.pop('assignee') + post_req(url, json.dumps(issue_prime), credentials) def main(): - parser = argparse.ArgumentParser(description='Migrate Milestones, Labels, and Issues between two GitHub repositories. To migrate a subset of elements (Milestones, Labels, Issues), use the element specific flags (--milestones, --lables, --issues). Providing no flags defaults to all element types being migrated.') - parser.add_argument('user_name', type=str, help='Your GitHub (public or enterprise) username: name@email.com') - parser.add_argument('token', type=str, help='Your GitHub (public or enterprise) personal access token') - parser.add_argument('source_repo', type=str, help='the team and repo to migrate from: /') - parser.add_argument('destination_repo', type=str, help='the team and repo to migrate to: /') - parser.add_argument('--destinationToken', '-dt', nargs='?', type=str, help='Your personal access token for the destination account, if you are migrating between GitHub installations') - parser.add_argument('--destinationUserName', '-dun', nargs='?', type=str, help='Username for destination account, if you are migrating between GitHub installations') - parser.add_argument('--sourceRoot', '-sr', nargs='?', default='https://api.github.com', type=str, help='The GitHub domain to migrate from. Defaults to https://www.github.com. For GitHub enterprise customers, enter the domain for your GitHub installation.') - parser.add_argument('--destinationRoot', '-dr', nargs='?', default='https://api.github.com', type=str, help='The GitHub domain to migrate to. Defaults to https://www.github.com. For GitHub enterprise customers, enter the domain for your GitHub installation.') - parser.add_argument('--milestones', '-m', action="store_true", help='Toggle on Milestone migration.') - parser.add_argument('--labels', '-l', action="store_true", help='Toggle on Label migration.') - parser.add_argument('--issues', '-i', action="store_true", help='Toggle on Issue migration.') - args = parser.parse_args() - - destination_repo = args.destination_repo - source_repo = args.source_repo - source_credentials = {'user_name' : args.user_name, 'token' : args.token} - - if (args.sourceRoot != 'https://api.github.com'): - args.sourceRoot += '/api/v3' - - if (args.destinationRoot != 'https://api.github.com'): - args.destinationRoot += '/api/v3' - - if (args.sourceRoot != args.destinationRoot): - if not (args.destinationToken): - sys.stderr.write("Error: Source and Destination Roots are different but no token was supplied for the destination repo.") - quit() - - if not (args.destinationUserName): - print('No destination User Name provided, defaulting to source User Name: '+args.user_name) - args.destinationUserName = args.user_name - - destination_credentials = {'user_name': args.destinationUserName, 'token': args.destinationToken} - - source_root = args.sourceRoot+'/' - destination_root = args.destinationRoot+'/' - - milestone_map = None - - if args.milestones == False and args.labels == False and args.issues == False: - args.milestones = True - args.labels = True - args.issues = True - - if args.milestones: - milestones = download_milestones(source_root, source_repo, source_credentials) - if milestones: - milestone_map = create_milestones(milestones, destination_root, destination_repo, destination_credentials) - elif milestones == False: - sys.stderr.write('ERROR: Milestones failed to be retrieved. Exiting...') - quit() - else: - print "No milestones found. None migrated" - - if args.labels: - labels = download_labels(source_root, source_repo, source_credentials) - if labels: - res = create_labels(labels, destination_root, destination_repo, destination_credentials) - elif labels == False: - sys.stderr.write('ERROR: Labels failed to be retrieved. Exiting...') - quit() - else: - print "No Labels found. None migrated" - - if args.issues: - issues = download_issues(source_root, source_repo, source_credentials) - if issues: - sameInstall = False - if (args.sourceRoot == args.destinationRoot): - sameInstall = True - res = create_issues(issues, destination_root, destination_repo, args.milestones, args.labels, milestone_map, destination_credentials, sameInstall) - elif issues == False: - sys.stderr.write('ERROR: Issues failed to be retrieved. Exiting...') - quit() - else: - print "No Issues found. None migrated" + parser = argparse.ArgumentParser( + description='Migrate Milestones, Labels, and Issues between two GitHub repositories. To migrate a subset of elements (Milestones, Labels, Issues), use the element specific flags (--milestones, --lables, --issues). Providing no flags defaults to all element types being migrated.') + parser.add_argument('user_name', type=str, + help='Your GitHub (public or enterprise) username: name@email.com') + parser.add_argument( + 'token', type=str, help='Your GitHub (public or enterprise) personal access token') + parser.add_argument('source_repo', type=str, + help='the team and repo to migrate from: /') + parser.add_argument('destination_repo', type=str, + help='the team and repo to migrate to: /') + parser.add_argument('--destinationToken', '-dt', nargs='?', type=str, + help='Your personal access token for the destination account, if you are migrating between GitHub installations') + parser.add_argument('--destinationUserName', '-dun', nargs='?', type=str, + help='Username for destination account, if you are migrating between GitHub installations') + parser.add_argument('--sourceRoot', '-sr', nargs='?', default='https://api.github.com', type=str, + help='The GitHub domain to migrate from. Defaults to https://www.github.com. For GitHub enterprise customers, enter the domain for your GitHub installation.') + parser.add_argument('--destinationRoot', '-dr', nargs='?', default='https://api.github.com', type=str, + help='The GitHub domain to migrate to. Defaults to https://www.github.com. For GitHub enterprise customers, enter the domain for your GitHub installation.') + parser.add_argument('--milestones', '-m', action="store_true", + help='Toggle on Milestone migration.') + parser.add_argument('--labels', '-l', action="store_true", + help='Toggle on Label migration.') + parser.add_argument('--issues', '-i', action="store_true", + help='Toggle on Issue migration.') + parser.add_argument('--releases', '-r', action="store_true", + help='Toggle on Release migration.') + args = parser.parse_args() + + destination_repo = args.destination_repo + source_repo = args.source_repo + source_credentials = {'user_name': args.user_name, 'token': args.token} + + if (args.sourceRoot != 'https://api.github.com'): + args.sourceRoot += '/api/v3' + + if (args.destinationRoot != 'https://api.github.com'): + args.destinationRoot += '/api/v3' + + if (args.sourceRoot != args.destinationRoot): + if not (args.destinationToken): + sys.stderr.write( + "Error: Source and Destination Roots are different but no token was supplied for the destination repo.") + quit() + + if not (args.destinationUserName): + print('No destination User Name provided, defaulting to source User Name: ' + args.user_name) + args.destinationUserName = args.user_name + if not (args.destinationToken): + print('No destination Token provided, defaulting to source Token: ' + args.token) + args.destinationToken = args.token + + destination_credentials = { + 'user_name': args.destinationUserName, 'token': args.destinationToken} + + source_root = args.sourceRoot + '/' + destination_root = args.destinationRoot + '/' + + milestone_map = None + + if args.milestones is False and args.labels is False and args.issues is False and args.releases is False: + args.milestones = True + args.labels = True + args.issues = True + args.releases = True + + if args.milestones: + milestones = download_milestones( + source_root, source_repo, source_credentials) + if milestones: + milestone_map = create_milestones( + milestones, destination_root, destination_repo, destination_credentials) + elif milestones is False: + sys.stderr.write( + 'ERROR: Milestones failed to be retrieved. Exiting...') + quit() + else: + print("No milestones found. None migrated") + + if args.labels: + labels = download_labels(source_root, source_repo, source_credentials) + if labels: + create_labels(labels, destination_root, + destination_repo, destination_credentials) + elif labels is False: + sys.stderr.write( + 'ERROR: Labels failed to be retrieved. Exiting...') + quit() + else: + print("No Labels found. None migrated") + + if args.issues: + issues = download_issues(source_root, source_repo, source_credentials) + if issues: + sameInstall = False + if (args.sourceRoot == args.destinationRoot): + sameInstall = True + create_issues(issues, destination_root, destination_repo, args.milestones, + args.labels, milestone_map, destination_credentials, sameInstall) + elif issues is False: + sys.stderr.write( + 'ERROR: Issues failed to be retrieved. Exiting...') + quit() + else: + print("No Issues found. None migrated") + + if args.releases: + releases = download_releases(source_root, source_repo, source_credentials) + if releases: + create_releases(releases, destination_root, destination_repo, + destination_credentials) + elif releases is False: + sys.stderr.write( + 'ERROR: Releases failed to be retrieved. Exiting...') + quit() + else: + print("No ssues found. None migrated") + + if __name__ == "__main__": - main() + main() diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..64f2bbe --- /dev/null +++ b/requirements.txt @@ -0,0 +1,5 @@ +certifi==2018.10.15 +chardet==3.0.4 +idna==2.7 +requests==2.20.1 +urllib3==1.24.1