You are calling the Python module before it is loaded and initiated. You could try setting the priority of your plugin to ensure it is the last plugin loaded.
Also you shouldn’t be calling that in PluginStart. You should be calling it once all the plugins have been started, ie the Python module.
Instead try calling it on StartActivity or possibly Program_Started.