My overarching task is to get all members of Jira except those in a particular group, but I think I need some intermediary help before I can get there. I'm using jira-python, and I've gotten so far as to sort of get the group I need:
print jira.groups(query='jira-developers')
gives me
{u'header': u'Showing 1 of 1 matching groups', u'total': 1, u'groups': [{u'html': u'<b>jira-developers</b>', u'name': u'jira-developers'}]}
which was not the format I expected, but fine. I can't get the members of that group. The documentation seems to suggest that jira.group_members(group) should work, but I get the error that jira has no attribute group_members. Maybe I need to access the group differently? But that error makes no sense to me based on the docs.
I know this is an old question, but I looked briefly at the jira-python documentation and it seems like they still don't do much of anything with groups or group membership. I ended up writing a short script using requests to hit the
group/member
JIRA REST API. Maybe this answer will provide a starting point to anyone finding this result in a search. I ended up making it a bit more complex than the simple example below by using recursion to handle thenextPage
attribute when JIRA pages your results.