Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Python library jira - access changelog.histories item "from"

preznicek
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
March 25, 2025

Hello

If I access jira data via Python library "jira" - in changelog.histories the item "from" is unavailable regardless items list structure is:
field
fieldType
from
fromString
to
toString

It raises "SyntaxError: f-string: expecting '=', or '!', or ':', or '}'"
Example:

 

            for history in changelog.histories:
                for item in history.items:
                    if hasattr(item, "from"):
                        print(f"item.from: {item.from}")

1 answer

0 votes
Tuncay Senturk
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
March 25, 2025

Hi @preznicek 

As far as I know from is a reserved keyword in Python, so you may not access it directly as an attribute using item.from

Instead, can you try something like the one below?

 

for history in changelog.histories:
for item in history.items:
if hasattr(item, "from"):
print(f"item.from: {getattr(item, 'from')}")

 

Suggest an answer

Log in or Sign up to answer
TAGS
atlassian, atlassian community, loom ai, atlassian loom ai, loom, atlassian ai, record recaps of meetings, meeting recaps, loom recaps, share meeting recaps,

Loom’s guide to great meetings 📹

Join us to learn how your team can stay fully engaged in meetings without worrying about writing everything down. Dive into Loom's newest feature, Loom AI for meetings, which automatically takes notes and tracks action items.

Register today!
AUG Leaders

Atlassian Community Events