Skip to content

Instantly share code, notes, and snippets.

@dimastatz
Created July 6, 2020 17:15
Show Gist options
  • Save dimastatz/5b86271cbeb8ff18958e8e32c0816c6d to your computer and use it in GitHub Desktop.
Save dimastatz/5b86271cbeb8ff18958e8e32c0816c6d to your computer and use it in GitHub Desktop.
def create_jira_client(user, token, instance_name):
options = {'server': 'https://{}.atlassian.net'.format(instance_name)}
return JIRA(options, basic_auth=(user, token))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment