DON'T LOOK MA I'M NOT READY YET

This commit is contained in:
Daniel Dayley 2021-11-02 23:25:54 -06:00
parent 1532b3bd3f
commit 872fe4da28

View File

@ -14,7 +14,7 @@ import python-tool
##PLUGIN__initialized_plugins = [] ##PLUGIN__initialized_plugins = []
##PLUGIN_# Plugin loading code ##PLUGIN_# Plugin loading code
##PLUGIN_plugin_class = 'python-tool-plugin' ##PLUGIN_plugin_class = 'python-toolPlugin'.strip('-').capitalize()
##PLUGIN_def add_plugin(plugin,reload) : ##PLUGIN_def add_plugin(plugin,reload) :
##PLUGIN_ """Adds a given plugin and instance, reinitializing one if it already exists and such is specified.""" ##PLUGIN_ """Adds a given plugin and instance, reinitializing one if it already exists and such is specified."""
##PLUGIN_ plugin_name = plugin.__module__.split('.')[-1] ##PLUGIN_ plugin_name = plugin.__module__.split('.')[-1]
@ -101,6 +101,7 @@ if __name__ == '__main__':
##CONFIG_ except Exception as e : ##CONFIG_ except Exception as e :
##CONFIG_ debug("Unable to parse config: " + str(e),0) ##CONFIG_ debug("Unable to parse config: " + str(e),0)
##PLUGIN_ # Load plugins ##PLUGIN_ # Load plugins
##PLUGIN_ use_plugins(search_plugins(directory='/'.join(os.path.realpath(__file__).split('/')[:-2]) + '/python-tool/' + 'plugins')) ##PLUGIN_ available_plugins = search_plugins(directory='/'.join(os.path.realpath(__file__).split('/')[:-2]) + '/python-tool/' + 'plugins')
##PLUGIN_ use_plugins([x for x in available_plugins.values()])
# Main functions # Main functions
print('Hello World!') print('Hello World!')