[jira-python] Accessing a property including spaces

cscetbon June 2, 2014

Hi,

I can access a property that has a space using the raw dictionary as follows :

jira.project('prj1').raw["roles"]['Product Manager']

u'https://xxxx..com/rest/api/2/project/10500/role/10201'

However how can I do it without using this dictionary like I do for other roles ?

jira.project('prj1').roles.Administrators

Out[84]: u'https://xxxx.com/rest/api/2/project/10500/role/10002'

1 answer

0 votes
CEDRIC ZABEL
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
August 25, 2014

First of all, there’s no reason to avoid using the raw dictionary. It’s part of the jira-python interface, it’s well-defined, and as you see, it works when names have spaces.

It turns out you are not asking a jira-python question. You’re just asking a python question: How do I access an object’s attribute using the dot notation when the attribute name has spaces in it? And the answer is that you can’t do it. You have to do something like use the “getattr” function, like so:

getattr(jira.project('prj1').roles, 'Product Manager')

There’s other ways in python to do it, but like I said, it’s really a python question.

Suggest an answer

Log in or Sign up to answer