listRemotePlugins
Syntax
listRemotePlugins([pluginName], [pluginServerAddr])
Arguments
pluginName (optional) is a string indicating the plugin name.
pluginServerAddr (optional) is a string indicating the HTTP address of the DolphinDB plugins repository that the system should use. It is recommended to specify it as "http://plugins.dolphindb.com/plugins".
Details
listRemotePlugins
returns a table listing the available DolphinDB
plugins and their versions.
If pluginName is specified, the function returns the specified plugin. If the specified plugin does not exist, the function returns an empty record. If pluginName is not specified, the function returns all the specified plugins.
Note: The returned plugin information is based on DolphinDB server version and the operation system.
Examples
List all available plugins:
listRemotePlugins()
Return a plugin list:
PluginName | PluginVersion |
---|---|
hdf5 | <PluginVersion> |
matchEngine | <PluginVersion> |
mongodb | <PluginVersion> |
mqtt | <PluginVersion> |
mseed | <PluginVersion> |
mysql | <PluginVersion> |
nsq | <PluginVersion> |
odbc | <PluginVersion> |
opc | <PluginVersion> |
opcua | <PluginVersion> |
zip | <PluginVersion> |
<PluginVersion> refers to the version information of the plugin, such as "2.00.11" and "1.30.23".
Related function: installPlugin