Get one specific order by name in Python

Hello people!

If I do this in Python:

order = shopify.Order.find(name='#1111', status='any', limit=1)

print(order)

I get this:

[order(4321967122878)]

How can I retrieve all attributes of an order?

Thank you!