File indexing completed on 2025-12-07 05:30:40
0001 PLUGIN_ID = "pyTestPlugin"; 0002 0003 0004 class DataModel: 0005 pass 0006 0007 0008 def hookSetupPlugin(h): 0009 print("Hello world from PYTHON PLUGIN!!") 0010 h.registerPluginData(PLUGIN_ID, DataModel()) 0011 0012 0013 def hookTeardownPlugin(h): 0014 d = h.getPluginData(PLUGIN_ID) 0015 h.unregisterPluginData(PLUGIN_ID)