Parsing prim::Constant ListType objects in nodes using the python_ir

When I load a frozen model, I want to be able to parse the nodes into their respective values for analysis. I can use node.i(“value”) to get IntType integer values into a Python object. The same works for FloatType floats using node.f("value). But I cannot figure out a way to parse ListType prim::Constant values into Python. Is there a way to do this?