MCPcopy Index your code
hub / github.com/wechaty/python-wechaty / plugins

Method plugins

src/wechaty/plugin.py:769–776  ·  view source on GitHub ↗

get all of registered plugins Returns: List[WechatyPlugin]: the list of wechaty plugins

(self)

Source from the content-addressed store, hash-verified

767 # await plugin_instance.on_loaded()
768
769 def plugins(self) -> Iterable[WechatyPlugin]:
770 """get all of registered plugins
771
772 Returns:
773 List[WechatyPlugin]: the list of wechaty plugins
774 """
775 for plugin in self._plugins.values():
776 yield plugin
777
778 def remove_plugin(self, name: str) -> None:
779 """remove plugin"""

Callers 1

get_plugins_navMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected