From 7c04202563f9e9cdea4247a5c4f9d843025da3a4 Mon Sep 17 00:00:00 2001 From: Richard Barrett <32808365+Richard-Barrett@users.noreply.github.com> Date: Thu, 24 Nov 2022 10:03:53 -0600 Subject: [PATCH] Delete Applications/Jira-Reporter/projects directory --- .../Jira-Reporter/projects/get_all_projects.py | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 Applications/Jira-Reporter/projects/get_all_projects.py diff --git a/Applications/Jira-Reporter/projects/get_all_projects.py b/Applications/Jira-Reporter/projects/get_all_projects.py deleted file mode 100644 index 2077f34..0000000 --- a/Applications/Jira-Reporter/projects/get_all_projects.py +++ /dev/null @@ -1,15 +0,0 @@ -import os -from atlassian import Jira - -import json -with open('/dataeng/.secrets/secrets.json','r') as f: - config = json.load(f) - -jira_instance = Jira( - url = "https://mirantis.jira.com", - username = (config['user']['username']), - password = (config['user']['password']) -) - -projects = jira_instance.get_all_projects(included_archived=None) -print(projects)