> > Ya actually my data is large I want all the values of the field processed > seq in table plugin_seq .I am getting all the unwanted information like the > path with the processed sequnce.I am sure that basic code to process the > sequence is correct as I have verified it in python but when I am > implementing the same in web2py the output is not the same .I have tried > with > values = [r.process_seq for r in db().select(db.plugin_seq.processed_seq > )] > but the output is generating the same unwanted stuff by iterating the loop > several times . >
There should be no loop -- that one line is intended to replace your entire code (except for the return statement). Anyway, I'm not sure what you mean by the "path". You might need to show more code as well as a sample of the output you're getting and what you expect instead. Anthony

