def get_available_resources()

in tseval/utils/prepare.py [0:0]


def get_available_resources():
    def is_prepare_method(variable):
        return (callable(variable) and variable.__name__.startswith('_prepare_'))
    return [name.replace('_prepare_', '') for (name, variable) in globals().items()
            if is_prepare_method(variable)]