def getFeatureNames(): """Return a list with the name of all the available features Returns ======= feature_names : list of strings A list that contains all the feature names available in the eFEL. These names can be used in the featureNames argument of e.g. getFeatureValues() """ cppcore.Initialize(_settings.dependencyfile_path, "log") feature_names = [] cppcore.getFeatureNames(feature_names) return feature_names