pluginInfo parameter

The pluginInfo parameter is a JSON formatted parameter to modify the name of the plugin, define the category, adding search keywords and more.

pluginInfo Parameter

pluginInfo = {
        "name" : "FirstPlugin",
        "category" : "Plugins",
        "description" : "This is a description field.\rNext line",
        "keywords" : "Phidget,Digital,Outputs,1017",
        "author" : "Your Name",
        "version" : (1, 0),
        "spVersion" : (1, 9, 0),
    }

Custom Extension Icon

import os
"iconPath" : os.path.join(os.path.dirname(os.path.abspath(__file__)),"icon.svg")

os.path.join(os.path.dirname(os.path.abspath(__file__)) is the root of the plugin folder


Custom Help file

import os
"helpPath" : os.path.join(os.path.dirname(os.path.abspath(__file__)),"help.md")

Last updated