MCPcopy Index your code
hub / github.com/Zipstack/unstract / get_plugin

Function get_plugin

workers/plugin_registry.py:167–173  ·  view source on GitHub ↗

Get a plugin by name. This automatically initializes the registry from settings if needed.

(name: str)

Source from the content-addressed store, hash-verified

165
166
167def get_plugin(name: str) -> Any | None:
168 """Get a plugin by name.
169
170 This automatically initializes the registry from settings if needed.
171 """
172 _workers_plugin_registry.initialize_from_settings()
173 return _workers_plugin_registry.get_plugin(name)
174
175
176def list_available_plugins() -> list[dict[str, Any]]:

Callers 1

load_plugin_tasksFunction · 0.90

Calls 2

get_pluginMethod · 0.45

Tested by

no test coverage detected