BMT SMART are looking into automating the creation of issues in Jira through a Python program or possibly through a windows 10 vb.net form.
Can you advise me on any documentation that will assist us in the goal.
Thank you in anticipation.
Hi,
You can use this Jira python client. Some examples
Thank you I am trying the following but not much of a result
"""
# This script shows how to use the client in anonymous mode
# against jira.atlassian.com.
from jira import JIRA
#import re
# By default, the client will connect to a JIRA instance started from the Atlassian Plugin SDK
# (see https://developer.atlassian.com/display/DOCS/Installing+the+Atlassian+Plugin+SDK for details).
# Override this with the options parameter.
options = {
'server': 'https://ouraccount.atlassian.net'}
jira = JIRA(options)
# Get all projects viewable by anonymous users.
projects = jira.projects()
projects = jira.projects()
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
my i see the honorable logs?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi,
have a look at rest API examples.
I would suggest Java for this, but this is strictly a personal bias. I have great things to say about the jira java rest client :) See Jira Java Rest Client
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.