class documentation
Convenience functor for querying loaded controller data.
The output of calling this functor can be used as input to the different controller filtering functions available in this module.
- Example usage. Get I{running} controllers of type C{bar_base/bar}:
>>> list_controllers = ControllerLister('foo_robot/controller_manager') >>> all_ctrl = list_controllers() >>> running_ctrl = filter_by_state(all_ctrl, 'running') >>> running_bar_ctrl = filter_by_type(running_ctrl, 'bar_base/bar')