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")Custom Help file
import os"helpPath" : os.path.join(os.path.dirname(os.path.abspath(__file__)),"help.md")Last updated