get_plugin

Function Usage

Obtains the plug-in module with a specified name.

Prototype

1
get_plugin(plugin_name: str) -> Union[ModuleType, None]

Parameters

Parameter

Input/Output

Description

plugin_name

Input

Plug-in name (for example, math or nn).

Returns

(ModuleType | None) Plug-in module object. If no plug-in module object is found, None is returned.

Restrictions

None