#!/usr/bin/env python class FilterModule(object): def filters(self): return { 'forEachAppend': self.forEachAppend, } def forEachAppend(self, arr, _str): return [ x +_str for x in arr ]