When using data tables, the data is stored as a list of dictionaries, one per row.
The key is the column name, however key order in a dictionary is basically random.
Is it possible for Lettuce to supply a list of the column headers used ?
There is already some useful built in functions for data tables, e.g. hashes functionality allows you to iterate through the rows,.
I require the correct column in order to facilitate a custom database load operation.
This would be incredibly useful, and cannot see how to access this currently.
I've coded round it for now, by sending the column order as an argument in a subsequent feature step, but its duplicated and inelegant and not Pythonic.
Any ideas
TIA