MCPcopy Create free account
hub / github.com/StackStorm/st2 / get_available_plugins

Function get_available_plugins

st2common/st2common/util/loader.py:214–219  ·  view source on GitHub ↗

Return names of the available / installed plugins for a given namespace.

(namespace)

Source from the content-addressed store, hash-verified

212
213
214def get_available_plugins(namespace):
215 """Return names of the available / installed plugins for a given namespace."""
216 from stevedore.extension import ExtensionManager
217
218 manager = ExtensionManager(namespace=namespace, invoke_on_load=False)
219 return manager.names()
220
221
222def get_plugin_instance(namespace, name, invoke_on_load=True):

Callers 1

get_runner_moduleFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected