Guest User

Untitled

a guest
Jan 22nd, 2019
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. from jira.client import JIRA
  2. import json
  3. options = {
  4. 'server': 'https://some.server.net/jira12/projects/XXXX',
  5. }
  6. USERNAME=input("Enter your username: ")
  7. PASSWORD=input("Enter your password: ")
  8. jira = JIRA(options, basic_auth=(USERNAME, PASSWORD))
  9. issue = jira.issue('XXXX-260', expand='changelog')
Add Comment
Please, Sign In to add comment