Hi.
FME supports lists in both a generic format (e.g. list{}) and as lists with attributes (e.g. list{}.value).
Is it possible in Python to get the latter form from a feature as a dict using just the simple format ?
E.g. from a feature attribute ( list{0}.value, list{1}.value, ... ) into
_myvar = feature.getAttribute("list{}") -- returning {"0":"value0","1":"value1",...} etc.
Just using "list{}" returns None as is.
Cheers