Currently adding component to feature broker uses lots of characters. In order to make it shorter, base.py should have a function with arguments as in base.features.Provide, but also returning the added component. As a result one could just call:
features = base.register("FeatureSource", components.FeatureExtractor())
instead of:
base.features.Provide("FeatureSource", components.FeatureExtractor())
features = base.features['FeatureSource']
Currently adding component to feature broker uses lots of characters. In order to make it shorter, base.py should have a function with arguments as in base.features.Provide, but also returning the added component. As a result one could just call:
instead of: