How can I access list elements dynamically and put it in a loop? I tried this:
index = 2
r = @Value(keys_list{index}.key)
but understand the 'at' is just a templating syntax and cant be used like this..
Also, if there is any specific list functions or a dedicated list object, I have not been able to find them under Class FMEFeature in the documentation.
Thanks,
UPDATE:
Tried
keys_list = feature.getAttribute('keys_list{}')
for key in keys_list:
pass
self.pyoutput(feature)
This gives me Python Exception <TypeError>: 'NoneType' object is not iterable
Verified: keys_list exists and has several elements.